lh-ui-next 0.2.1-beta.10 → 0.2.1-beta.11
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/checkbox.less +37 -5
- 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.2.0",
|
|
8
|
-
## test version : "0.2.1-beta.
|
|
8
|
+
## test version : "0.2.1-beta.11,
|
|
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
|
@@ -2389,6 +2389,11 @@ const Zi = {
|
|
|
2389
2389
|
indeterminate: {
|
|
2390
2390
|
type: Boolean,
|
|
2391
2391
|
default: !1
|
|
2392
|
+
},
|
|
2393
|
+
appearance: {
|
|
2394
|
+
type: String,
|
|
2395
|
+
default: "square"
|
|
2396
|
+
//square 正方形 circle圆圈
|
|
2392
2397
|
}
|
|
2393
2398
|
},
|
|
2394
2399
|
watch: {
|
|
@@ -2416,7 +2421,7 @@ const Zi = {
|
|
|
2416
2421
|
}, Qi = { class: "lh-checkbox-outbox" }, $i = ["disabled"], el = { class: "lh-checkbox-text" };
|
|
2417
2422
|
function tl(e, t, i, s, l, n) {
|
|
2418
2423
|
return r(), d("label", {
|
|
2419
|
-
class: f(["lh-checkbox", [i.size == "mini" ? "mini" : "", i.disabled ? "disabled" : "", l.myValue ? "checked" : ""]])
|
|
2424
|
+
class: f(["lh-checkbox", [i.size == "mini" ? "mini" : "", i.size == "big" ? "big" : "", i.disabled ? "disabled" : "", l.myValue ? "checked" : "", i.appearance]])
|
|
2420
2425
|
}, [
|
|
2421
2426
|
h("span", Qi, [
|
|
2422
2427
|
h("span", {
|