@optimajet/workflow-designer 14.0.0 → 15.0.0

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.
@@ -0,0 +1,62 @@
1
+ /*!
2
+ * Vue.js v2.7.16
3
+ * (c) 2014-2023 Evan You
4
+ * Released under the MIT License.
5
+ */
6
+
7
+ /*!
8
+ * vue-infinite-loading v2.4.5
9
+ * (c) 2016-2020 PeachScript
10
+ * MIT License
11
+ */
12
+
13
+ /*! regenerator-runtime -- Copyright (c) 2014-present, Facebook, Inc. -- license (MIT): https://github.com/facebook/regenerator/blob/main/LICENSE */
14
+
15
+ /**
16
+ * @license
17
+ * Lodash <https://lodash.com/>
18
+ * Copyright JS Foundation and other contributors <https://js.foundation/>
19
+ * Released under MIT license <https://lodash.com/license>
20
+ * Based on Underscore.js 1.8.3 <http://underscorejs.org/LICENSE>
21
+ * Copyright Jeremy Ashkenas, DocumentCloud and Investigative Reporters & Editors
22
+ */
23
+
24
+ /**
25
+ * @fileOverview Kickass library to create and place poppers near their reference elements.
26
+ * @version {{version}}
27
+ * @license
28
+ * Copyright (c) 2016 Federico Zivolo and contributors
29
+ *
30
+ * Permission is hereby granted, free of charge, to any person obtaining a copy
31
+ * of this software and associated documentation files (the "Software"), to deal
32
+ * in the Software without restriction, including without limitation the rights
33
+ * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
34
+ * copies of the Software, and to permit persons to whom the Software is
35
+ * furnished to do so, subject to the following conditions:
36
+ *
37
+ * The above copyright notice and this permission notice shall be included in all
38
+ * copies or substantial portions of the Software.
39
+ *
40
+ * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
41
+ * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
42
+ * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
43
+ * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
44
+ * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
45
+ * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
46
+ * SOFTWARE.
47
+ */
48
+
49
+ /**
50
+ * Checks if an event is supported in the current execution environment.
51
+ *
52
+ * NOTE: This will not work correctly for non-generic events such as `change`,
53
+ * `reset`, `load`, `error`, and `select`.
54
+ *
55
+ * Borrows from Modernizr.
56
+ *
57
+ * @param {string} eventNameSuffix Event name, e.g. "click".
58
+ * @param {?boolean} capture Check if the capture phase is supported.
59
+ * @return {boolean} True if the event is supported.
60
+ * @internal
61
+ * @license Modernizr 3.0.0pre (Custom Build) | MIT
62
+ */
package/module.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 WorkflowDesigner from './dist/workflowdesignerfull.esm.min.js';
8
+ import './dist/workflowdesigner.min.css';
9
+
10
+ export default WorkflowDesigner;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@optimajet/workflow-designer",
3
- "version": "14.0.0",
3
+ "version": "15.0.0",
4
4
  "description": "Designer for Workflow Engine",
5
5
  "keywords": [
6
6
  "designer",
@@ -18,7 +18,8 @@
18
18
  "build": "webpack --config webpack.config.js",
19
19
  "build-dev": "webpack --env development --config webpack.config.js",
20
20
  "build-full": "webpack --config webpack.config.full.js",
21
- "build-full-dev": "webpack --env development --config webpack.config.full.js"
21
+ "build-full-dev": "webpack --env development --config webpack.config.full.js",
22
+ "create-archive": "node ./BuildScripts/config/pack"
22
23
  },
23
24
  "bin": "bin/index.js",
24
25
  "publishConfig": {
@@ -27,8 +28,12 @@
27
28
  "files": [
28
29
  "README.md",
29
30
  "index.js",
31
+ "module.js",
30
32
  "dist/workflowdesigner.min.css",
31
33
  "dist/workflowdesignerfull.min.js",
34
+ "dist/workflowdesignerfull.min.js.LICENSE.txt",
35
+ "dist/workflowdesignerfull.esm.min.js",
36
+ "dist/workflowdesignerfull.esm.min.js.LICENSE.txt",
32
37
  "localization/workflowdesigner*",
33
38
  "bin/index/js",
34
39
  "bin/template/index.html",