@speckle/ui-components 2.16.1-alpha1 → 2.16.1-alpha2
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/dist/components/form/TextArea.vue.d.ts +6 -0
- package/dist/lib.cjs +1 -1
- package/dist/lib.cjs.map +1 -1
- package/dist/lib.js +8 -2
- package/dist/lib.js.map +1 -1
- package/package.json +1 -1
package/dist/lib.js
CHANGED
|
@@ -1148,7 +1148,8 @@ const Xs = ["for"], Ns = { class: "relative" }, Js = ["id", "name", "placeholder
|
|
|
1148
1148
|
showClear: { type: Boolean },
|
|
1149
1149
|
fullWidth: { type: Boolean },
|
|
1150
1150
|
showRequired: { type: Boolean },
|
|
1151
|
-
color: { default: "page" }
|
|
1151
|
+
color: { default: "page" },
|
|
1152
|
+
textareaClasses: null
|
|
1152
1153
|
},
|
|
1153
1154
|
emits: ["update:modelValue", "change", "input", "clear"],
|
|
1154
1155
|
setup(e, { expose: l, emit: t }) {
|
|
@@ -1187,7 +1188,12 @@ const Xs = ["for"], Ns = { class: "relative" }, Js = ["id", "name", "placeholder
|
|
|
1187
1188
|
ref: o,
|
|
1188
1189
|
"onUpdate:modelValue": $[0] || ($[0] = (S) => de(r) ? r.value = S : null),
|
|
1189
1190
|
name: e.name,
|
|
1190
|
-
class: [
|
|
1191
|
+
class: [
|
|
1192
|
+
n(f),
|
|
1193
|
+
P.value,
|
|
1194
|
+
e.textareaClasses || "",
|
|
1195
|
+
"min-h-[4rem] simple-scrollbar"
|
|
1196
|
+
],
|
|
1191
1197
|
placeholder: e.placeholder,
|
|
1192
1198
|
disabled: e.disabled,
|
|
1193
1199
|
"aria-invalid": n(k) ? "true" : "false",
|