bt-core-app 1.4.313 → 1.4.315
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 +1 -0
- package/dist/index.d.ts +4 -4
- package/package.json +1 -1
package/dist/bt-core-app.js
CHANGED
|
@@ -7505,6 +7505,7 @@ function tm(e) {
|
|
|
7505
7505
|
let C;
|
|
7506
7506
|
if (e.api != null && b.localOnly !== !0)
|
|
7507
7507
|
try {
|
|
7508
|
+
console.log("store patching"), console.log(b);
|
|
7508
7509
|
let p = await e.api.patch(b);
|
|
7509
7510
|
C = { ...b.data, ...p == null ? void 0 : p.data };
|
|
7510
7511
|
} catch (p) {
|
package/dist/index.d.ts
CHANGED
|
@@ -658,7 +658,7 @@ export declare function isNullOrEmpty(val: string | undefined): boolean;
|
|
|
658
658
|
|
|
659
659
|
export declare function isSameDownToHour(firstDate?: string, secondDate?: string): boolean;
|
|
660
660
|
|
|
661
|
-
declare interface ItemEvents {
|
|
661
|
+
export declare interface ItemEvents {
|
|
662
662
|
(e: 'fetched', item: any): void;
|
|
663
663
|
(e: 'saved', item: any): void;
|
|
664
664
|
}
|
|
@@ -714,7 +714,7 @@ export declare interface ItemProps<T, TSave, TReturn> {
|
|
|
714
714
|
variant?: BladeVariant;
|
|
715
715
|
}
|
|
716
716
|
|
|
717
|
-
declare interface ItemRefreshOptions {
|
|
717
|
+
export declare interface ItemRefreshOptions {
|
|
718
718
|
deepRefresh?: boolean;
|
|
719
719
|
}
|
|
720
720
|
|
|
@@ -920,7 +920,7 @@ export declare interface MenuGroup {
|
|
|
920
920
|
sortNumber?: number;
|
|
921
921
|
subscriptions?: string[];
|
|
922
922
|
subFilters?: string[] | 'All';
|
|
923
|
-
routeName
|
|
923
|
+
routeName?: string;
|
|
924
924
|
}
|
|
925
925
|
|
|
926
926
|
export declare interface NavigationItem extends AuthItem {
|
|
@@ -1082,7 +1082,7 @@ export declare interface RestoreOptions<T> extends StorePathOptions, DoActionOpt
|
|
|
1082
1082
|
*/
|
|
1083
1083
|
export declare function roundTo(val: number, dPlaces: number): number;
|
|
1084
1084
|
|
|
1085
|
-
declare interface SaveItemOptions {
|
|
1085
|
+
export declare interface SaveItemOptions {
|
|
1086
1086
|
navBack?: boolean;
|
|
1087
1087
|
}
|
|
1088
1088
|
|
package/package.json
CHANGED