bt-core-app 1.4.291 → 1.4.292
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
|
@@ -35426,6 +35426,7 @@ const qL = /* @__PURE__ */ tt({
|
|
|
35426
35426
|
__name: "BT-Field-Tags",
|
|
35427
35427
|
props: {
|
|
35428
35428
|
cols: { type: [String, Boolean], default: "12" },
|
|
35429
|
+
isArray: { type: Boolean },
|
|
35429
35430
|
isEditing: { type: Boolean, default: void 0 },
|
|
35430
35431
|
isMobile: { type: Boolean },
|
|
35431
35432
|
lg: { type: [String, Boolean], default: !1 },
|
|
@@ -35439,10 +35440,10 @@ const qL = /* @__PURE__ */ tt({
|
|
|
35439
35440
|
const n = e, a = t, r = _({
|
|
35440
35441
|
get() {
|
|
35441
35442
|
var m;
|
|
35442
|
-
return (m = n.modelValue) == null ? void 0 : m.split(",");
|
|
35443
|
+
return n.isArray ? n.modelValue : (m = n.modelValue) == null ? void 0 : m.split(",");
|
|
35443
35444
|
},
|
|
35444
35445
|
set(m) {
|
|
35445
|
-
a("update:modelValue", Vt(m) ? m.toString() : null);
|
|
35446
|
+
n.isArray ? a("update:modelValue", m) : a("update:modelValue", Vt(m) ? m.toString() : null);
|
|
35446
35447
|
}
|
|
35447
35448
|
}), l = He("isEditing", () => U(!1), !0), i = _(() => n.isEditing ?? l.value), o = He("isMobile", () => U(!1), !0), s = He("fieldVariant", "underlined"), c = He("fieldEditVariant", "outlined"), f = _(() => n.isMobile ?? o.value ? !1 : n.lg), d = _(() => n.isMobile ?? o.value ? !1 : n.md), v = _(() => n.isMobile ?? o.value ? !1 : n.sm);
|
|
35448
35449
|
return (m, h) => (R(), le(ot, {
|
package/package.json
CHANGED