bt-core-app 1.4.313 → 1.4.314
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/index.d.ts +3 -3
- package/package.json +1 -1
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
|
|
|
@@ -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