ztxkutils 2.10.9 → 2.10.10
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/constants.d.ts +4 -0
- package/dist/constants.js +6 -2
- package/package.json +1 -1
package/dist/constants.d.ts
CHANGED
@@ -52,3 +52,7 @@ export declare const IFRAME_LOADED = "iframeLoaded";
|
|
52
52
|
* @description 引用地址源
|
53
53
|
*/
|
54
54
|
export declare const IMPORT_IFRAME_PARENT_ORIGIN = "iframeParentOrigin";
|
55
|
+
/**
|
56
|
+
* @description 流程实例ID
|
57
|
+
*/
|
58
|
+
export declare const WORKFLOW_PROCESS_INST_ID = "workflowProcessInstId";
|
package/dist/constants.js
CHANGED
@@ -54,6 +54,10 @@ var IFRAME_LOADED = 'iframeLoaded';
|
|
54
54
|
/**
|
55
55
|
* @description 引用地址源
|
56
56
|
*/
|
57
|
-
var IMPORT_IFRAME_PARENT_ORIGIN = 'iframeParentOrigin';
|
57
|
+
var IMPORT_IFRAME_PARENT_ORIGIN = 'iframeParentOrigin';
|
58
|
+
/**
|
59
|
+
* @description 流程实例ID
|
60
|
+
*/
|
61
|
+
var WORKFLOW_PROCESS_INST_ID = 'workflowProcessInstId';
|
58
62
|
|
59
|
-
export { IFRAME_LOADED, IMPORT_IFRAME_PARENT_ORIGIN, WORKFLOW_EDIT, WORKFLOW_GET_HEIGHT, WORKFLOW_HIDEFRAME_KEY, WORKFLOW_RETURN_HEIGHT, WORKFLOW_RETURN_INSTID, WORKFLOW_REVIEW, WORKFLOW_SAVE_HANDLE, WORKFLOW_SAVE_INSTID, WORKFLOW_TOKEN, WORKFLOW_TRANSMIT_HANDLE, clientType, microPortalRoute };
|
63
|
+
export { IFRAME_LOADED, IMPORT_IFRAME_PARENT_ORIGIN, WORKFLOW_EDIT, WORKFLOW_GET_HEIGHT, WORKFLOW_HIDEFRAME_KEY, WORKFLOW_PROCESS_INST_ID, WORKFLOW_RETURN_HEIGHT, WORKFLOW_RETURN_INSTID, WORKFLOW_REVIEW, WORKFLOW_SAVE_HANDLE, WORKFLOW_SAVE_INSTID, WORKFLOW_TOKEN, WORKFLOW_TRANSMIT_HANDLE, clientType, microPortalRoute };
|