sequential-workflow-designer 0.21.0 → 0.21.2
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/README.md +5 -4
- package/dist/index.umd.js +2 -1
- package/lib/cjs/index.cjs +2 -1
- package/lib/esm/index.js +2 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -44,6 +44,7 @@ Pro:
|
|
|
44
44
|
* [🍬 Custom Theme Flat](https://nocode-js.com/examples/sequential-workflow-designer-pro/webpack-pro-app/public/custom-theme-flat.html)
|
|
45
45
|
* [🌹 Custom Step Types](https://nocode-js.com/examples/sequential-workflow-designer-pro/webpack-pro-app/public/custom-step-types.html)
|
|
46
46
|
* [📺 Popup Editor](https://nocode-js.com/examples/sequential-workflow-designer-pro/webpack-pro-app/public/popup-editor.html)
|
|
47
|
+
* [🔽 Collapsible Region](https://nocode-js.com/examples/sequential-workflow-designer-pro/webpack-pro-app/public/collapsible-region.html)
|
|
47
48
|
* [💼 Copy Paste](https://nocode-js.com/examples/sequential-workflow-designer-pro/webpack-pro-app/public/copy-paste.html)
|
|
48
49
|
* [👈 Goto](https://nocode-js.com/examples/sequential-workflow-designer-pro/webpack-pro-app/public/goto.html)
|
|
49
50
|
* [📁 Folders](https://nocode-js.com/examples/sequential-workflow-designer-pro/webpack-pro-app/public/folders.html)
|
|
@@ -101,10 +102,10 @@ Add the below code to your head section in HTML document.
|
|
|
101
102
|
```html
|
|
102
103
|
<head>
|
|
103
104
|
...
|
|
104
|
-
<link href="https://cdn.jsdelivr.net/npm/sequential-workflow-designer@0.21.
|
|
105
|
-
<link href="https://cdn.jsdelivr.net/npm/sequential-workflow-designer@0.21.
|
|
106
|
-
<link href="https://cdn.jsdelivr.net/npm/sequential-workflow-designer@0.21.
|
|
107
|
-
<script src="https://cdn.jsdelivr.net/npm/sequential-workflow-designer@0.21.
|
|
105
|
+
<link href="https://cdn.jsdelivr.net/npm/sequential-workflow-designer@0.21.2/css/designer.css" rel="stylesheet">
|
|
106
|
+
<link href="https://cdn.jsdelivr.net/npm/sequential-workflow-designer@0.21.2/css/designer-light.css" rel="stylesheet">
|
|
107
|
+
<link href="https://cdn.jsdelivr.net/npm/sequential-workflow-designer@0.21.2/css/designer-dark.css" rel="stylesheet">
|
|
108
|
+
<script src="https://cdn.jsdelivr.net/npm/sequential-workflow-designer@0.21.2/dist/index.umd.js"></script>
|
|
108
109
|
```
|
|
109
110
|
|
|
110
111
|
Call the designer by:
|
package/dist/index.umd.js
CHANGED
package/lib/cjs/index.cjs
CHANGED
|
@@ -3767,7 +3767,8 @@ class ToolboxItemView {
|
|
|
3767
3767
|
if (data.iconUrl) {
|
|
3768
3768
|
const iconImage = Dom.element('img', {
|
|
3769
3769
|
class: 'sqd-toolbox-item-icon-image',
|
|
3770
|
-
src: data.iconUrl
|
|
3770
|
+
src: data.iconUrl,
|
|
3771
|
+
draggable: 'false'
|
|
3771
3772
|
});
|
|
3772
3773
|
icon.appendChild(iconImage);
|
|
3773
3774
|
}
|
package/lib/esm/index.js
CHANGED
|
@@ -3766,7 +3766,8 @@ class ToolboxItemView {
|
|
|
3766
3766
|
if (data.iconUrl) {
|
|
3767
3767
|
const iconImage = Dom.element('img', {
|
|
3768
3768
|
class: 'sqd-toolbox-item-icon-image',
|
|
3769
|
-
src: data.iconUrl
|
|
3769
|
+
src: data.iconUrl,
|
|
3770
|
+
draggable: 'false'
|
|
3770
3771
|
});
|
|
3771
3772
|
icon.appendChild(iconImage);
|
|
3772
3773
|
}
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "sequential-workflow-designer",
|
|
3
3
|
"description": "Customizable no-code component for building flow-based programming applications.",
|
|
4
|
-
"version": "0.21.
|
|
4
|
+
"version": "0.21.2",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "./lib/esm/index.js",
|
|
7
7
|
"types": "./lib/index.d.ts",
|