@optimajet/workflow-designer 20.0.4 → 20.0.6
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/workflowdesigner.min.css +1 -1
- package/dist/workflowdesignerfull.esm.min.js +1 -1
- package/dist/workflowdesignerfull.min.js +1 -1
- package/dist/workflowdesignerfull.nocss.esm.min.js +2 -0
- package/dist/workflowdesignerfull.nocss.esm.min.js.LICENSE.txt +29 -0
- package/dist/workflowdesignerfull.nocss.min.js +3 -0
- package/dist/workflowdesignerfull.nocss.min.js.LICENSE.txt +29 -0
- package/index.nocss.js +10 -0
- package/module.nocss.js +9 -0
- package/package.json +15 -4
|
@@ -0,0 +1,29 @@
|
|
|
1
|
+
/*!
|
|
2
|
+
* el-table-infinite-scroll v3.0.7
|
|
3
|
+
* (c) 2019-2025 yujinpan
|
|
4
|
+
*/
|
|
5
|
+
|
|
6
|
+
/*! Element Plus Icons Vue v2.3.2 */
|
|
7
|
+
|
|
8
|
+
/*! regenerator-runtime -- Copyright (c) 2014-present, Facebook, Inc. -- license (MIT): https://github.com/facebook/regenerator/blob/main/LICENSE */
|
|
9
|
+
|
|
10
|
+
/**
|
|
11
|
+
* Checks if an event is supported in the current execution environment.
|
|
12
|
+
*
|
|
13
|
+
* NOTE: This will not work correctly for non-generic events such as `change`,
|
|
14
|
+
* `reset`, `load`, `error`, and `select`.
|
|
15
|
+
*
|
|
16
|
+
* Borrows from Modernizr.
|
|
17
|
+
*
|
|
18
|
+
* @param {string} eventNameSuffix Event name, e.g. "click".
|
|
19
|
+
* @param {?boolean} capture Check if the capture phase is supported.
|
|
20
|
+
* @return {boolean} True if the event is supported.
|
|
21
|
+
* @internal
|
|
22
|
+
* @license Modernizr 3.0.0pre (Custom Build) | MIT
|
|
23
|
+
*/
|
|
24
|
+
|
|
25
|
+
/**
|
|
26
|
+
* vue v3.5.22
|
|
27
|
+
* (c) 2018-present Yuxi (Evan) You and Vue contributors
|
|
28
|
+
* @license MIT
|
|
29
|
+
**/
|
package/index.nocss.js
ADDED
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
import jQuery from "jquery";
|
|
2
|
+
window.$ = window.jQuery = jQuery;
|
|
3
|
+
|
|
4
|
+
import moment from 'moment'
|
|
5
|
+
window.moment = moment;
|
|
6
|
+
|
|
7
|
+
import './dist/workflowdesignerfull.nocss.min.js'
|
|
8
|
+
|
|
9
|
+
var WorkflowDesigner = window.WorkflowDesigner;
|
|
10
|
+
export default WorkflowDesigner;
|
package/module.nocss.js
ADDED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@optimajet/workflow-designer",
|
|
3
|
-
"version": "20.0.
|
|
3
|
+
"version": "20.0.6",
|
|
4
4
|
"description": "Designer for Workflow Engine",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"designer",
|
|
@@ -20,12 +20,18 @@
|
|
|
20
20
|
"files": [
|
|
21
21
|
"README.md",
|
|
22
22
|
"index.js",
|
|
23
|
+
"index.nocss.js",
|
|
23
24
|
"module.js",
|
|
25
|
+
"module.nocss.js",
|
|
24
26
|
"dist/workflowdesigner.min.css",
|
|
25
27
|
"dist/workflowdesignerfull.min.js",
|
|
26
28
|
"dist/workflowdesignerfull.min.js.LICENSE.txt",
|
|
27
29
|
"dist/workflowdesignerfull.esm.min.js",
|
|
28
30
|
"dist/workflowdesignerfull.esm.min.js.LICENSE.txt",
|
|
31
|
+
"dist/workflowdesignerfull.nocss.min.js",
|
|
32
|
+
"dist/workflowdesignerfull.nocss.min.js.LICENSE.txt",
|
|
33
|
+
"dist/workflowdesignerfull.nocss.esm.min.js",
|
|
34
|
+
"dist/workflowdesignerfull.nocss.esm.min.js.LICENSE.txt",
|
|
29
35
|
"localization/workflowdesigner*",
|
|
30
36
|
"bin/template/index.html",
|
|
31
37
|
"bin/template/index.js"
|
|
@@ -63,9 +69,9 @@
|
|
|
63
69
|
},
|
|
64
70
|
"dependencies": {
|
|
65
71
|
"@element-plus/icons-vue": "^2.3.2",
|
|
66
|
-
"@microsoft/signalr": "^
|
|
72
|
+
"@microsoft/signalr": "^10.0.0",
|
|
67
73
|
"el-table-infinite-scroll": "^3.0.7",
|
|
68
|
-
"element-plus": "^2.
|
|
74
|
+
"element-plus": "^2.13.1",
|
|
69
75
|
"jquery": "^3.6.0",
|
|
70
76
|
"js-base64": "^3.7.7",
|
|
71
77
|
"json5": "^2.2.3",
|
|
@@ -85,6 +91,11 @@
|
|
|
85
91
|
"import": "./module.js",
|
|
86
92
|
"require": "./index.js"
|
|
87
93
|
},
|
|
88
|
-
"./no-css
|
|
94
|
+
"./no-css": {
|
|
95
|
+
"import": "./module.nocss.js",
|
|
96
|
+
"require": "./index.nocss.js"
|
|
97
|
+
},
|
|
98
|
+
"./no-css-esm": "./dist/workflowdesignerfull.nocss.esm.min.js",
|
|
99
|
+
"./dist/workflowdesigner.min.css": "./dist/workflowdesigner.min.css"
|
|
89
100
|
}
|
|
90
101
|
}
|