bt-core-app 2.0.53 → 2.0.55
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 +6849 -6833
- package/dist/index.d.ts +2 -1
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -1530,10 +1530,11 @@ 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 {
|
|
1536
|
-
getMode?: (item: any) => BladeMode;
|
|
1537
|
+
getMode?: 'post' | 'patch' | ((item: any) => BladeMode);
|
|
1537
1538
|
/**called to check whether to proceed with save */
|
|
1538
1539
|
onCanSaveAsync?: OnCanDoAsync<T | TSave>;
|
|
1539
1540
|
/**
|
package/package.json
CHANGED