bt-core-app 1.4.274 → 1.4.275
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 +2 -1
- package/package.json +1 -1
package/dist/bt-core-app.js
CHANGED
|
@@ -34860,12 +34860,13 @@ const PA = /* @__PURE__ */ Ze({
|
|
|
34860
34860
|
props: {
|
|
34861
34861
|
customFilter: {},
|
|
34862
34862
|
filter: {},
|
|
34863
|
+
format: {},
|
|
34863
34864
|
prefix: {},
|
|
34864
34865
|
suffix: {},
|
|
34865
34866
|
value: {}
|
|
34866
34867
|
},
|
|
34867
34868
|
setup(e) {
|
|
34868
|
-
const t = e, { findFilter: n } = Al(), a = x(() => (t.filter != null ? n(t.filter) : t.customFilter)(t.value));
|
|
34869
|
+
const t = e, { findFilter: n } = Al(), a = x(() => (t.filter != null ? n(t.filter) : t.customFilter)(t.value, t.format));
|
|
34869
34870
|
return (r, l) => (z(), se("span", null, We(r.prefix) + We(a.value) + We(r.suffix), 1));
|
|
34870
34871
|
}
|
|
34871
34872
|
});
|
package/package.json
CHANGED