sequential-workflow-designer 0.38.0 → 0.38.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
@@ -107,10 +107,10 @@ Add the below code to your head section in HTML document.
107
107
  ```html
108
108
  <head>
109
109
  ...
110
- <link href="https://cdn.jsdelivr.net/npm/sequential-workflow-designer@0.38.0/css/designer.css" rel="stylesheet" />
111
- <link href="https://cdn.jsdelivr.net/npm/sequential-workflow-designer@0.38.0/css/designer-light.css" rel="stylesheet" />
112
- <link href="https://cdn.jsdelivr.net/npm/sequential-workflow-designer@0.38.0/css/designer-dark.css" rel="stylesheet" />
113
- <script src="https://cdn.jsdelivr.net/npm/sequential-workflow-designer@0.38.0/dist/index.umd.js"></script>
110
+ <link href="https://cdn.jsdelivr.net/npm/sequential-workflow-designer@0.38.1/css/designer.css" rel="stylesheet" />
111
+ <link href="https://cdn.jsdelivr.net/npm/sequential-workflow-designer@0.38.1/css/designer-light.css" rel="stylesheet" />
112
+ <link href="https://cdn.jsdelivr.net/npm/sequential-workflow-designer@0.38.1/css/designer-dark.css" rel="stylesheet" />
113
+ <script src="https://cdn.jsdelivr.net/npm/sequential-workflow-designer@0.38.1/dist/index.umd.js"></script>
114
114
  </head>
115
115
  ```
116
116
 
package/dist/index.umd.js CHANGED
@@ -17,7 +17,7 @@
17
17
  }
18
18
  static attrs(element, attributes) {
19
19
  const names = Object.keys(attributes);
20
- for (const name in names) {
20
+ for (const name of names) {
21
21
  const value = attributes[name];
22
22
  element.setAttribute(name, typeof value === 'string' ? value : value.toString());
23
23
  }
package/lib/cjs/index.cjs CHANGED
@@ -15,7 +15,7 @@ class Dom {
15
15
  }
16
16
  static attrs(element, attributes) {
17
17
  const names = Object.keys(attributes);
18
- for (const name in names) {
18
+ for (const name of names) {
19
19
  const value = attributes[name];
20
20
  element.setAttribute(name, typeof value === 'string' ? value : value.toString());
21
21
  }
package/lib/esm/index.js CHANGED
@@ -14,7 +14,7 @@ class Dom {
14
14
  }
15
15
  static attrs(element, attributes) {
16
16
  const names = Object.keys(attributes);
17
- for (const name in names) {
17
+ for (const name of names) {
18
18
  const value = attributes[name];
19
19
  element.setAttribute(name, typeof value === 'string' ? value : value.toString());
20
20
  }
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.38.0",
4
+ "version": "0.38.1",
5
5
  "type": "module",
6
6
  "main": "./lib/esm/index.js",
7
7
  "types": "./lib/index.d.ts",