bt-core-app 1.4.285 → 1.4.287
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
|
@@ -33035,7 +33035,7 @@ const TI = /* @__PURE__ */ Ze({
|
|
|
33035
33035
|
]),
|
|
33036
33036
|
_: 3
|
|
33037
33037
|
}, 8, ["density"])),
|
|
33038
|
-
_(c).variant.value == "inline" ? (H(), se(ya, {
|
|
33038
|
+
!w.hideToolbar && _(c).variant.value == "inline" ? (H(), se(ya, {
|
|
33039
33039
|
key: 2,
|
|
33040
33040
|
"no-gutters": ""
|
|
33041
33041
|
}, {
|
|
@@ -33407,6 +33407,7 @@ const TI = /* @__PURE__ */ Ze({
|
|
|
33407
33407
|
label: {},
|
|
33408
33408
|
prefix: {},
|
|
33409
33409
|
textFilter: {},
|
|
33410
|
+
textFunction: {},
|
|
33410
33411
|
truncate: { type: Boolean },
|
|
33411
33412
|
additionalUrl: {},
|
|
33412
33413
|
bladeGroup: {},
|
|
@@ -33459,7 +33460,7 @@ const TI = /* @__PURE__ */ Ze({
|
|
|
33459
33460
|
setup(e, { emit: t }) {
|
|
33460
33461
|
const n = t, a = e, r = Jl(), l = bp(a, n), i = ll(), o = a.itemText ?? (a.nav != null ? i.findItemText(a.nav) : void 0) ?? void 0, s = T(() => {
|
|
33461
33462
|
var u = et(l.asyncItem);
|
|
33462
|
-
return o != null && (u = Mn(l.asyncItem.value, o)), a.textFilter != null ? r.findFilter(a.textFilter)(u) : u;
|
|
33463
|
+
return a.textFunction != null && (u = a.textFunction(u)), o != null && (u = Mn(l.asyncItem.value, o)), a.textFilter != null ? r.findFilter(a.textFilter)(u) : u;
|
|
33463
33464
|
});
|
|
33464
33465
|
return (u, f) => (H(), oe("div", {
|
|
33465
33466
|
class: Je(u.inline ? "d-inline" : "")
|
package/package.json
CHANGED