@avilang/practical-ui 0.3.59 → 0.3.60
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/index.js +3 -1
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -28970,6 +28970,7 @@ const ai = /* @__PURE__ */ Object.assign({
|
|
|
28970
28970
|
autofocus: { type: Boolean, default: !1 },
|
|
28971
28971
|
disabled: { type: Boolean, default: !1 },
|
|
28972
28972
|
clearable: { type: Boolean, default: !1 },
|
|
28973
|
+
autosize: { type: [Object, Boolean], default: !0 },
|
|
28973
28974
|
readonly: { type: Boolean, default: !1 },
|
|
28974
28975
|
trim: { type: Boolean, default: !0 },
|
|
28975
28976
|
// 默认去除首尾空格
|
|
@@ -29032,6 +29033,7 @@ const ai = /* @__PURE__ */ Object.assign({
|
|
|
29032
29033
|
disabled: e.disabled,
|
|
29033
29034
|
readonly: e.readonly,
|
|
29034
29035
|
clearable: e.clearable,
|
|
29036
|
+
autosize: e.type !== "textarea" ? !1 : e.autosize,
|
|
29035
29037
|
onInput: d,
|
|
29036
29038
|
onBlur: s,
|
|
29037
29039
|
onKeyup: Pf(v, ["enter"])
|
|
@@ -29043,7 +29045,7 @@ const ai = /* @__PURE__ */ Object.assign({
|
|
|
29043
29045
|
]),
|
|
29044
29046
|
key: "0"
|
|
29045
29047
|
} : void 0
|
|
29046
|
-
]), 1032, ["type", "size", "show-password-on", "value", "maxlength", "show-count", "count-graphemes", "placeholder", "autofocus", "disabled", "readonly", "clearable"]));
|
|
29048
|
+
]), 1032, ["type", "size", "show-password-on", "value", "maxlength", "show-count", "count-graphemes", "placeholder", "autofocus", "disabled", "readonly", "clearable", "autosize"]));
|
|
29047
29049
|
}
|
|
29048
29050
|
}), li = /* @__PURE__ */ Object.assign({
|
|
29049
29051
|
name: "PSelect",
|