hs-admin-ui 16.3.1 → 16.3.3

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.
@@ -28473,11 +28473,11 @@ const uO = Ge(iO), cO = /* @__PURE__ */ H({
28473
28473
  default: ""
28474
28474
  },
28475
28475
  min: {
28476
- type: Number,
28476
+ type: [Number, String],
28477
28477
  default: Number.MIN_SAFE_INTEGER
28478
28478
  },
28479
28479
  max: {
28480
- type: Number,
28480
+ type: [Number, String],
28481
28481
  default: Number.MAX_SAFE_INTEGER
28482
28482
  }
28483
28483
  },
@@ -28510,7 +28510,7 @@ const uO = Ge(iO), cO = /* @__PURE__ */ H({
28510
28510
  const v = p.split(".");
28511
28511
  v.length > 2 && (p = v[0] + "." + v.slice(1).join(""));
28512
28512
  const m = p.split("-");
28513
- return m.length > 2 && (p = m[0] + "-" + m.slice(1).join("")), p.startsWith("00") && p.length > 1 && (p = "0"), d === "" ? "" : Number(d) < a.min ? a.min : Number(d) > a.max ? a.max : p;
28513
+ return m.length > 2 && (p = m[0] + "-" + m.slice(1).join("")), p.startsWith("00") && p.length > 1 && (p = "0"), d === "" ? "" : Number(d) < Number(a.min) ? a.min : Number(d) > Number(a.max) ? a.max : p;
28514
28514
  }
28515
28515
  return (d, p) => e.type === "number" ? ($(), q(ge(se(l(nn), { ...d.$attrs, ...s, type: "text", formatter: f, parser: f }, d.$slots)), { key: 0 })) : e.type == "vxe" ? ($(), q(ge(se(l(jh), { ...d.$attrs, ...s }, d.$slots)), { key: 1 })) : ($(), q(ge(se(l(nn), { ...d.$attrs, type: e.type, ...s }, d.$slots)), { key: 2 }));
28516
28516
  }