aiware-js 2.23.0 → 2.25.0
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/index.esm.css +300 -0
- package/index.esm.js +1 -1
- package/js-core.esm.js +5 -5
- package/js-core.esm12.js +1 -1
- package/js-core.esm13.js +1 -1
- package/js-core.esm14.js +1 -1
- package/js-core.esm15.js +1 -1
- package/js-core.esm16.js +1 -1
- package/js-core.esm17.js +1 -1
- package/js-core.esm18.js +1 -230
- package/js-core.esm19.js +1 -78
- package/js-core.esm20.js +230 -1
- package/js-core.esm21.js +78 -1
- package/js-core.esm22.js +1 -1
- package/js-core.esm23.js +1 -1
- package/js-core.esm24.js +1 -1
- package/js-core.esm25.js +1 -1
- package/js-core.esm26.js +1 -1
- package/js-core.esm27.js +1 -1
- package/js-core.esm28.js +1 -1
- package/js-core.esm29.js +1 -1
- package/js-core.esm30.js +1 -14
- package/js-core.esm31.js +1 -12
- package/js-core.esm32.js +7 -47
- package/js-core.esm33.js +12 -1
- package/js-core.esm34.js +54 -1
- package/js-core.esm35.js +1 -108
- package/js-core.esm36.js +1 -1
- package/js-core.esm37.js +92 -198
- package/js-core.esm38.js +1 -1
- package/js-core.esm39.js +214 -1
- package/js-core.esm40.js +1 -37
- package/js-core.esm41.js +1 -1
- package/js-core.esm42.js +1 -1
- package/js-core.esm43.js +37 -1
- package/js-core.esm44.js +1 -1
- package/js-core.esm45.js +1 -31
- package/js-core.esm46.js +1 -32
- package/js-core.esm47.js +1 -53
- package/js-core.esm48.js +31 -1
- package/js-core.esm49.js +27 -115
- package/js-core.esm5.js +1 -1
- package/js-core.esm50.js +73 -75
- package/js-core.esm51.js +1 -1
- package/js-core.esm52.js +131 -14
- package/js-core.esm53.js +87 -0
- package/js-core.esm54.js +1 -0
- package/js-core.esm55.js +15 -0
- package/js-core.esm56.js +10 -0
- package/js-core.esm7.js +4 -4
- package/js-core.umd.css +300 -0
- package/js-core.umd.js +195 -142
- package/locales/en.json +1 -1
- package/locales/es.json +1 -1
- package/locales/fr.json +1 -1
- package/package.json +4 -2
package/index.esm.css
CHANGED
|
@@ -319,6 +319,306 @@
|
|
|
319
319
|
}
|
|
320
320
|
|
|
321
321
|
|
|
322
|
+
/* this gets exported as style.css and can be used for the default theming */
|
|
323
|
+
/* these are the necessary styles for React Flow, they get used by base.css and style.css */
|
|
324
|
+
.react-flow__container {
|
|
325
|
+
position: absolute;
|
|
326
|
+
width: 100%;
|
|
327
|
+
height: 100%;
|
|
328
|
+
top: 0;
|
|
329
|
+
left: 0;
|
|
330
|
+
}
|
|
331
|
+
.react-flow__pane {
|
|
332
|
+
z-index: 1;
|
|
333
|
+
cursor: -webkit-grab;
|
|
334
|
+
cursor: grab;
|
|
335
|
+
}
|
|
336
|
+
.react-flow__pane.selection {
|
|
337
|
+
cursor: pointer;
|
|
338
|
+
}
|
|
339
|
+
.react-flow__pane.dragging {
|
|
340
|
+
cursor: -webkit-grabbing;
|
|
341
|
+
cursor: grabbing;
|
|
342
|
+
}
|
|
343
|
+
.react-flow__viewport {
|
|
344
|
+
transform-origin: 0 0;
|
|
345
|
+
z-index: 2;
|
|
346
|
+
pointer-events: none;
|
|
347
|
+
}
|
|
348
|
+
.react-flow__renderer {
|
|
349
|
+
z-index: 4;
|
|
350
|
+
}
|
|
351
|
+
.react-flow__selection {
|
|
352
|
+
z-index: 6;
|
|
353
|
+
}
|
|
354
|
+
.react-flow__nodesselection-rect:focus,
|
|
355
|
+
.react-flow__nodesselection-rect:focus-visible {
|
|
356
|
+
outline: none;
|
|
357
|
+
}
|
|
358
|
+
.react-flow .react-flow__edges {
|
|
359
|
+
pointer-events: none;
|
|
360
|
+
overflow: visible;
|
|
361
|
+
}
|
|
362
|
+
.react-flow__edge-path,
|
|
363
|
+
.react-flow__connection-path {
|
|
364
|
+
stroke: #b1b1b7;
|
|
365
|
+
stroke-width: 1;
|
|
366
|
+
fill: none;
|
|
367
|
+
}
|
|
368
|
+
.react-flow__edge {
|
|
369
|
+
pointer-events: visibleStroke;
|
|
370
|
+
cursor: pointer;
|
|
371
|
+
}
|
|
372
|
+
.react-flow__edge.animated path {
|
|
373
|
+
stroke-dasharray: 5;
|
|
374
|
+
-webkit-animation: dashdraw 0.5s linear infinite;
|
|
375
|
+
animation: dashdraw 0.5s linear infinite;
|
|
376
|
+
}
|
|
377
|
+
.react-flow__edge.animated path.react-flow__edge-interaction {
|
|
378
|
+
stroke-dasharray: none;
|
|
379
|
+
-webkit-animation: none;
|
|
380
|
+
animation: none;
|
|
381
|
+
}
|
|
382
|
+
.react-flow__edge.inactive {
|
|
383
|
+
pointer-events: none;
|
|
384
|
+
}
|
|
385
|
+
.react-flow__edge.selected,
|
|
386
|
+
.react-flow__edge:focus,
|
|
387
|
+
.react-flow__edge:focus-visible {
|
|
388
|
+
outline: none;
|
|
389
|
+
}
|
|
390
|
+
.react-flow__edge.selected .react-flow__edge-path,
|
|
391
|
+
.react-flow__edge:focus .react-flow__edge-path,
|
|
392
|
+
.react-flow__edge:focus-visible .react-flow__edge-path {
|
|
393
|
+
stroke: #555;
|
|
394
|
+
}
|
|
395
|
+
.react-flow__edge-textwrapper {
|
|
396
|
+
pointer-events: all;
|
|
397
|
+
}
|
|
398
|
+
.react-flow__edge-textbg {
|
|
399
|
+
fill: white;
|
|
400
|
+
}
|
|
401
|
+
.react-flow__edge .react-flow__edge-text {
|
|
402
|
+
pointer-events: none;
|
|
403
|
+
-webkit-user-select: none;
|
|
404
|
+
-moz-user-select: none;
|
|
405
|
+
user-select: none;
|
|
406
|
+
}
|
|
407
|
+
.react-flow__connection {
|
|
408
|
+
pointer-events: none;
|
|
409
|
+
}
|
|
410
|
+
.react-flow__connection.animated {
|
|
411
|
+
stroke-dasharray: 5;
|
|
412
|
+
-webkit-animation: dashdraw 0.5s linear infinite;
|
|
413
|
+
animation: dashdraw 0.5s linear infinite;
|
|
414
|
+
}
|
|
415
|
+
.react-flow__connectionline {
|
|
416
|
+
z-index: 1001;
|
|
417
|
+
}
|
|
418
|
+
.react-flow__nodes {
|
|
419
|
+
pointer-events: none;
|
|
420
|
+
transform-origin: 0 0;
|
|
421
|
+
}
|
|
422
|
+
.react-flow__node {
|
|
423
|
+
position: absolute;
|
|
424
|
+
-webkit-user-select: none;
|
|
425
|
+
-moz-user-select: none;
|
|
426
|
+
user-select: none;
|
|
427
|
+
pointer-events: all;
|
|
428
|
+
transform-origin: 0 0;
|
|
429
|
+
box-sizing: border-box;
|
|
430
|
+
cursor: -webkit-grab;
|
|
431
|
+
cursor: grab;
|
|
432
|
+
}
|
|
433
|
+
.react-flow__node.dragging {
|
|
434
|
+
cursor: -webkit-grabbing;
|
|
435
|
+
cursor: grabbing;
|
|
436
|
+
}
|
|
437
|
+
.react-flow__nodesselection {
|
|
438
|
+
z-index: 3;
|
|
439
|
+
transform-origin: left top;
|
|
440
|
+
pointer-events: none;
|
|
441
|
+
}
|
|
442
|
+
.react-flow__nodesselection-rect {
|
|
443
|
+
position: absolute;
|
|
444
|
+
pointer-events: all;
|
|
445
|
+
cursor: -webkit-grab;
|
|
446
|
+
cursor: grab;
|
|
447
|
+
}
|
|
448
|
+
.react-flow__handle {
|
|
449
|
+
position: absolute;
|
|
450
|
+
pointer-events: none;
|
|
451
|
+
min-width: 5px;
|
|
452
|
+
min-height: 5px;
|
|
453
|
+
width: 6px;
|
|
454
|
+
height: 6px;
|
|
455
|
+
background: #1a192b;
|
|
456
|
+
border: 1px solid white;
|
|
457
|
+
border-radius: 100%;
|
|
458
|
+
}
|
|
459
|
+
.react-flow__handle.connectable {
|
|
460
|
+
pointer-events: all;
|
|
461
|
+
cursor: crosshair;
|
|
462
|
+
}
|
|
463
|
+
.react-flow__handle-bottom {
|
|
464
|
+
top: auto;
|
|
465
|
+
left: 50%;
|
|
466
|
+
bottom: -4px;
|
|
467
|
+
transform: translate(-50%, 0);
|
|
468
|
+
}
|
|
469
|
+
.react-flow__handle-top {
|
|
470
|
+
left: 50%;
|
|
471
|
+
top: -4px;
|
|
472
|
+
transform: translate(-50%, 0);
|
|
473
|
+
}
|
|
474
|
+
.react-flow__handle-left {
|
|
475
|
+
top: 50%;
|
|
476
|
+
left: -4px;
|
|
477
|
+
transform: translate(0, -50%);
|
|
478
|
+
}
|
|
479
|
+
.react-flow__handle-right {
|
|
480
|
+
right: -4px;
|
|
481
|
+
top: 50%;
|
|
482
|
+
transform: translate(0, -50%);
|
|
483
|
+
}
|
|
484
|
+
.react-flow__edgeupdater {
|
|
485
|
+
cursor: move;
|
|
486
|
+
pointer-events: all;
|
|
487
|
+
}
|
|
488
|
+
.react-flow__panel {
|
|
489
|
+
position: absolute;
|
|
490
|
+
z-index: 5;
|
|
491
|
+
margin: 15px;
|
|
492
|
+
}
|
|
493
|
+
.react-flow__panel.top {
|
|
494
|
+
top: 0;
|
|
495
|
+
}
|
|
496
|
+
.react-flow__panel.bottom {
|
|
497
|
+
bottom: 0;
|
|
498
|
+
}
|
|
499
|
+
.react-flow__panel.left {
|
|
500
|
+
left: 0;
|
|
501
|
+
}
|
|
502
|
+
.react-flow__panel.right {
|
|
503
|
+
right: 0;
|
|
504
|
+
}
|
|
505
|
+
.react-flow__panel.center {
|
|
506
|
+
left: 50%;
|
|
507
|
+
transform: translateX(-50%);
|
|
508
|
+
}
|
|
509
|
+
.react-flow__attribution {
|
|
510
|
+
font-size: 10px;
|
|
511
|
+
background: rgba(255, 255, 255, 0.5);
|
|
512
|
+
padding: 2px 3px;
|
|
513
|
+
margin: 0;
|
|
514
|
+
}
|
|
515
|
+
.react-flow__attribution a {
|
|
516
|
+
text-decoration: none;
|
|
517
|
+
color: #999;
|
|
518
|
+
}
|
|
519
|
+
@-webkit-keyframes dashdraw {
|
|
520
|
+
from {
|
|
521
|
+
stroke-dashoffset: 10;
|
|
522
|
+
}
|
|
523
|
+
}
|
|
524
|
+
@keyframes dashdraw {
|
|
525
|
+
from {
|
|
526
|
+
stroke-dashoffset: 10;
|
|
527
|
+
}
|
|
528
|
+
}
|
|
529
|
+
.react-flow__edgelabel-renderer {
|
|
530
|
+
position: absolute;
|
|
531
|
+
width: 100%;
|
|
532
|
+
height: 100%;
|
|
533
|
+
pointer-events: none;
|
|
534
|
+
}
|
|
535
|
+
.react-flow__edge.updating .react-flow__edge-path {
|
|
536
|
+
stroke: #777;
|
|
537
|
+
}
|
|
538
|
+
.react-flow__edge-text {
|
|
539
|
+
font-size: 10px;
|
|
540
|
+
}
|
|
541
|
+
.react-flow__node.selectable:focus,
|
|
542
|
+
.react-flow__node.selectable:focus-visible {
|
|
543
|
+
outline: none;
|
|
544
|
+
}
|
|
545
|
+
.react-flow__node-default,
|
|
546
|
+
.react-flow__node-input,
|
|
547
|
+
.react-flow__node-output,
|
|
548
|
+
.react-flow__node-group {
|
|
549
|
+
padding: 10px;
|
|
550
|
+
border-radius: 3px;
|
|
551
|
+
width: 150px;
|
|
552
|
+
font-size: 12px;
|
|
553
|
+
color: #222;
|
|
554
|
+
text-align: center;
|
|
555
|
+
border-width: 1px;
|
|
556
|
+
border-style: solid;
|
|
557
|
+
border-color: #1a192b;
|
|
558
|
+
background-color: white;
|
|
559
|
+
}
|
|
560
|
+
.react-flow__node-default.selectable:hover, .react-flow__node-input.selectable:hover, .react-flow__node-output.selectable:hover, .react-flow__node-group.selectable:hover {
|
|
561
|
+
box-shadow: 0 1px 4px 1px rgba(0, 0, 0, 0.08);
|
|
562
|
+
}
|
|
563
|
+
.react-flow__node-default.selectable.selected,
|
|
564
|
+
.react-flow__node-default.selectable:focus,
|
|
565
|
+
.react-flow__node-default.selectable:focus-visible,
|
|
566
|
+
.react-flow__node-input.selectable.selected,
|
|
567
|
+
.react-flow__node-input.selectable:focus,
|
|
568
|
+
.react-flow__node-input.selectable:focus-visible,
|
|
569
|
+
.react-flow__node-output.selectable.selected,
|
|
570
|
+
.react-flow__node-output.selectable:focus,
|
|
571
|
+
.react-flow__node-output.selectable:focus-visible,
|
|
572
|
+
.react-flow__node-group.selectable.selected,
|
|
573
|
+
.react-flow__node-group.selectable:focus,
|
|
574
|
+
.react-flow__node-group.selectable:focus-visible {
|
|
575
|
+
box-shadow: 0 0 0 0.5px #1a192b;
|
|
576
|
+
}
|
|
577
|
+
.react-flow__node-group {
|
|
578
|
+
background-color: rgba(240, 240, 240, 0.25);
|
|
579
|
+
}
|
|
580
|
+
.react-flow__nodesselection-rect,
|
|
581
|
+
.react-flow__selection {
|
|
582
|
+
background: rgba(0, 89, 220, 0.08);
|
|
583
|
+
border: 1px dotted rgba(0, 89, 220, 0.8);
|
|
584
|
+
}
|
|
585
|
+
.react-flow__nodesselection-rect:focus,
|
|
586
|
+
.react-flow__nodesselection-rect:focus-visible,
|
|
587
|
+
.react-flow__selection:focus,
|
|
588
|
+
.react-flow__selection:focus-visible {
|
|
589
|
+
outline: none;
|
|
590
|
+
}
|
|
591
|
+
.react-flow__controls {
|
|
592
|
+
box-shadow: 0 0 2px 1px rgba(0, 0, 0, 0.08);
|
|
593
|
+
}
|
|
594
|
+
.react-flow__controls-button {
|
|
595
|
+
border: none;
|
|
596
|
+
background: #fefefe;
|
|
597
|
+
border-bottom: 1px solid #eee;
|
|
598
|
+
box-sizing: content-box;
|
|
599
|
+
display: flex;
|
|
600
|
+
justify-content: center;
|
|
601
|
+
align-items: center;
|
|
602
|
+
width: 16px;
|
|
603
|
+
height: 16px;
|
|
604
|
+
cursor: pointer;
|
|
605
|
+
-webkit-user-select: none;
|
|
606
|
+
-moz-user-select: none;
|
|
607
|
+
user-select: none;
|
|
608
|
+
padding: 5px;
|
|
609
|
+
}
|
|
610
|
+
.react-flow__controls-button:hover {
|
|
611
|
+
background: #f4f4f4;
|
|
612
|
+
}
|
|
613
|
+
.react-flow__controls-button svg {
|
|
614
|
+
width: 100%;
|
|
615
|
+
max-width: 12px;
|
|
616
|
+
max-height: 12px;
|
|
617
|
+
}
|
|
618
|
+
.react-flow__minimap {
|
|
619
|
+
background-color: #fff;
|
|
620
|
+
}
|
|
621
|
+
|
|
322
622
|
/* nunito-cyrillic-ext-300-normal*/
|
|
323
623
|
@font-face {
|
|
324
624
|
font-family: 'Nunito';
|
package/index.esm.js
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
export{
|
|
1
|
+
export{gB as AvailableWidgets,gH as hidePanel,ec as hidePanelAction,gJ as init,gF as mountPanel,cq as mountPanelAction,gD as mountWidget,gA as registerComponent,gz as registry,gC as root,ee as setData,s as store,gI as unmountAllPanel,gG as unmountPanel,cn as unmountPanelAction,gE as unmountWidget,ed as updatePanelMicroFrontendPropsAction}from"./js-core.esm.js";
|