bt-core-app 2.0.48 → 2.0.49
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 +4523 -4521
- package/dist/index.d.ts +1 -0
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -2263,6 +2263,7 @@ export declare function useItem<T, TSave, TReturn>(props: ItemProps<T, TSave, TR
|
|
|
2263
2263
|
updateBlade: (data: UpdateBladeData_2<GetOptions<T, TReturn>>) => void;
|
|
2264
2264
|
variant: Ref<BladeVariant, BladeVariant>;
|
|
2265
2265
|
asyncItem: Ref<TReturn | TReturn[] | undefined, TReturn | TReturn[] | undefined>;
|
|
2266
|
+
isChangingMode: Ref<boolean, boolean>;
|
|
2266
2267
|
deleteItem: (dItem: any) => Promise<void>;
|
|
2267
2268
|
errorMsg: ComputedRef<string | undefined>;
|
|
2268
2269
|
id: ComputedRef<string | undefined>;
|
package/package.json
CHANGED