@optimajet/workflow-designer 20.0.7 → 20.0.8
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/38cffaecad130ba59ae9.woff2 +0 -0
- package/dist/5c6a5a3a3eff3c9f9970.woff2 +0 -0
- package/dist/8c6d5891ba64ad810c7e.woff2 +0 -0
- package/dist/8fd442a531f406704cef.woff2 +0 -0
- package/dist/cd7c081289c3ce85d15d.woff2 +0 -0
- package/dist/d3c60967430b84b54d3a.woff2 +0 -0
- package/dist/workflowdesigner.min.css +6 -6
- package/dist/workflowdesignerfull.esm.min.js +1 -1
- package/dist/workflowdesignerfull.esm.min.js.LICENSE.txt +31 -1
- package/dist/workflowdesignerfull.min.js +1 -1
- package/dist/workflowdesignerfull.min.js.LICENSE.txt +31 -1
- package/dist/workflowdesignerfull.strict.esm.min.js +2 -0
- package/dist/{workflowdesignerfull.nocss.esm.min.js.LICENSE.txt → workflowdesignerfull.strict.esm.min.js.LICENSE.txt} +19 -1
- package/dist/workflowdesignerfull.strict.min.js +3 -0
- package/dist/{workflowdesignerfull.nocss.min.js.LICENSE.txt → workflowdesignerfull.strict.min.js.LICENSE.txt} +19 -1
- package/{index.nocss.js → index.strict.js} +1 -1
- package/{module.nocss.js → module.strict.js} +1 -1
- package/package.json +26 -22
- package/dist/workflowdesignerfull.nocss.esm.min.js +0 -2
- package/dist/workflowdesignerfull.nocss.min.js +0 -3
|
@@ -23,7 +23,25 @@
|
|
|
23
23
|
*/
|
|
24
24
|
|
|
25
25
|
/**
|
|
26
|
-
* vue v3.5.22
|
|
26
|
+
* @vue/reactivity v3.5.22
|
|
27
|
+
* (c) 2018-present Yuxi (Evan) You and Vue contributors
|
|
28
|
+
* @license MIT
|
|
29
|
+
**/
|
|
30
|
+
|
|
31
|
+
/**
|
|
32
|
+
* @vue/runtime-core v3.5.22
|
|
33
|
+
* (c) 2018-present Yuxi (Evan) You and Vue contributors
|
|
34
|
+
* @license MIT
|
|
35
|
+
**/
|
|
36
|
+
|
|
37
|
+
/**
|
|
38
|
+
* @vue/runtime-dom v3.5.22
|
|
39
|
+
* (c) 2018-present Yuxi (Evan) You and Vue contributors
|
|
40
|
+
* @license MIT
|
|
41
|
+
**/
|
|
42
|
+
|
|
43
|
+
/**
|
|
44
|
+
* @vue/shared v3.5.22
|
|
27
45
|
* (c) 2018-present Yuxi (Evan) You and Vue contributors
|
|
28
46
|
* @license MIT
|
|
29
47
|
**/
|
|
@@ -4,7 +4,7 @@ window.$ = window.jQuery = jQuery;
|
|
|
4
4
|
import moment from 'moment'
|
|
5
5
|
window.moment = moment;
|
|
6
6
|
|
|
7
|
-
import './dist/workflowdesignerfull.
|
|
7
|
+
import './dist/workflowdesignerfull.strict.min.js'
|
|
8
8
|
|
|
9
9
|
var WorkflowDesigner = window.WorkflowDesigner;
|
|
10
10
|
export default WorkflowDesigner;
|
|
@@ -4,6 +4,6 @@ window.$ = window.jQuery = jQuery;
|
|
|
4
4
|
import moment from 'moment'
|
|
5
5
|
window.moment = moment;
|
|
6
6
|
|
|
7
|
-
import WorkflowDesigner from './dist/workflowdesignerfull.
|
|
7
|
+
import WorkflowDesigner from './dist/workflowdesignerfull.strict.esm.min.js';
|
|
8
8
|
|
|
9
9
|
export default WorkflowDesigner;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@optimajet/workflow-designer",
|
|
3
|
-
"version": "20.0.
|
|
3
|
+
"version": "20.0.8",
|
|
4
4
|
"description": "Designer for Workflow Engine",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"designer",
|
|
@@ -13,6 +13,19 @@
|
|
|
13
13
|
"email": "support@optimajet.com"
|
|
14
14
|
},
|
|
15
15
|
"main": "index.js",
|
|
16
|
+
"module": "./module.js",
|
|
17
|
+
"exports": {
|
|
18
|
+
".": {
|
|
19
|
+
"import": "./module.js",
|
|
20
|
+
"require": "./index.js"
|
|
21
|
+
},
|
|
22
|
+
"./strict": {
|
|
23
|
+
"import": "./module.strict.js",
|
|
24
|
+
"require": "./index.strict.js"
|
|
25
|
+
},
|
|
26
|
+
"./strict-esm": "./dist/workflowdesignerfull.strict.esm.min.js",
|
|
27
|
+
"./dist/workflowdesigner.min.css": "./dist/workflowdesigner.min.css"
|
|
28
|
+
},
|
|
16
29
|
"bin": "bin/index.mjs",
|
|
17
30
|
"publishConfig": {
|
|
18
31
|
"access": "public"
|
|
@@ -20,21 +33,22 @@
|
|
|
20
33
|
"files": [
|
|
21
34
|
"README.md",
|
|
22
35
|
"index.js",
|
|
23
|
-
"index.
|
|
36
|
+
"index.strict.js",
|
|
24
37
|
"module.js",
|
|
25
|
-
"module.
|
|
38
|
+
"module.strict.js",
|
|
26
39
|
"dist/workflowdesigner.min.css",
|
|
27
40
|
"dist/workflowdesignerfull.min.js",
|
|
28
41
|
"dist/workflowdesignerfull.min.js.LICENSE.txt",
|
|
29
42
|
"dist/workflowdesignerfull.esm.min.js",
|
|
30
43
|
"dist/workflowdesignerfull.esm.min.js.LICENSE.txt",
|
|
31
|
-
"dist/workflowdesignerfull.
|
|
32
|
-
"dist/workflowdesignerfull.
|
|
33
|
-
"dist/workflowdesignerfull.
|
|
34
|
-
"dist/workflowdesignerfull.
|
|
44
|
+
"dist/workflowdesignerfull.strict.min.js",
|
|
45
|
+
"dist/workflowdesignerfull.strict.min.js.LICENSE.txt",
|
|
46
|
+
"dist/workflowdesignerfull.strict.esm.min.js",
|
|
47
|
+
"dist/workflowdesignerfull.strict.esm.min.js.LICENSE.txt",
|
|
35
48
|
"localization/workflowdesigner*",
|
|
36
49
|
"bin/template/index.html",
|
|
37
|
-
"bin/template/index.js"
|
|
50
|
+
"bin/template/index.js",
|
|
51
|
+
"dist/*.woff2"
|
|
38
52
|
],
|
|
39
53
|
"devDependencies": {
|
|
40
54
|
"@babel/core": "^7.15.0",
|
|
@@ -46,6 +60,8 @@
|
|
|
46
60
|
"@types/ace": "0.0.47",
|
|
47
61
|
"@types/react": "^18.0.5",
|
|
48
62
|
"@types/react-dom": "^18.0.1",
|
|
63
|
+
"@vue/compiler-dom": "^3.5.22",
|
|
64
|
+
"acorn": "^8.15.0",
|
|
49
65
|
"axios": "^1.6.0",
|
|
50
66
|
"babel-loader": "^8.2.2",
|
|
51
67
|
"core-js": "^3.18.3",
|
|
@@ -72,6 +88,7 @@
|
|
|
72
88
|
"@microsoft/signalr": "^10.0.0",
|
|
73
89
|
"el-table-infinite-scroll": "^3.0.7",
|
|
74
90
|
"element-plus": "^2.13.1",
|
|
91
|
+
"full": "^1.0.1",
|
|
75
92
|
"jquery": "^3.6.0",
|
|
76
93
|
"js-base64": "^3.7.7",
|
|
77
94
|
"json5": "^2.2.3",
|
|
@@ -84,18 +101,5 @@
|
|
|
84
101
|
"ws": "^7.5.10"
|
|
85
102
|
}
|
|
86
103
|
},
|
|
87
|
-
"type": "module"
|
|
88
|
-
"module": "./module.js",
|
|
89
|
-
"exports": {
|
|
90
|
-
".": {
|
|
91
|
-
"import": "./module.js",
|
|
92
|
-
"require": "./index.js"
|
|
93
|
-
},
|
|
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"
|
|
100
|
-
}
|
|
104
|
+
"type": "module"
|
|
101
105
|
}
|