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 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.0/css/designer.css" rel="stylesheet">
105
- <link href="https://cdn.jsdelivr.net/npm/sequential-workflow-designer@0.21.0/css/designer-light.css" rel="stylesheet">
106
- <link href="https://cdn.jsdelivr.net/npm/sequential-workflow-designer@0.21.0/css/designer-dark.css" rel="stylesheet">
107
- <script src="https://cdn.jsdelivr.net/npm/sequential-workflow-designer@0.21.0/dist/index.umd.js"></script>
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
@@ -3952,7 +3952,8 @@
3952
3952
  if (data.iconUrl) {
3953
3953
  const iconImage = Dom.element('img', {
3954
3954
  class: 'sqd-toolbox-item-icon-image',
3955
- src: data.iconUrl
3955
+ src: data.iconUrl,
3956
+ draggable: 'false'
3956
3957
  });
3957
3958
  icon.appendChild(iconImage);
3958
3959
  }
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.0",
4
+ "version": "0.21.2",
5
5
  "type": "module",
6
6
  "main": "./lib/esm/index.js",
7
7
  "types": "./lib/index.d.ts",