@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.
@@ -10225,10 +10225,9 @@ const $r = /* @__PURE__ */ he({
10225
10225
  "btn-lg": t.size === "large",
10226
10226
  "btn-md": t.size !== "large" && t.size !== "small",
10227
10227
  "btn-sm": t.size === "small",
10228
- "btn-icontext": i.value,
10229
- [`btn-${t.type}`]: !0
10228
+ "btn-icontext": i.value
10230
10229
  };
10231
- if (t.customClass)
10230
+ if (t.type && (r[`btn-${t.type}`] = !0), t.customClass)
10232
10231
  if (typeof t.customClass == "string")
10233
10232
  Vt(r, t.customClass);
10234
10233
  else {
@@ -50281,9 +50280,9 @@ const Y$ = /* @__PURE__ */ he({
50281
50280
  Qe(() => {
50282
50281
  f.value.componentInstance = h;
50283
50282
  }), n.expose(h.value);
50284
- const m = Zr(e, n, a, t, r, l, c, t, o, !0), g = es(e, n, a, t, r, l, m, c, t, o, !0), b = ts(e, n, m, !0), y = lp(e, n, g, !0), v = (I) => {
50283
+ const m = Zr(e, n, a, t, r, l, c, t, o, !0), g = es(e, n, a, t, r, l, m, c, t, o, !0), b = ts(e, n, m), y = lp(e, n, g, !0), v = (I) => {
50285
50284
  n.emit("endValueChange", I);
50286
- }, C = Zr(e, n, i, o, r, l, v, t, o, !1), x = es(e, n, i, o, r, l, C, v, t, o, !1), w = ts(e, n, C, !1), T = lp(e, n, x, !1), k = V(() => e.showButton);
50285
+ }, C = Zr(e, n, i, o, r, l, v, t, o, !1), x = es(e, n, i, o, r, l, C, v, t, o, !1), w = ts(e, n, C), T = lp(e, n, x, !1), k = V(() => e.showButton);
50287
50286
  return () => s("div", {
50288
50287
  ref: f,
50289
50288
  class: "input-group number-range f-cmp-number-spinner"
@@ -51860,7 +51859,7 @@ function Qv(e, n, t) {
51860
51859
  };
51861
51860
  }
51862
51861
  function Xv(e, n, t, a, o, i) {
51863
- const l = S(!1), r = S(), c = S(), f = V(() => Ce.getLocaleValue("pagination.show")), d = V(() => Ce.getLocaleValue("pagination.totalInfo.lastText")), u = V(() => ({
51862
+ const l = S(!1), r = S(), c = S(), f = V(() => Ce.getLocaleValue("pagination.pageList.firstText")), d = V(() => Ce.getLocaleValue("pagination.pageList.lastText")), u = V(() => ({
51864
51863
  dropup: !0,
51865
51864
  "dropdown-right": !0,
51866
51865
  "pg-pagelist": !0,
@@ -53262,13 +53261,13 @@ class AH {
53262
53261
  this.value = n;
53263
53262
  }
53264
53263
  getValue() {
53265
- return this.value;
53264
+ return typeof this.value == "boolean" ? [this.value] : this.value || [];
53266
53265
  }
53267
53266
  getDisplayText() {
53268
- return this.value.map((n) => n ? "是" : "否").join(",");
53267
+ return this.getValue().map((t) => t ? "是" : "否").join(",");
53269
53268
  }
53270
53269
  isEmpty() {
53271
- return this.value.length === 0;
53270
+ return typeof this.value == "boolean" ? !1 : !this.value || this.value.length === 0;
53272
53271
  }
53273
53272
  }
53274
53273
  class VH {