@byteluck-fe/runtime-engine 6.2.1-gdnz-beta.2 → 6.2.1-gdnz-beta.4
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/runtime-engine.js
CHANGED
|
@@ -80537,7 +80537,7 @@ async function M7e(r) {
|
|
|
80537
80537
|
props: S
|
|
80538
80538
|
},
|
|
80539
80539
|
rowIndex: L,
|
|
80540
|
-
uid: M
|
|
80540
|
+
uid: M || P
|
|
80541
80541
|
},
|
|
80542
80542
|
engine: r.engine,
|
|
80543
80543
|
openType: s
|
|
@@ -86930,8 +86930,8 @@ async function nYe() {
|
|
|
86930
86930
|
} catch {
|
|
86931
86931
|
return await Uq.default.GetCurrentUserUserPrivateV1ApiAppsGET({});
|
|
86932
86932
|
}
|
|
86933
|
-
|
|
86934
|
-
|
|
86933
|
+
const n = await window.__startupPrefetch?.consumeCurrentUser();
|
|
86934
|
+
return n || await Uq.default.GetCurrentUserUserPrivateV1ApiAppsGET({});
|
|
86935
86935
|
}
|
|
86936
86936
|
const Md = Rt();
|
|
86937
86937
|
async function aYe(r, e, t) {
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
export declare function loadApprovalWidgets(): Promise<any>;
|
|
2
|
+
export declare const VBlaDecision: any;
|
|
3
|
+
export declare const VBlaRecord: any;
|
|
4
|
+
export declare const VBlaDiscuss: any;
|
|
5
|
+
export declare const VBlaForecast: any;
|
|
6
|
+
export declare const VBlaChatgroup: any;
|
|
7
|
+
export declare const VBlaRecordPreview: any;
|
|
8
|
+
export declare function attachApprovalWidgetsToTemplate(template: Record<string, any>, compiledCode: string): Promise<void>;
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
export type InnerTabKeyOptions = {
|
|
2
|
+
sappId: string;
|
|
3
|
+
tabActiveKey?: string;
|
|
4
|
+
menuId?: string;
|
|
5
|
+
isTopWindow: boolean;
|
|
6
|
+
};
|
|
7
|
+
/**
|
|
8
|
+
* 仅在内标签的真实 key 已确定后才生成渲染 key。
|
|
9
|
+
*
|
|
10
|
+
* 直接打开列表分享链接时,multipleTabs 会在 nextTick 中补齐 tabActiveKey。
|
|
11
|
+
* 若此处将空值拼接为 sappId,会先创建一个隐藏的 ListMaster,随后真实 key
|
|
12
|
+
* 再创建一个 ListMaster,造成页面初始化接口重复请求。
|
|
13
|
+
*/
|
|
14
|
+
export declare function getInnerTabKey({ sappId, tabActiveKey, menuId, isTopWindow, }: InnerTabKeyOptions): string | undefined;
|