-
Notifications
You must be signed in to change notification settings - Fork 128
/
Copy pathmulti-conditional-switch.html
104 lines (99 loc) · 2.56 KB
/
multi-conditional-switch.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0" />
<title>🌵 Multi-Conditional Switch Example - Sequential Workflow Designer</title>
<meta property="og:title" content="🌵 Multi-Conditional Switch Example - Sequential Workflow Designer" />
<meta name="description" content="How to use Sequential Workflow Designer to create a multi-conditional switch." />
<meta property="og:description" content="How to use Sequential Workflow Designer to create a multi-conditional switch." />
<meta property="og:image" content="https://nocode-js.com/img/social-card.png" />
<meta name="twitter:card" content="summary_large_image" />
<meta name="twitter:image" content="https://nocode-js.com/img/social-card.png" />
<link rel="icon" href="./assets/favicon.ico" />
<link rel="stylesheet" href="./assets/common.css" />
<style>
html,
body {
width: 100%;
height: 100%;
overflow: hidden;
}
body {
display: flex;
flex-direction: column;
}
.main {
flex: 1;
position: relative;
}
#designer {
position: absolute;
width: 100%;
height: 100%;
}
.sqd-editor {
padding: 10px;
}
.sqd-editor h2 {
margin: 10px 0 20px;
padding: 0;
line-height: 1.1em;
}
.sqd-editor p {
line-height: 1.3em;
}
.sqd-editor button {
border: 0;
padding: 5px 8px;
background: #222;
color: #fff;
cursor: pointer;
border-radius: 5px;
}
.sqd-editor button:hover {
background: #444;
}
.sqd-editor input[type='text'] {
width: 100%;
margin: 0 0 5px;
box-sizing: border-box;
padding: 5px;
border: 1px solid #ddd;
border-radius: 5px;
}
.sqd-editor .switch-branch {
padding: 10px;
border: 1px solid #ddd;
margin: 10px 0;
border-radius: 5px;
}
.sqd-editor .switch-branch h4 {
margin: 0;
font-size: 14px;
background: #ddd;
padding: 5px;
border-radius: 5px;
}
.sqd-editor .switch-branch label {
display: block;
padding: 5px 0;
}
</style>
</head>
<body>
<header class="title-bar">
<div class="column">
<h1>🌵 Multi-Conditional Switch Example</h1>
</div>
<div class="column text-end flex-1">
<a href="https://github.com/nocode-js/sequential-workflow-designer" target="_blank">GitHub</a>
</div>
</header>
<div class="main">
<div id="designer"></div>
</div>
<script src="./assets/lib.js"></script>
<script src="./assets/multi-conditional-switch.js"></script>
</body>
</html>