bt-core-app 1.4.873 → 1.4.874
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 +7 -5
- package/package.json +1 -1
package/dist/bt-core-app.js
CHANGED
|
@@ -36621,7 +36621,7 @@ const xm = lt()({
|
|
|
36621
36621
|
set(g) {
|
|
36622
36622
|
n("update:modelValue", g), n("select", g);
|
|
36623
36623
|
}
|
|
36624
|
-
}), r = Qe("isEditing", () => G(!1), !0), i = T(() => a.isEditing ?? r.value), o = Qe("isMobile", () => G(!1), !0), s = Qe("viewVariant", "underlined"), c = T(() => s.value == "list-item" ? "underlined" : s
|
|
36624
|
+
}), r = Qe("isEditing", () => G(!1), !0), i = T(() => a.isEditing ?? r.value), o = Qe("isMobile", () => G(!1), !0), s = Qe("viewVariant", "underlined"), c = T(() => s.value == "list-item" ? "underlined" : s), u = Qe("editVariant", "outlined"), d = T(() => a.isMobile ?? o.value ? !1 : a.lg), v = T(() => a.isMobile ?? o.value ? !1 : a.md), f = T(() => a.isMobile ?? o.value ? !1 : a.sm);
|
|
36625
36625
|
return (g, h) => {
|
|
36626
36626
|
const m = gn("bt-select");
|
|
36627
36627
|
return N(), ue(Tt, {
|
|
@@ -36634,7 +36634,7 @@ const xm = lt()({
|
|
|
36634
36634
|
y(m, ye(g.$attrs, {
|
|
36635
36635
|
label: g.label,
|
|
36636
36636
|
readonly: !i.value,
|
|
36637
|
-
|
|
36637
|
+
fieldVariant: i.value ? _(u) : c.value,
|
|
36638
36638
|
modelValue: l.value,
|
|
36639
36639
|
"onUpdate:modelValue": h[0] || (h[0] = (b) => l.value = b)
|
|
36640
36640
|
}), {
|
|
@@ -36645,7 +36645,7 @@ const xm = lt()({
|
|
|
36645
36645
|
he(g.$slots, "selection", It(Ot(b)))
|
|
36646
36646
|
]),
|
|
36647
36647
|
_: 3
|
|
36648
|
-
}, 16, ["label", "readonly", "
|
|
36648
|
+
}, 16, ["label", "readonly", "fieldVariant", "modelValue"])
|
|
36649
36649
|
]),
|
|
36650
36650
|
_: 3
|
|
36651
36651
|
}, 8, ["lg", "md", "sm", "cols"]);
|
|
@@ -42709,6 +42709,7 @@ const eU = /* @__PURE__ */ Pf(Qj, [["render", Jj]]), tU = { class: "d-flex align
|
|
|
42709
42709
|
additionalUrl: {},
|
|
42710
42710
|
canRefresh: { type: Boolean },
|
|
42711
42711
|
canSelectNone: { type: Boolean },
|
|
42712
|
+
fieldVariant: {},
|
|
42712
42713
|
items: {},
|
|
42713
42714
|
itemText: {},
|
|
42714
42715
|
itemValue: {},
|
|
@@ -42805,7 +42806,8 @@ const eU = /* @__PURE__ */ Pf(Qj, [["render", Jj]]), tU = { class: "d-flex align
|
|
|
42805
42806
|
"item-value": s.itemValue,
|
|
42806
42807
|
loading: _(i).isLoading.value,
|
|
42807
42808
|
multiple: s.multiple,
|
|
42808
|
-
rules: o.value
|
|
42809
|
+
rules: o.value,
|
|
42810
|
+
variant: s.fieldVariant
|
|
42809
42811
|
}, s.$attrs), {
|
|
42810
42812
|
item: O((u) => [
|
|
42811
42813
|
he(s.$slots, "item", It(Ot(u)), () => [
|
|
@@ -42818,7 +42820,7 @@ const eU = /* @__PURE__ */ Pf(Qj, [["render", Jj]]), tU = { class: "d-flex align
|
|
|
42818
42820
|
])
|
|
42819
42821
|
]),
|
|
42820
42822
|
_: 3
|
|
42821
|
-
}, 16, ["append-icon", "clearable", "hide-details", "items", "item-title", "item-value", "loading", "multiple", "rules"]));
|
|
42823
|
+
}, 16, ["append-icon", "clearable", "hide-details", "items", "item-title", "item-value", "loading", "multiple", "rules", "variant"]));
|
|
42822
42824
|
}
|
|
42823
42825
|
});
|
|
42824
42826
|
/*!
|
package/package.json
CHANGED