sequential-workflow-designer 0.16.5 → 0.16.7
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 +7 -6
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -13,7 +13,7 @@ Features:
|
|
|
13
13
|
* use light/dark themes or customize easily,
|
|
14
14
|
* compatible with modern browsers and mobile devices,
|
|
15
15
|
* the definition is stored as JSON,
|
|
16
|
-
* supports [React](./react/) and [
|
|
16
|
+
* supports [Angular](./angular/designer/), [React](./react/) and [Svelte](./svelte/).
|
|
17
17
|
|
|
18
18
|
📝 Check the [documentation](https://nocode-js.com/docs/category/sequential-workflow-designer) for more details.
|
|
19
19
|
|
|
@@ -33,8 +33,9 @@ Features:
|
|
|
33
33
|
* [📜 Scrollable Page](https://nocode-js.github.io/sequential-workflow-designer/examples/scrollable-page.html)
|
|
34
34
|
* [🌵 Multi-Conditional Switch](https://nocode-js.github.io/sequential-workflow-designer/examples/multi-conditional-switch.html)
|
|
35
35
|
* [🌀 Auto-Select](https://nocode-js.github.io/sequential-workflow-designer/examples/auto-select.html)
|
|
36
|
-
* [React Demo](https://nocode-js.github.io/sequential-workflow-designer/react-app/)
|
|
37
36
|
* [Angular Demo](https://nocode-js.github.io/sequential-workflow-designer/angular-app/)
|
|
37
|
+
* [React Demo](https://nocode-js.github.io/sequential-workflow-designer/react-app/)
|
|
38
|
+
* [Svelte Demo](https://nocode-js.github.io/sequential-workflow-designer/svelte-app/)
|
|
38
39
|
|
|
39
40
|
Pro:
|
|
40
41
|
|
|
@@ -95,10 +96,10 @@ Add the below code to your head section in HTML document.
|
|
|
95
96
|
```html
|
|
96
97
|
<head>
|
|
97
98
|
...
|
|
98
|
-
<link href="https://cdn.jsdelivr.net/npm/sequential-workflow-designer@0.16.
|
|
99
|
-
<link href="https://cdn.jsdelivr.net/npm/sequential-workflow-designer@0.16.
|
|
100
|
-
<link href="https://cdn.jsdelivr.net/npm/sequential-workflow-designer@0.16.
|
|
101
|
-
<script src="https://cdn.jsdelivr.net/npm/sequential-workflow-designer@0.16.
|
|
99
|
+
<link href="https://cdn.jsdelivr.net/npm/sequential-workflow-designer@0.16.7/css/designer.css" rel="stylesheet">
|
|
100
|
+
<link href="https://cdn.jsdelivr.net/npm/sequential-workflow-designer@0.16.7/css/designer-light.css" rel="stylesheet">
|
|
101
|
+
<link href="https://cdn.jsdelivr.net/npm/sequential-workflow-designer@0.16.7/css/designer-dark.css" rel="stylesheet">
|
|
102
|
+
<script src="https://cdn.jsdelivr.net/npm/sequential-workflow-designer@0.16.7/dist/index.umd.js"></script>
|
|
102
103
|
```
|
|
103
104
|
|
|
104
105
|
Call the designer by:
|
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.16.
|
|
4
|
+
"version": "0.16.7",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "./lib/esm/index.js",
|
|
7
7
|
"types": "./lib/index.d.ts",
|