lh-ui-next 0.2.0-beta.14 → 0.2.0-beta.16
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/README.md +1 -1
- package/lib/lh-ui-next.mjs +6 -1
- package/lib/lh-ui-next.umd.js +1 -1
- package/package.json +1 -1
- package/static/css/package/messageBox.less +1 -1
- package/static/css/theme-compact-blue/main.css +1 -1
- package/static/css/theme-compact-dark/main.css +1 -1
- package/static/css/theme-loose-blue/main.css +1 -1
- package/static/css/theme-loose-orange/main.css +1 -1
package/README.md
CHANGED
|
@@ -5,7 +5,7 @@ alpha version is use to self-test; beta version is use to public survey.for exam
|
|
|
5
5
|
1.0.0-alpha.1
|
|
6
6
|
1.0.0-test.2
|
|
7
7
|
## Official version : "0.1.9",
|
|
8
|
-
## test version : "0.2.0-beta.
|
|
8
|
+
## test version : "0.2.0-beta.16,
|
|
9
9
|
## npmmirror
|
|
10
10
|
When cnpm sync execution is unsuccessful,you can go the website(http://www.npmmirror.com/package/lh-ui-next) and press sync button to
|
|
11
11
|
manual trigger the sync event
|
package/lib/lh-ui-next.mjs
CHANGED
|
@@ -6683,6 +6683,10 @@ const Ea = {
|
|
|
6683
6683
|
modelValLength: {
|
|
6684
6684
|
type: [Number, String],
|
|
6685
6685
|
default: 1
|
|
6686
|
+
},
|
|
6687
|
+
disabled: {
|
|
6688
|
+
type: Boolean,
|
|
6689
|
+
default: !1
|
|
6686
6690
|
}
|
|
6687
6691
|
},
|
|
6688
6692
|
components: {
|
|
@@ -6850,10 +6854,11 @@ function Oa(e, t, i, s, l, n) {
|
|
|
6850
6854
|
title: i.title,
|
|
6851
6855
|
required: i.required,
|
|
6852
6856
|
autocomplete: "off",
|
|
6857
|
+
disabled: i.disabled,
|
|
6853
6858
|
modelValue: l.inputValue,
|
|
6854
6859
|
"onUpdate:modelValue": t[0] || (t[0] = (d) => l.inputValue = d),
|
|
6855
6860
|
style: { width: "100%" }
|
|
6856
|
-
}, null, 8, ["size", "prefix-icon", "suffix-icon", "maxlength", "placeholder", "onFocus", "onBlur", "pattern", "title", "required", "modelValue"])
|
|
6861
|
+
}, null, 8, ["size", "prefix-icon", "suffix-icon", "maxlength", "placeholder", "onFocus", "onBlur", "pattern", "title", "required", "disabled", "modelValue"])
|
|
6857
6862
|
], 8, Wa)
|
|
6858
6863
|
]),
|
|
6859
6864
|
default: C(() => [
|