sequential-workflow-designer 0.33.0 → 0.33.1

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
@@ -106,10 +106,10 @@ Add the below code to your head section in HTML document.
106
106
  ```html
107
107
  <head>
108
108
  ...
109
- <link href="https://cdn.jsdelivr.net/npm/sequential-workflow-designer@0.33.0/css/designer.css" rel="stylesheet">
110
- <link href="https://cdn.jsdelivr.net/npm/sequential-workflow-designer@0.33.0/css/designer-light.css" rel="stylesheet">
111
- <link href="https://cdn.jsdelivr.net/npm/sequential-workflow-designer@0.33.0/css/designer-dark.css" rel="stylesheet">
112
- <script src="https://cdn.jsdelivr.net/npm/sequential-workflow-designer@0.33.0/dist/index.umd.js"></script>
109
+ <link href="https://cdn.jsdelivr.net/npm/sequential-workflow-designer@0.33.1/css/designer.css" rel="stylesheet">
110
+ <link href="https://cdn.jsdelivr.net/npm/sequential-workflow-designer@0.33.1/css/designer-light.css" rel="stylesheet">
111
+ <link href="https://cdn.jsdelivr.net/npm/sequential-workflow-designer@0.33.1/css/designer-dark.css" rel="stylesheet">
112
+ <script src="https://cdn.jsdelivr.net/npm/sequential-workflow-designer@0.33.1/dist/index.umd.js"></script>
113
113
  ```
114
114
 
115
115
  Call the designer by:
@@ -149,7 +149,7 @@
149
149
  fill: #fff;
150
150
  stroke-width: 1;
151
151
  stroke: #c3c3c3;
152
- filter: drop-shadow(0 1.5px 1.5px rgba(0, 0, 0, 0.15));
152
+ filter: drop-shadow(0 2px 2px rgba(0, 0, 0, 0.15));
153
153
  }
154
154
  .sqd-theme-light .sqd-step-task .sqd-step-task-rect.sqd-selected {
155
155
  stroke: #ed4800;
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.33.0",
4
+ "version": "0.33.1",
5
5
  "type": "module",
6
6
  "main": "./lib/esm/index.js",
7
7
  "types": "./lib/index.d.ts",
@@ -264,7 +264,7 @@
264
264
  $rectStrokeColorSelected: #ed4800,
265
265
  $rectStrokeWidth: 1,
266
266
  $rectStrokeWidthSelected: 2,
267
- $rectShadow: (0 1.5px 1.5px rgba(0, 0, 0, 0.15)),
267
+ $rectShadow: (0 2px 2px rgba(0, 0, 0, 0.15)),
268
268
  $textColor: #000,
269
269
  $emptyIconColor: #c6c6c6,
270
270
  $inputStrokeWidth: 2,