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 +4 -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
|
@@ -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.
|
|
106
|
-
<link href="https://cdn.jsdelivr.net/npm/sequential-workflow-designer@0.21.
|
|
107
|
-
<link href="https://cdn.jsdelivr.net/npm/sequential-workflow-designer@0.21.
|
|
108
|
-
<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>
|
|
109
109
|
```
|
|
110
110
|
|
|
111
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",
|