bt-core-app 2.0.241 → 2.0.243
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 +2010 -2000
- package/dist/index.d.ts +2 -1
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -518,7 +518,7 @@ declare interface CloseBladeOptions {
|
|
|
518
518
|
all?: boolean;
|
|
519
519
|
except?: string | string[];
|
|
520
520
|
mode?: 'remove' | 'hide';
|
|
521
|
-
bladeName?: string;
|
|
521
|
+
bladeName?: string | string[];
|
|
522
522
|
}
|
|
523
523
|
|
|
524
524
|
export declare function compareString(str?: string): string | undefined;
|
|
@@ -1071,6 +1071,7 @@ export declare interface ItemProps<T, TSave, TReturn> {
|
|
|
1071
1071
|
bladeName?: string;
|
|
1072
1072
|
bladeStartShowing?: boolean;
|
|
1073
1073
|
canSave?: boolean;
|
|
1074
|
+
closeBladeNames?: string[] | string;
|
|
1074
1075
|
confirmOnDelete?: boolean;
|
|
1075
1076
|
eager?: boolean;
|
|
1076
1077
|
eagerWithID?: boolean;
|
package/package.json
CHANGED