bt-core-app 2.0.40 → 2.0.41
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 +4 -0
- package/dist/index.d.ts +1 -0
- package/package.json +1 -1
package/dist/bt-core-app.js
CHANGED
|
@@ -13315,6 +13315,7 @@ function lT(e, t, a) {
|
|
|
13315
13315
|
const ue = {
|
|
13316
13316
|
additionalUrl: e.additionalUrl,
|
|
13317
13317
|
id: L.value,
|
|
13318
|
+
localPredicate: e.localPredicate,
|
|
13318
13319
|
nav: o,
|
|
13319
13320
|
proxyID: p.value,
|
|
13320
13321
|
params: {
|
|
@@ -13336,6 +13337,7 @@ function lT(e, t, a) {
|
|
|
13336
13337
|
const ue = {
|
|
13337
13338
|
additionalUrl: e.additionalUrl,
|
|
13338
13339
|
id: L.value,
|
|
13340
|
+
localPredicate: e.localPredicate,
|
|
13339
13341
|
nav: o,
|
|
13340
13342
|
proxyID: p.value,
|
|
13341
13343
|
params: {
|
|
@@ -17632,6 +17634,7 @@ const O8 = Ue({
|
|
|
17632
17634
|
item: {},
|
|
17633
17635
|
itemID: {},
|
|
17634
17636
|
loadingMsg: {},
|
|
17637
|
+
localPredicate: {},
|
|
17635
17638
|
nav: {},
|
|
17636
17639
|
navSuffix: {},
|
|
17637
17640
|
onCanDelete: {},
|
|
@@ -36979,6 +36982,7 @@ const cW = /* @__PURE__ */ et({
|
|
|
36979
36982
|
item: {},
|
|
36980
36983
|
itemID: {},
|
|
36981
36984
|
loadingMsg: {},
|
|
36985
|
+
localPredicate: {},
|
|
36982
36986
|
nav: {},
|
|
36983
36987
|
navSuffix: {},
|
|
36984
36988
|
onCanDelete: {},
|
package/dist/index.d.ts
CHANGED
|
@@ -1039,6 +1039,7 @@ export declare interface ItemProps<T, TSave, TReturn> {
|
|
|
1039
1039
|
item?: any;
|
|
1040
1040
|
itemID?: string;
|
|
1041
1041
|
loadingMsg?: string;
|
|
1042
|
+
localPredicate?: (item: any) => boolean;
|
|
1042
1043
|
nav?: string;
|
|
1043
1044
|
navSuffix?: string;
|
|
1044
1045
|
onCanDelete?: (item: TReturn) => boolean;
|
package/package.json
CHANGED