@farris/ui-vue 1.8.5-beta.12 → 1.8.5-beta.13
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/components/batch-editor/index.esm.js +8 -9
- package/components/batch-editor/index.umd.cjs +3 -3
- package/components/button/index.esm.js +8 -9
- package/components/button/index.umd.cjs +3 -3
- package/components/condition/index.esm.js +3 -3
- package/components/condition/index.umd.cjs +1 -1
- package/components/data-view/index.esm.js +8 -9
- package/components/data-view/index.umd.cjs +3 -3
- package/components/number-range/index.esm.js +2 -2
- package/components/number-range/index.umd.cjs +1 -1
- package/components/order/index.esm.js +2 -3
- package/components/order/index.umd.cjs +1 -1
- package/components/pagination/index.esm.js +18 -18
- package/components/pagination/index.umd.cjs +1 -1
- package/components/query-solution/index.esm.js +444 -441
- package/components/query-solution/index.umd.cjs +4 -4
- package/components/schema-selector/index.esm.js +1 -1
- package/components/schema-selector/index.umd.cjs +1 -1
- package/designer/data-grid/index.esm.js +8 -9
- package/designer/data-grid/index.umd.cjs +3 -3
- package/designer/farris-designer.all.esm.js +1994 -1994
- package/designer/farris-designer.all.umd.cjs +1 -1
- package/farris.all.esm.js +13 -11
- package/farris.all.umd.cjs +3 -3
- package/package.json +1 -1
- package/types/button/src/button.props.d.ts +1 -1
- package/types/condition/src/composition/condition-value/checkbox-value.d.ts +1 -1
|
@@ -1185,10 +1185,9 @@ const dr = /* @__PURE__ */ de({
|
|
|
1185
1185
|
"btn-lg": t.size === "large",
|
|
1186
1186
|
"btn-md": t.size !== "large" && t.size !== "small",
|
|
1187
1187
|
"btn-sm": t.size === "small",
|
|
1188
|
-
"btn-icontext": i.value
|
|
1189
|
-
[`btn-${t.type}`]: !0
|
|
1188
|
+
"btn-icontext": i.value
|
|
1190
1189
|
};
|
|
1191
|
-
if (t.customClass)
|
|
1190
|
+
if (t.type && (r[`btn-${t.type}`] = !0), t.customClass)
|
|
1192
1191
|
if (typeof t.customClass == "string")
|
|
1193
1192
|
mt(r, t.customClass);
|
|
1194
1193
|
else {
|
|
@@ -46136,9 +46135,9 @@ const EN = /* @__PURE__ */ de({
|
|
|
46136
46135
|
Le(() => {
|
|
46137
46136
|
d.value.componentInstance = h;
|
|
46138
46137
|
}), n.expose(h.value);
|
|
46139
|
-
const m = Mr(e, n, a, t, r, l, u, t, o, !0), v = Ir(e, n, a, t, r, l, m, u, t, o, !0), y = Er(e, n, m
|
|
46138
|
+
const m = Mr(e, n, a, t, r, l, u, t, o, !0), v = Ir(e, n, a, t, r, l, m, u, t, o, !0), y = Er(e, n, m), g = vf(e, n, v, !0), b = (F) => {
|
|
46140
46139
|
n.emit("endValueChange", F);
|
|
46141
|
-
}, C = Mr(e, n, i, o, r, l, b, t, o, !1), S = Ir(e, n, i, o, r, l, C, b, t, o, !1), x = Er(e, n, C
|
|
46140
|
+
}, C = Mr(e, n, i, o, r, l, b, t, o, !1), S = Ir(e, n, i, o, r, l, C, b, t, o, !1), x = Er(e, n, C), T = vf(e, n, S, !1), k = V(() => e.showButton);
|
|
46142
46141
|
return () => s("div", {
|
|
46143
46142
|
ref: d,
|
|
46144
46143
|
class: "input-group number-range f-cmp-number-spinner"
|
|
@@ -47715,7 +47714,7 @@ function Yg(e, n, t) {
|
|
|
47715
47714
|
};
|
|
47716
47715
|
}
|
|
47717
47716
|
function Qg(e, n, t, a, o, i) {
|
|
47718
|
-
const l = w(!1), r = w(), u = w(), d = V(() => We.getLocaleValue("pagination.
|
|
47717
|
+
const l = w(!1), r = w(), u = w(), d = V(() => We.getLocaleValue("pagination.pageList.firstText")), f = V(() => We.getLocaleValue("pagination.pageList.lastText")), c = V(() => ({
|
|
47719
47718
|
dropup: !0,
|
|
47720
47719
|
"dropdown-right": !0,
|
|
47721
47720
|
"pg-pagelist": !0,
|
|
@@ -49117,13 +49116,13 @@ class hj {
|
|
|
49117
49116
|
this.value = n;
|
|
49118
49117
|
}
|
|
49119
49118
|
getValue() {
|
|
49120
|
-
return this.value;
|
|
49119
|
+
return typeof this.value == "boolean" ? [this.value] : this.value || [];
|
|
49121
49120
|
}
|
|
49122
49121
|
getDisplayText() {
|
|
49123
|
-
return this.
|
|
49122
|
+
return this.getValue().map((t) => t ? "是" : "否").join(",");
|
|
49124
49123
|
}
|
|
49125
49124
|
isEmpty() {
|
|
49126
|
-
return this.value.length === 0;
|
|
49125
|
+
return typeof this.value == "boolean" ? !1 : !this.value || this.value.length === 0;
|
|
49127
49126
|
}
|
|
49128
49127
|
}
|
|
49129
49128
|
class gj {
|