bt-core-app 1.4.514 → 1.4.515
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/dist/bt-core-app.js +3 -2
- package/package.json +1 -1
package/dist/bt-core-app.js
CHANGED
|
@@ -32788,7 +32788,8 @@ const WL = /* @__PURE__ */ Xe({
|
|
|
32788
32788
|
return a.modelValue;
|
|
32789
32789
|
},
|
|
32790
32790
|
set(c) {
|
|
32791
|
-
|
|
32791
|
+
let u = c == null ? c : `${c.split(".")[0]}Z`;
|
|
32792
|
+
l("update:modelValue", u), a.onSelect && a.onSelect(u);
|
|
32792
32793
|
}
|
|
32793
32794
|
});
|
|
32794
32795
|
return (c, u) => (B(), ee(A(eu), pe({
|
|
@@ -33472,7 +33473,7 @@ const Ss = He()({
|
|
|
33472
33473
|
return a.modelValue;
|
|
33473
33474
|
},
|
|
33474
33475
|
set(x) {
|
|
33475
|
-
l("update:modelValue", x);
|
|
33476
|
+
l("update:modelValue", x == null ? x : `${x.split(".")[0]}Z`);
|
|
33476
33477
|
}
|
|
33477
33478
|
}), s = D(() => a.modelValue ? r(a.modelValue, a.format) : void 0), c = W(), u = Ye("isEditing", () => W(!1), !0), f = D(() => a.isEditing ?? u.value), m = Ye("isMobile", () => W(!1), !0), h = Ye("fieldVariant", "underlined"), v = Ye("fieldEditVariant", "outlined"), g = D(() => a.isMobile ?? m.value ? !1 : a.lg), p = D(() => a.isMobile ?? m.value ? !1 : a.md), d = D(() => a.isMobile ?? m.value ? !1 : a.sm);
|
|
33478
33479
|
return a.dateFrom != null ? c.value = a.dateFrom : a.fromNow && (c.value = r()), (x, T) => (B(), ee(rt, {
|
package/package.json
CHANGED