cnhis-design-vue 3.1.18-beta.10 → 3.1.18-beta.11
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/es/components/bpmn-workflow/src/BpmnWorkflow.d.ts +0 -0
- package/es/components/bpmn-workflow/types/BpmnViewer.d.ts +1 -0
- package/es/components/bpmn-workflow/types/ModelingModule.d.ts +1 -0
- package/es/components/bpmn-workflow/types/MoveCanvasModule.d.ts +1 -0
- package/es/components/button-print/src/utils/print2.js +2 -2
- package/es/components/fabric-chart/src/utils/index.d.ts +6823 -0
- package/es/env.d.ts +0 -18
- package/es/shared/utils/tapable/index.d.ts +139 -0
- package/package.json +2 -2
|
File without changes
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
declare module 'bpmn-js/lib/Viewer';
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
declare module 'bpmn-js/lib/features/modeling';
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
declare module 'diagram-js/lib/navigation/movecanvas';
|
|
@@ -257,8 +257,8 @@ class Print {
|
|
|
257
257
|
return false;
|
|
258
258
|
successCallbackFn && successCallbackFn(handledResult);
|
|
259
259
|
}
|
|
260
|
-
_downloadPDF(
|
|
261
|
-
return httpFn.get(PDF_URL, { params: {
|
|
260
|
+
_downloadPDF(inputData) {
|
|
261
|
+
return httpFn.get(PDF_URL, { params: { inputData } }).then(({ data }) => data);
|
|
262
262
|
}
|
|
263
263
|
downloadPDF(params) {
|
|
264
264
|
return new Promise((resolve, reject) => {
|