aiware-js 2.22.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 +390 -90
- package/index.esm.js +1 -1
- package/js-core.esm.js +10 -10
- 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 -37
- package/js-core.esm39.js +214 -1
- package/js-core.esm4.js +1 -1
- package/js-core.esm40.js +1 -1
- 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 -31
- package/js-core.esm45.js +1 -32
- package/js-core.esm46.js +1 -53
- package/js-core.esm47.js +1 -1
- package/js-core.esm48.js +26 -115
- package/js-core.esm49.js +28 -83
- package/js-core.esm5.js +2 -2
- package/js-core.esm50.js +85 -1
- package/js-core.esm51.js +1 -0
- package/js-core.esm52.js +132 -0
- 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 +210 -143
- 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
|
@@ -44,6 +44,98 @@
|
|
|
44
44
|
unicode-range: U+0000-00FF,U+0131,U+0152-0153,U+02BB-02BC,U+02C6,U+02DA,U+02DC,U+2000-206F,U+2074,U+20AC,U+2122,U+2191,U+2193,U+2212,U+2215,U+FEFF,U+FFFD;
|
|
45
45
|
}
|
|
46
46
|
|
|
47
|
+
/* dosis-200normal - latin */
|
|
48
|
+
@font-face {
|
|
49
|
+
font-family: 'Dosis';
|
|
50
|
+
font-style: normal;
|
|
51
|
+
font-display: swap;
|
|
52
|
+
font-weight: 200;
|
|
53
|
+
src:
|
|
54
|
+
local('Dosis Extra Light '),
|
|
55
|
+
local('Dosis-Extra Light'),
|
|
56
|
+
url('./files/dosis-latin-200.woff2') format('woff2'), /* Super Modern Browsers */
|
|
57
|
+
url('./files/dosis-latin-200.woff') format('woff'); /* Modern Browsers */
|
|
58
|
+
}
|
|
59
|
+
|
|
60
|
+
/* dosis-300normal - latin */
|
|
61
|
+
@font-face {
|
|
62
|
+
font-family: 'Dosis';
|
|
63
|
+
font-style: normal;
|
|
64
|
+
font-display: swap;
|
|
65
|
+
font-weight: 300;
|
|
66
|
+
src:
|
|
67
|
+
local('Dosis Light '),
|
|
68
|
+
local('Dosis-Light'),
|
|
69
|
+
url('./files/dosis-latin-300.woff2') format('woff2'), /* Super Modern Browsers */
|
|
70
|
+
url('./files/dosis-latin-300.woff') format('woff'); /* Modern Browsers */
|
|
71
|
+
}
|
|
72
|
+
|
|
73
|
+
/* dosis-400normal - latin */
|
|
74
|
+
@font-face {
|
|
75
|
+
font-family: 'Dosis';
|
|
76
|
+
font-style: normal;
|
|
77
|
+
font-display: swap;
|
|
78
|
+
font-weight: 400;
|
|
79
|
+
src:
|
|
80
|
+
local('Dosis Regular '),
|
|
81
|
+
local('Dosis-Regular'),
|
|
82
|
+
url('./files/dosis-latin-400.woff2') format('woff2'), /* Super Modern Browsers */
|
|
83
|
+
url('./files/dosis-latin-400.woff') format('woff'); /* Modern Browsers */
|
|
84
|
+
}
|
|
85
|
+
|
|
86
|
+
/* dosis-500normal - latin */
|
|
87
|
+
@font-face {
|
|
88
|
+
font-family: 'Dosis';
|
|
89
|
+
font-style: normal;
|
|
90
|
+
font-display: swap;
|
|
91
|
+
font-weight: 500;
|
|
92
|
+
src:
|
|
93
|
+
local('Dosis Medium '),
|
|
94
|
+
local('Dosis-Medium'),
|
|
95
|
+
url('./files/dosis-latin-500.woff2') format('woff2'), /* Super Modern Browsers */
|
|
96
|
+
url('./files/dosis-latin-500.woff') format('woff'); /* Modern Browsers */
|
|
97
|
+
}
|
|
98
|
+
|
|
99
|
+
/* dosis-600normal - latin */
|
|
100
|
+
@font-face {
|
|
101
|
+
font-family: 'Dosis';
|
|
102
|
+
font-style: normal;
|
|
103
|
+
font-display: swap;
|
|
104
|
+
font-weight: 600;
|
|
105
|
+
src:
|
|
106
|
+
local('Dosis SemiBold '),
|
|
107
|
+
local('Dosis-SemiBold'),
|
|
108
|
+
url('./files/dosis-latin-600.woff2') format('woff2'), /* Super Modern Browsers */
|
|
109
|
+
url('./files/dosis-latin-600.woff') format('woff'); /* Modern Browsers */
|
|
110
|
+
}
|
|
111
|
+
|
|
112
|
+
/* dosis-700normal - latin */
|
|
113
|
+
@font-face {
|
|
114
|
+
font-family: 'Dosis';
|
|
115
|
+
font-style: normal;
|
|
116
|
+
font-display: swap;
|
|
117
|
+
font-weight: 700;
|
|
118
|
+
src:
|
|
119
|
+
local('Dosis Bold '),
|
|
120
|
+
local('Dosis-Bold'),
|
|
121
|
+
url('./files/dosis-latin-700.woff2') format('woff2'), /* Super Modern Browsers */
|
|
122
|
+
url('./files/dosis-latin-700.woff') format('woff'); /* Modern Browsers */
|
|
123
|
+
}
|
|
124
|
+
|
|
125
|
+
/* dosis-800normal - latin */
|
|
126
|
+
@font-face {
|
|
127
|
+
font-family: 'Dosis';
|
|
128
|
+
font-style: normal;
|
|
129
|
+
font-display: swap;
|
|
130
|
+
font-weight: 800;
|
|
131
|
+
src:
|
|
132
|
+
local('Dosis ExtraBold '),
|
|
133
|
+
local('Dosis-ExtraBold'),
|
|
134
|
+
url('./files/dosis-latin-800.woff2') format('woff2'), /* Super Modern Browsers */
|
|
135
|
+
url('./files/dosis-latin-800.woff') format('woff'); /* Modern Browsers */
|
|
136
|
+
}
|
|
137
|
+
|
|
138
|
+
|
|
47
139
|
/* nunito-200normal - latin */
|
|
48
140
|
@font-face {
|
|
49
141
|
font-family: 'Nunito';
|
|
@@ -227,98 +319,306 @@
|
|
|
227
319
|
}
|
|
228
320
|
|
|
229
321
|
|
|
230
|
-
/*
|
|
231
|
-
|
|
232
|
-
|
|
233
|
-
|
|
234
|
-
|
|
235
|
-
|
|
236
|
-
|
|
237
|
-
|
|
238
|
-
|
|
239
|
-
|
|
240
|
-
|
|
241
|
-
|
|
242
|
-
|
|
243
|
-
|
|
244
|
-
|
|
245
|
-
|
|
246
|
-
|
|
247
|
-
|
|
248
|
-
|
|
249
|
-
|
|
250
|
-
|
|
251
|
-
|
|
252
|
-
|
|
253
|
-
|
|
254
|
-
|
|
255
|
-
|
|
256
|
-
|
|
257
|
-
|
|
258
|
-
|
|
259
|
-
|
|
260
|
-
|
|
261
|
-
|
|
262
|
-
|
|
263
|
-
|
|
264
|
-
|
|
265
|
-
|
|
266
|
-
|
|
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;
|
|
267
620
|
}
|
|
268
621
|
|
|
269
|
-
/* dosis-500normal - latin */
|
|
270
|
-
@font-face {
|
|
271
|
-
font-family: 'Dosis';
|
|
272
|
-
font-style: normal;
|
|
273
|
-
font-display: swap;
|
|
274
|
-
font-weight: 500;
|
|
275
|
-
src:
|
|
276
|
-
local('Dosis Medium '),
|
|
277
|
-
local('Dosis-Medium'),
|
|
278
|
-
url('./files/dosis-latin-500.woff2') format('woff2'), /* Super Modern Browsers */
|
|
279
|
-
url('./files/dosis-latin-500.woff') format('woff'); /* Modern Browsers */
|
|
280
|
-
}
|
|
281
|
-
|
|
282
|
-
/* dosis-600normal - latin */
|
|
283
|
-
@font-face {
|
|
284
|
-
font-family: 'Dosis';
|
|
285
|
-
font-style: normal;
|
|
286
|
-
font-display: swap;
|
|
287
|
-
font-weight: 600;
|
|
288
|
-
src:
|
|
289
|
-
local('Dosis SemiBold '),
|
|
290
|
-
local('Dosis-SemiBold'),
|
|
291
|
-
url('./files/dosis-latin-600.woff2') format('woff2'), /* Super Modern Browsers */
|
|
292
|
-
url('./files/dosis-latin-600.woff') format('woff'); /* Modern Browsers */
|
|
293
|
-
}
|
|
294
|
-
|
|
295
|
-
/* dosis-700normal - latin */
|
|
296
|
-
@font-face {
|
|
297
|
-
font-family: 'Dosis';
|
|
298
|
-
font-style: normal;
|
|
299
|
-
font-display: swap;
|
|
300
|
-
font-weight: 700;
|
|
301
|
-
src:
|
|
302
|
-
local('Dosis Bold '),
|
|
303
|
-
local('Dosis-Bold'),
|
|
304
|
-
url('./files/dosis-latin-700.woff2') format('woff2'), /* Super Modern Browsers */
|
|
305
|
-
url('./files/dosis-latin-700.woff') format('woff'); /* Modern Browsers */
|
|
306
|
-
}
|
|
307
|
-
|
|
308
|
-
/* dosis-800normal - latin */
|
|
309
|
-
@font-face {
|
|
310
|
-
font-family: 'Dosis';
|
|
311
|
-
font-style: normal;
|
|
312
|
-
font-display: swap;
|
|
313
|
-
font-weight: 800;
|
|
314
|
-
src:
|
|
315
|
-
local('Dosis ExtraBold '),
|
|
316
|
-
local('Dosis-ExtraBold'),
|
|
317
|
-
url('./files/dosis-latin-800.woff2') format('woff2'), /* Super Modern Browsers */
|
|
318
|
-
url('./files/dosis-latin-800.woff') format('woff'); /* Modern Browsers */
|
|
319
|
-
}
|
|
320
|
-
|
|
321
|
-
|
|
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";
|