@fy-/fws-vue 2.0.48 → 2.0.50
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.
|
@@ -131,6 +131,7 @@ defineExpose({ focus, blur, getInputRef });
|
|
|
131
131
|
'datetime',
|
|
132
132
|
'url',
|
|
133
133
|
'textarea',
|
|
134
|
+
'textarea-grow',
|
|
134
135
|
'select',
|
|
135
136
|
'phone',
|
|
136
137
|
'chips',
|
|
@@ -252,7 +253,7 @@ defineExpose({ focus, blur, getInputRef });
|
|
|
252
253
|
</div>
|
|
253
254
|
<div
|
|
254
255
|
v-if="dpOptions.counterMax && model"
|
|
255
|
-
class="-mt-
|
|
256
|
+
class="-mt-0.5 text-sm text-fv-neutral-500 dark:text-fv-neutral-400"
|
|
256
257
|
:class="{
|
|
257
258
|
'text-red-500 dark:text-red-300':
|
|
258
259
|
model?.toString().length > dpOptions.counterMax,
|
|
@@ -287,7 +288,7 @@ defineExpose({ focus, blur, getInputRef });
|
|
|
287
288
|
></textarea>
|
|
288
289
|
<div
|
|
289
290
|
v-if="dpOptions.counterMax && model"
|
|
290
|
-
class="-mt-
|
|
291
|
+
class="-mt-0.5 text-sm text-fv-neutral-500 dark:text-fv-neutral-400"
|
|
291
292
|
:class="{
|
|
292
293
|
'text-red-500 dark:text-red-300':
|
|
293
294
|
model?.toString().length > dpOptions.counterMax,
|