bt-core-app 1.4.798 → 1.4.799
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 +1 -1
- package/dist/index.d.ts +1 -1
- package/package.json +1 -1
package/dist/bt-core-app.js
CHANGED
|
@@ -12754,7 +12754,7 @@ function DM(e, t, a) {
|
|
|
12754
12754
|
}
|
|
12755
12755
|
function te() {
|
|
12756
12756
|
const fe = _t(N);
|
|
12757
|
-
!fe || fe == "view" ? (N.value = "edit", t != null && t("edit")) : fe == "edit" && (N.value = "view");
|
|
12757
|
+
!fe || fe == "view" ? (N.value = "edit", t != null && t("edit", m.value)) : fe == "edit" && (N.value = "view");
|
|
12758
12758
|
}
|
|
12759
12759
|
return Se(_, (fe) => {
|
|
12760
12760
|
V.value = fe != null;
|
package/dist/index.d.ts
CHANGED
|
@@ -966,7 +966,7 @@ export declare function isNullOrEmpty(val: string | undefined): boolean;
|
|
|
966
966
|
export declare function isSameDownToHour(firstDate?: string, secondDate?: string): boolean;
|
|
967
967
|
|
|
968
968
|
export declare interface ItemEvents {
|
|
969
|
-
(e: 'edit'): void;
|
|
969
|
+
(e: 'edit', item: any): void;
|
|
970
970
|
(e: 'fetched', item: any): void;
|
|
971
971
|
(e: 'saved', item: any): void;
|
|
972
972
|
}
|
package/package.json
CHANGED