sequential-workflow-designer 0.21.1 → 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
@@ -102,10 +102,10 @@ Add the below code to your head section in HTML document.
102
102
  ```html
103
103
  <head>
104
104
  ...
105
- <link href="https://cdn.jsdelivr.net/npm/sequential-workflow-designer@0.21.1/css/designer.css" rel="stylesheet">
106
- <link href="https://cdn.jsdelivr.net/npm/sequential-workflow-designer@0.21.1/css/designer-light.css" rel="stylesheet">
107
- <link href="https://cdn.jsdelivr.net/npm/sequential-workflow-designer@0.21.1/css/designer-dark.css" rel="stylesheet">
108
- <script src="https://cdn.jsdelivr.net/npm/sequential-workflow-designer@0.21.1/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>
109
109
  ```
110
110
 
111
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.1",
4
+ "version": "0.21.2",
5
5
  "type": "module",
6
6
  "main": "./lib/esm/index.js",
7
7
  "types": "./lib/index.d.ts",