bt-core-app 2.0.54 → 2.0.56
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 +6851 -6835
- package/dist/index.d.ts +2 -1
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -1470,7 +1470,7 @@ declare interface PredictOptions {
|
|
|
1470
1470
|
}
|
|
1471
1471
|
|
|
1472
1472
|
/**Pulls only props that obj2 contains and applies to obj1 */
|
|
1473
|
-
export declare function pullPropsFrom(obj1: any, obj2: any, propsToIgnore?: string[]): any;
|
|
1473
|
+
export declare function pullPropsFrom(obj1: any, obj2: any, propsToIgnore?: string[], strat?: 'only-obj1-props' | 'all-obj2-props'): any;
|
|
1474
1474
|
|
|
1475
1475
|
export declare interface QueryParams extends Record<string, any> {
|
|
1476
1476
|
filterBy?: string;
|
|
@@ -1530,6 +1530,7 @@ export declare function roundTo(val: number, dPlaces: number): number;
|
|
|
1530
1530
|
export declare interface SaveItemOptions {
|
|
1531
1531
|
navBack?: boolean;
|
|
1532
1532
|
stayEditing?: boolean;
|
|
1533
|
+
updateUrl?: boolean;
|
|
1533
1534
|
}
|
|
1534
1535
|
|
|
1535
1536
|
export declare interface SaveOptions<T, TSave, TReturn> extends StoreAction, StorePathOptions, DoActionOptions {
|
package/package.json
CHANGED