workflow-editor 0.0.81-up-tmp8 → 0.0.81-up-tmp9
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/dist/index.full.min.js +142 -138
- package/es/index.mjs +13 -15
- package/es/style.css +181 -181
- package/es/workflow-editor/index.mjs +10 -0
- package/lib/index.cjs +4 -4
- package/lib/style.css +122 -122
- package/lib/workflow-editor/index.cjs +7 -0
- package/package.json +1 -1
package/lib/style.css
CHANGED
|
@@ -140,6 +140,53 @@ section[data-v-6658e14b] {
|
|
|
140
140
|
.el-button i[data-v-0d941719] {
|
|
141
141
|
padding-right: 4px;
|
|
142
142
|
}
|
|
143
|
+
#svg{
|
|
144
|
+
/* border:1px solid red; */
|
|
145
|
+
background: white;
|
|
146
|
+
background-image:
|
|
147
|
+
linear-gradient(rgba(242,242,242,.7) 1px, transparent 0),
|
|
148
|
+
linear-gradient(90deg, rgba(242,242,242,.7) 1px, transparent 0),
|
|
149
|
+
linear-gradient(#e5e5e5 1px, transparent 0),
|
|
150
|
+
linear-gradient(90deg,#e5e5e5 1px, transparent 0);
|
|
151
|
+
background-size:
|
|
152
|
+
15px 15px,
|
|
153
|
+
15px 15px,
|
|
154
|
+
75px 75px,
|
|
155
|
+
75px 75px;
|
|
156
|
+
}
|
|
157
|
+
g{
|
|
158
|
+
font-size: 16px;
|
|
159
|
+
}
|
|
160
|
+
g text{
|
|
161
|
+
dominant-baseline: middle;
|
|
162
|
+
}
|
|
163
|
+
.selected{
|
|
164
|
+
fill: #fff;
|
|
165
|
+
stroke: #f00;
|
|
166
|
+
stroke-width: 2;
|
|
167
|
+
}
|
|
168
|
+
.task-tache{
|
|
169
|
+
fill: #fff;
|
|
170
|
+
stroke: #666;
|
|
171
|
+
stroke-width: 2;
|
|
172
|
+
}
|
|
173
|
+
.passed-tache .task-tache{
|
|
174
|
+
fill: green;
|
|
175
|
+
stroke: green;
|
|
176
|
+
stroke-width: 2;
|
|
177
|
+
}
|
|
178
|
+
.current-tache .task-tache{
|
|
179
|
+
fill: red;
|
|
180
|
+
stroke: red;
|
|
181
|
+
stroke-width: 2;
|
|
182
|
+
}
|
|
183
|
+
.passed-tache text{
|
|
184
|
+
fill:white;
|
|
185
|
+
}
|
|
186
|
+
.current-tache text{
|
|
187
|
+
fill: white
|
|
188
|
+
}
|
|
189
|
+
|
|
143
190
|
#svg{
|
|
144
191
|
/* border:1px solid red; */
|
|
145
192
|
background: white;
|
|
@@ -207,64 +254,17 @@ li[data-v-7e8a1cf6] {
|
|
|
207
254
|
li[data-v-7e8a1cf6] {
|
|
208
255
|
list-style-type: none;
|
|
209
256
|
}
|
|
210
|
-
#svg{
|
|
211
|
-
/* border:1px solid red; */
|
|
212
|
-
background: white;
|
|
213
|
-
background-image:
|
|
214
|
-
linear-gradient(rgba(242,242,242,.7) 1px, transparent 0),
|
|
215
|
-
linear-gradient(90deg, rgba(242,242,242,.7) 1px, transparent 0),
|
|
216
|
-
linear-gradient(#e5e5e5 1px, transparent 0),
|
|
217
|
-
linear-gradient(90deg,#e5e5e5 1px, transparent 0);
|
|
218
|
-
background-size:
|
|
219
|
-
15px 15px,
|
|
220
|
-
15px 15px,
|
|
221
|
-
75px 75px,
|
|
222
|
-
75px 75px;
|
|
223
|
-
}
|
|
224
|
-
g{
|
|
225
|
-
font-size: 16px;
|
|
226
|
-
}
|
|
227
|
-
g text{
|
|
228
|
-
dominant-baseline: middle;
|
|
229
|
-
}
|
|
230
|
-
.selected{
|
|
231
|
-
fill: #fff;
|
|
232
|
-
stroke: #f00;
|
|
233
|
-
stroke-width: 2;
|
|
234
|
-
}
|
|
235
|
-
.task-tache{
|
|
236
|
-
fill: #fff;
|
|
237
|
-
stroke: #666;
|
|
238
|
-
stroke-width: 2;
|
|
239
|
-
}
|
|
240
|
-
.passed-tache .task-tache{
|
|
241
|
-
fill: green;
|
|
242
|
-
stroke: green;
|
|
243
|
-
stroke-width: 2;
|
|
244
|
-
}
|
|
245
|
-
.current-tache .task-tache{
|
|
246
|
-
fill: red;
|
|
247
|
-
stroke: red;
|
|
248
|
-
stroke-width: 2;
|
|
249
|
-
}
|
|
250
|
-
.passed-tache text{
|
|
251
|
-
fill:white;
|
|
252
|
-
}
|
|
253
|
-
.current-tache text{
|
|
254
|
-
fill: white
|
|
255
|
-
}
|
|
256
|
-
|
|
257
257
|
.start{
|
|
258
258
|
stroke-width: 0;
|
|
259
259
|
fill:#fff;
|
|
260
260
|
}
|
|
261
261
|
|
|
262
|
-
.
|
|
262
|
+
.decision{
|
|
263
263
|
stroke-width: 0;
|
|
264
264
|
fill:#fff;
|
|
265
265
|
}
|
|
266
266
|
|
|
267
|
-
.
|
|
267
|
+
.end{
|
|
268
268
|
stroke-width: 0;
|
|
269
269
|
fill:#fff;
|
|
270
270
|
}
|
|
@@ -302,14 +302,21 @@ g text{
|
|
|
302
302
|
.no-events[data-v-a1576cad] {
|
|
303
303
|
pointer-events: none;
|
|
304
304
|
}
|
|
305
|
-
|
|
306
|
-
|
|
307
|
-
|
|
308
|
-
|
|
309
|
-
|
|
310
|
-
|
|
311
|
-
|
|
312
|
-
|
|
305
|
+
.tooltip[data-v-ac799913] {
|
|
306
|
+
position: absolute;
|
|
307
|
+
background: #fff;
|
|
308
|
+
min-width: 150px;
|
|
309
|
+
border-radius: 4px;
|
|
310
|
+
border: 1px solid #ebeef5;
|
|
311
|
+
padding: 12px;
|
|
312
|
+
z-index: 2000;
|
|
313
|
+
color: #606266;
|
|
314
|
+
line-height: 1.4;
|
|
315
|
+
text-align: justify;
|
|
316
|
+
font-size: 14px;
|
|
317
|
+
box-shadow: 0 2px 12px 0 rgba(0, 0, 0, 0.1);
|
|
318
|
+
word-break: break-all;
|
|
319
|
+
}
|
|
313
320
|
.selection-region{
|
|
314
321
|
stroke: blue;
|
|
315
322
|
stroke-width: 1;
|
|
@@ -323,7 +330,17 @@ g text{
|
|
|
323
330
|
/* 控制region在画的过程中不响应任何事件,只有画完后才能响应 */
|
|
324
331
|
pointer-events:none;
|
|
325
332
|
}
|
|
326
|
-
|
|
333
|
+
|
|
334
|
+
.virtual-transition{
|
|
335
|
+
stroke-width: 2;
|
|
336
|
+
stroke:#000;
|
|
337
|
+
stroke-dasharray: 2 2;
|
|
338
|
+
fill: none;
|
|
339
|
+
}
|
|
340
|
+
#_subprocess-content[data-v-2b195c05] {
|
|
341
|
+
width: 100%;
|
|
342
|
+
height: calc(100vh - 200px);
|
|
343
|
+
}
|
|
327
344
|
/* 使用深度作用选择器(vue-loader的功能)">>>"符号重新定义了.el-dialog__body,不影响其他页面的同名样式*/
|
|
328
345
|
.properties-editor[data-v-1651d82a] .el-dialog__body {
|
|
329
346
|
padding-top: 0;
|
|
@@ -333,25 +350,6 @@ g text{
|
|
|
333
350
|
.properties-editor[data-v-0e44fe8c] .el-dialog__body{
|
|
334
351
|
padding-top: 0
|
|
335
352
|
}
|
|
336
|
-
.tooltip[data-v-ac799913] {
|
|
337
|
-
position: absolute;
|
|
338
|
-
background: #fff;
|
|
339
|
-
min-width: 150px;
|
|
340
|
-
border-radius: 4px;
|
|
341
|
-
border: 1px solid #ebeef5;
|
|
342
|
-
padding: 12px;
|
|
343
|
-
z-index: 2000;
|
|
344
|
-
color: #606266;
|
|
345
|
-
line-height: 1.4;
|
|
346
|
-
text-align: justify;
|
|
347
|
-
font-size: 14px;
|
|
348
|
-
box-shadow: 0 2px 12px 0 rgba(0, 0, 0, 0.1);
|
|
349
|
-
word-break: break-all;
|
|
350
|
-
}
|
|
351
|
-
/* 使用深度作用选择器(vue-loader的功能)">>>"符号重新定义了.el-dialog__body,不影响其他页面的同名样式*/
|
|
352
|
-
.properties-editor[data-v-bd66d235] .el-dialog__body{
|
|
353
|
-
padding-top: 0
|
|
354
|
-
}
|
|
355
353
|
|
|
356
354
|
/* 使用深度作用选择器(vue-loader的功能)">>>"符号重新定义了.el-dialog__body,不影响其他页面的同名样式*/
|
|
357
355
|
.properties-editor[data-v-adb7c2ff] .el-dialog__body{
|
|
@@ -362,22 +360,10 @@ g text{
|
|
|
362
360
|
.properties-editor[data-v-af76d417] .el-dialog__body{
|
|
363
361
|
padding-top: 0
|
|
364
362
|
}
|
|
365
|
-
|
|
366
|
-
|
|
367
|
-
|
|
368
|
-
|
|
369
|
-
.control-point[data-v-0ff53a0a]{
|
|
370
|
-
fill: #fff;
|
|
371
|
-
cursor: move;
|
|
372
|
-
}
|
|
373
|
-
.control-line[data-v-0ff53a0a] {
|
|
374
|
-
stroke-dasharray: 2 2
|
|
375
|
-
}
|
|
376
|
-
|
|
377
|
-
.percent[data-v-a219b06d] {
|
|
378
|
-
margin-left: 10px;
|
|
379
|
-
color: red;
|
|
380
|
-
font-size: 1.2em;
|
|
363
|
+
|
|
364
|
+
/* 使用深度作用选择器(vue-loader的功能)">>>"符号重新定义了.el-dialog__body,不影响其他页面的同名样式*/
|
|
365
|
+
.properties-editor[data-v-bd66d235] .el-dialog__body{
|
|
366
|
+
padding-top: 0
|
|
381
367
|
}
|
|
382
368
|
|
|
383
369
|
.joint-container{
|
|
@@ -395,22 +381,26 @@ g text{
|
|
|
395
381
|
fill-opacity: 1;
|
|
396
382
|
}
|
|
397
383
|
|
|
398
|
-
.
|
|
384
|
+
.resizer{
|
|
385
|
+
stroke: blue;
|
|
386
|
+
stroke-width: 1;
|
|
387
|
+
fill: white;
|
|
388
|
+
}
|
|
389
|
+
|
|
390
|
+
.control-point[data-v-0ff53a0a]{
|
|
399
391
|
fill: #fff;
|
|
400
392
|
cursor: move;
|
|
401
393
|
}
|
|
402
|
-
.control-line[data-v-
|
|
394
|
+
.control-line[data-v-0ff53a0a] {
|
|
403
395
|
stroke-dasharray: 2 2
|
|
404
396
|
}
|
|
405
397
|
|
|
406
|
-
.
|
|
407
|
-
|
|
408
|
-
|
|
409
|
-
|
|
410
|
-
.
|
|
411
|
-
stroke:
|
|
412
|
-
stroke-width: 1;
|
|
413
|
-
fill: white;
|
|
398
|
+
.control-point[data-v-788fb0ae]{
|
|
399
|
+
fill: #fff;
|
|
400
|
+
cursor: move;
|
|
401
|
+
}
|
|
402
|
+
.control-line[data-v-788fb0ae] {
|
|
403
|
+
stroke-dasharray: 2 2
|
|
414
404
|
}
|
|
415
405
|
ul[data-v-39fac73c] {
|
|
416
406
|
margin: 0;
|
|
@@ -422,12 +412,30 @@ ul li[data-v-39fac73c] {
|
|
|
422
412
|
.sub-li[data-v-39fac73c] {
|
|
423
413
|
padding-left: 10px;
|
|
424
414
|
}
|
|
415
|
+
.percent[data-v-a219b06d] {
|
|
416
|
+
margin-left: 10px;
|
|
417
|
+
color: red;
|
|
418
|
+
font-size: 1.2em;
|
|
419
|
+
}
|
|
420
|
+
|
|
421
|
+
.el-checkbox[data-v-c019538f]{
|
|
422
|
+
margin-left: 20px;
|
|
423
|
+
}
|
|
424
|
+
|
|
425
|
+
.el-checkbox[data-v-5fb29fef]{
|
|
426
|
+
margin-left: 20px;
|
|
427
|
+
}
|
|
428
|
+
|
|
425
429
|
.percent[data-v-c1c7385b]{
|
|
426
430
|
margin-left: 10px;
|
|
427
431
|
color:red;
|
|
428
432
|
font-size:1.2em;
|
|
429
433
|
}
|
|
430
434
|
|
|
435
|
+
span[data-v-4e29ea06] {
|
|
436
|
+
margin: 0 10px;
|
|
437
|
+
}
|
|
438
|
+
|
|
431
439
|
.el-tag + .el-tag[data-v-aaf48aff] {
|
|
432
440
|
margin-left: 10px;
|
|
433
441
|
}
|
|
@@ -449,16 +457,6 @@ select[data-v-aaf48aff]{
|
|
|
449
457
|
height: 32px;
|
|
450
458
|
line-height: 32px;
|
|
451
459
|
}
|
|
452
|
-
|
|
453
|
-
.percent[data-v-6aef99ff]{
|
|
454
|
-
margin-left: 10px;
|
|
455
|
-
color:red;
|
|
456
|
-
font-size:1.2em;
|
|
457
|
-
}
|
|
458
|
-
|
|
459
|
-
.el-checkbox[data-v-5fb29fef]{
|
|
460
|
-
margin-left: 20px;
|
|
461
|
-
}
|
|
462
460
|
.group[data-v-98300543] {
|
|
463
461
|
font-size: 14px;
|
|
464
462
|
width: 100%;
|
|
@@ -474,8 +472,17 @@ select[data-v-aaf48aff]{
|
|
|
474
472
|
padding-left: 20px;
|
|
475
473
|
overflow: auto;
|
|
476
474
|
}
|
|
477
|
-
|
|
478
|
-
margin:
|
|
475
|
+
.percent[data-v-6aef99ff]{
|
|
476
|
+
margin-left: 10px;
|
|
477
|
+
color:red;
|
|
478
|
+
font-size:1.2em;
|
|
479
|
+
}
|
|
480
|
+
|
|
481
|
+
.searchResult {
|
|
482
|
+
color:red
|
|
483
|
+
}
|
|
484
|
+
.inline-input-custom {
|
|
485
|
+
width : 90%
|
|
479
486
|
}
|
|
480
487
|
#appContainer[data-v-9458f3bf] .el-checkbox {
|
|
481
488
|
display: block;
|
|
@@ -491,13 +498,6 @@ span[data-v-4e29ea06] {
|
|
|
491
498
|
word-break: keep-all;
|
|
492
499
|
width: 55%;
|
|
493
500
|
}
|
|
494
|
-
.searchResult {
|
|
495
|
-
color:red
|
|
496
|
-
}
|
|
497
|
-
.inline-input-custom {
|
|
498
|
-
width : 90%
|
|
499
|
-
}
|
|
500
|
-
|
|
501
501
|
#custTabOne[data-v-7feaa2da] .el-tabs__content {
|
|
502
502
|
height: 500px;
|
|
503
503
|
}
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
const o = require("./src/workflow-editor.vue.cjs"), r = require("./src/store/workflow-editor.cjs"), e = require("./src/workflow-history.vue.cjs");
|
|
3
|
+
o.install = function(r2) {
|
|
4
|
+
r2.component(o.name, o), r2.component(e.name, e);
|
|
5
|
+
};
|
|
6
|
+
const t = { WorkflowEditor: o, WorkflowHistory: e, wfEditorStore: r };
|
|
7
|
+
module.exports = t;
|