@industry-theme/repository-composition-panels 0.2.15 → 0.2.17

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.
Files changed (32) hide show
  1. package/dist/assets/orchestrators/index.d.ts +28 -0
  2. package/dist/assets/orchestrators/index.d.ts.map +1 -0
  3. package/dist/index.d.ts +2 -0
  4. package/dist/index.d.ts.map +1 -1
  5. package/dist/panels/PackageCompositionPanel.d.ts.map +1 -1
  6. package/dist/panels/components/InheritedConfigIndicator.d.ts +27 -0
  7. package/dist/panels/components/InheritedConfigIndicator.d.ts.map +1 -0
  8. package/dist/panels/components/LensReadinessSection.d.ts.map +1 -1
  9. package/dist/panels/components/OrchestratorBadge.d.ts +11 -0
  10. package/dist/panels/components/OrchestratorBadge.d.ts.map +1 -0
  11. package/dist/panels/components/index.d.ts +2 -0
  12. package/dist/panels/components/index.d.ts.map +1 -1
  13. package/dist/panels/dependency-graph/DependencyGraphPanel.d.ts +21 -0
  14. package/dist/panels/dependency-graph/DependencyGraphPanel.d.ts.map +1 -0
  15. package/dist/panels/dependency-graph/dependencyToCanvas.d.ts +20 -0
  16. package/dist/panels/dependency-graph/dependencyToCanvas.d.ts.map +1 -0
  17. package/dist/panels/dependency-graph/forceLayout.d.ts +38 -0
  18. package/dist/panels/dependency-graph/forceLayout.d.ts.map +1 -0
  19. package/dist/panels/dependency-graph/index.d.ts +5 -0
  20. package/dist/panels/dependency-graph/index.d.ts.map +1 -0
  21. package/dist/panels.bundle.css +624 -0
  22. package/dist/panels.bundle.js +53880 -619
  23. package/dist/panels.bundle.js.map +1 -1
  24. package/dist/types/composition.d.ts +5 -115
  25. package/dist/types/composition.d.ts.map +1 -1
  26. package/package.json +8 -2
  27. package/dist/panels/GitChangesPanel.stories.d.ts +0 -76
  28. package/dist/panels/GitChangesPanel.stories.d.ts.map +0 -1
  29. package/dist/panels/PackageCompositionPanel.stories.d.ts +0 -65
  30. package/dist/panels/PackageCompositionPanel.stories.d.ts.map +0 -1
  31. package/dist/panels/SearchPanel.stories.d.ts +0 -59
  32. package/dist/panels/SearchPanel.stories.d.ts.map +0 -1
@@ -8,3 +8,627 @@
8
8
  .context-menu-item:hover {
9
9
  background-color: var(--theme-bg-tertiary) !important;
10
10
  }
11
+ /* this gets exported as style.css and can be used for the default theming */
12
+ /* these are the necessary styles for React/Svelte Flow, they get used by base.css and style.css */
13
+ .react-flow {
14
+ direction: ltr;
15
+
16
+ --xy-edge-stroke-default: #b1b1b7;
17
+ --xy-edge-stroke-width-default: 1;
18
+ --xy-edge-stroke-selected-default: #555;
19
+
20
+ --xy-connectionline-stroke-default: #b1b1b7;
21
+ --xy-connectionline-stroke-width-default: 1;
22
+
23
+ --xy-attribution-background-color-default: rgba(255, 255, 255, 0.5);
24
+
25
+ --xy-minimap-background-color-default: #fff;
26
+ --xy-minimap-mask-background-color-default: rgba(240, 240, 240, 0.6);
27
+ --xy-minimap-mask-stroke-color-default: transparent;
28
+ --xy-minimap-mask-stroke-width-default: 1;
29
+ --xy-minimap-node-background-color-default: #e2e2e2;
30
+ --xy-minimap-node-stroke-color-default: transparent;
31
+ --xy-minimap-node-stroke-width-default: 2;
32
+
33
+ --xy-background-color-default: transparent;
34
+ --xy-background-pattern-dots-color-default: #91919a;
35
+ --xy-background-pattern-lines-color-default: #eee;
36
+ --xy-background-pattern-cross-color-default: #e2e2e2;
37
+ background-color: var(--xy-background-color, var(--xy-background-color-default));
38
+ --xy-node-color-default: inherit;
39
+ --xy-node-border-default: 1px solid #1a192b;
40
+ --xy-node-background-color-default: #fff;
41
+ --xy-node-group-background-color-default: rgba(240, 240, 240, 0.25);
42
+ --xy-node-boxshadow-hover-default: 0 1px 4px 1px rgba(0, 0, 0, 0.08);
43
+ --xy-node-boxshadow-selected-default: 0 0 0 0.5px #1a192b;
44
+ --xy-node-border-radius-default: 3px;
45
+
46
+ --xy-handle-background-color-default: #1a192b;
47
+ --xy-handle-border-color-default: #fff;
48
+
49
+ --xy-selection-background-color-default: rgba(0, 89, 220, 0.08);
50
+ --xy-selection-border-default: 1px dotted rgba(0, 89, 220, 0.8);
51
+
52
+ --xy-controls-button-background-color-default: #fefefe;
53
+ --xy-controls-button-background-color-hover-default: #f4f4f4;
54
+ --xy-controls-button-color-default: inherit;
55
+ --xy-controls-button-color-hover-default: inherit;
56
+ --xy-controls-button-border-color-default: #eee;
57
+ --xy-controls-box-shadow-default: 0 0 2px 1px rgba(0, 0, 0, 0.08);
58
+
59
+ --xy-edge-label-background-color-default: #ffffff;
60
+ --xy-edge-label-color-default: inherit;
61
+ --xy-resize-background-color-default: #3367d9;
62
+ }
63
+ .react-flow.dark {
64
+ --xy-edge-stroke-default: #3e3e3e;
65
+ --xy-edge-stroke-width-default: 1;
66
+ --xy-edge-stroke-selected-default: #727272;
67
+
68
+ --xy-connectionline-stroke-default: #b1b1b7;
69
+ --xy-connectionline-stroke-width-default: 1;
70
+
71
+ --xy-attribution-background-color-default: rgba(150, 150, 150, 0.25);
72
+
73
+ --xy-minimap-background-color-default: #141414;
74
+ --xy-minimap-mask-background-color-default: rgba(60, 60, 60, 0.6);
75
+ --xy-minimap-mask-stroke-color-default: transparent;
76
+ --xy-minimap-mask-stroke-width-default: 1;
77
+ --xy-minimap-node-background-color-default: #2b2b2b;
78
+ --xy-minimap-node-stroke-color-default: transparent;
79
+ --xy-minimap-node-stroke-width-default: 2;
80
+
81
+ --xy-background-color-default: #141414;
82
+ --xy-background-pattern-dots-color-default: #777;
83
+ --xy-background-pattern-lines-color-default: #777;
84
+ --xy-background-pattern-cross-color-default: #777;
85
+ --xy-node-color-default: #f8f8f8;
86
+ --xy-node-border-default: 1px solid #3c3c3c;
87
+ --xy-node-background-color-default: #1e1e1e;
88
+ --xy-node-group-background-color-default: rgba(240, 240, 240, 0.25);
89
+ --xy-node-boxshadow-hover-default: 0 1px 4px 1px rgba(255, 255, 255, 0.08);
90
+ --xy-node-boxshadow-selected-default: 0 0 0 0.5px #999;
91
+
92
+ --xy-handle-background-color-default: #bebebe;
93
+ --xy-handle-border-color-default: #1e1e1e;
94
+
95
+ --xy-selection-background-color-default: rgba(200, 200, 220, 0.08);
96
+ --xy-selection-border-default: 1px dotted rgba(200, 200, 220, 0.8);
97
+
98
+ --xy-controls-button-background-color-default: #2b2b2b;
99
+ --xy-controls-button-background-color-hover-default: #3e3e3e;
100
+ --xy-controls-button-color-default: #f8f8f8;
101
+ --xy-controls-button-color-hover-default: #fff;
102
+ --xy-controls-button-border-color-default: #5b5b5b;
103
+ --xy-controls-box-shadow-default: 0 0 2px 1px rgba(0, 0, 0, 0.08);
104
+
105
+ --xy-edge-label-background-color-default: #141414;
106
+ --xy-edge-label-color-default: #f8f8f8;
107
+ }
108
+ .react-flow__background {
109
+ background-color: var(--xy-background-color-props, var(--xy-background-color, var(--xy-background-color-default)));
110
+ pointer-events: none;
111
+ z-index: -1;
112
+ }
113
+ .react-flow__container {
114
+ position: absolute;
115
+ width: 100%;
116
+ height: 100%;
117
+ top: 0;
118
+ left: 0;
119
+ }
120
+ .react-flow__pane {
121
+ z-index: 1;
122
+ }
123
+ .react-flow__pane.draggable {
124
+ cursor: grab;
125
+ }
126
+ .react-flow__pane.dragging {
127
+ cursor: grabbing;
128
+ }
129
+ .react-flow__pane.selection {
130
+ cursor: pointer;
131
+ }
132
+ .react-flow__viewport {
133
+ transform-origin: 0 0;
134
+ z-index: 2;
135
+ pointer-events: none;
136
+ }
137
+ .react-flow__renderer {
138
+ z-index: 4;
139
+ }
140
+ .react-flow__selection {
141
+ z-index: 6;
142
+ }
143
+ .react-flow__nodesselection-rect:focus,
144
+ .react-flow__nodesselection-rect:focus-visible {
145
+ outline: none;
146
+ }
147
+ .react-flow__edge-path {
148
+ stroke: var(--xy-edge-stroke, var(--xy-edge-stroke-default));
149
+ stroke-width: var(--xy-edge-stroke-width, var(--xy-edge-stroke-width-default));
150
+ fill: none;
151
+ }
152
+ .react-flow__connection-path {
153
+ stroke: var(--xy-connectionline-stroke, var(--xy-connectionline-stroke-default));
154
+ stroke-width: var(--xy-connectionline-stroke-width, var(--xy-connectionline-stroke-width-default));
155
+ fill: none;
156
+ }
157
+ .react-flow .react-flow__edges {
158
+ position: absolute;
159
+ }
160
+ .react-flow .react-flow__edges svg {
161
+ overflow: visible;
162
+ position: absolute;
163
+ pointer-events: none;
164
+ }
165
+ .react-flow__edge {
166
+ pointer-events: visibleStroke;
167
+ }
168
+ .react-flow__edge.selectable {
169
+ cursor: pointer;
170
+ }
171
+ .react-flow__edge.animated path {
172
+ stroke-dasharray: 5;
173
+ animation: dashdraw 0.5s linear infinite;
174
+ }
175
+ .react-flow__edge.animated path.react-flow__edge-interaction {
176
+ stroke-dasharray: none;
177
+ animation: none;
178
+ }
179
+ .react-flow__edge.inactive {
180
+ pointer-events: none;
181
+ }
182
+ .react-flow__edge.selected,
183
+ .react-flow__edge:focus,
184
+ .react-flow__edge:focus-visible {
185
+ outline: none;
186
+ }
187
+ .react-flow__edge.selected .react-flow__edge-path,
188
+ .react-flow__edge.selectable:focus .react-flow__edge-path,
189
+ .react-flow__edge.selectable:focus-visible .react-flow__edge-path {
190
+ stroke: var(--xy-edge-stroke-selected, var(--xy-edge-stroke-selected-default));
191
+ }
192
+ .react-flow__edge-textwrapper {
193
+ pointer-events: all;
194
+ }
195
+ .react-flow__edge .react-flow__edge-text {
196
+ pointer-events: none;
197
+ -webkit-user-select: none;
198
+ -moz-user-select: none;
199
+ user-select: none;
200
+ }
201
+ /* Arrowhead marker styles - use CSS custom properties as default */
202
+ .react-flow__arrowhead polyline {
203
+ stroke: var(--xy-edge-stroke, var(--xy-edge-stroke-default));
204
+ }
205
+ .react-flow__arrowhead polyline.arrowclosed {
206
+ fill: var(--xy-edge-stroke, var(--xy-edge-stroke-default));
207
+ }
208
+ .react-flow__connection {
209
+ pointer-events: none;
210
+ }
211
+ .react-flow__connection .animated {
212
+ stroke-dasharray: 5;
213
+ animation: dashdraw 0.5s linear infinite;
214
+ }
215
+ svg.react-flow__connectionline {
216
+ z-index: 1001;
217
+ overflow: visible;
218
+ position: absolute;
219
+ }
220
+ .react-flow__nodes {
221
+ pointer-events: none;
222
+ transform-origin: 0 0;
223
+ }
224
+ .react-flow__node {
225
+ position: absolute;
226
+ -webkit-user-select: none;
227
+ -moz-user-select: none;
228
+ user-select: none;
229
+ pointer-events: all;
230
+ transform-origin: 0 0;
231
+ box-sizing: border-box;
232
+ cursor: default;
233
+ }
234
+ .react-flow__node.selectable {
235
+ cursor: pointer;
236
+ }
237
+ .react-flow__node.draggable {
238
+ cursor: grab;
239
+ pointer-events: all;
240
+ }
241
+ .react-flow__node.draggable.dragging {
242
+ cursor: grabbing;
243
+ }
244
+ .react-flow__nodesselection {
245
+ z-index: 3;
246
+ transform-origin: left top;
247
+ pointer-events: none;
248
+ }
249
+ .react-flow__nodesselection-rect {
250
+ position: absolute;
251
+ pointer-events: all;
252
+ cursor: grab;
253
+ }
254
+ .react-flow__handle {
255
+ position: absolute;
256
+ pointer-events: none;
257
+ min-width: 5px;
258
+ min-height: 5px;
259
+ width: 6px;
260
+ height: 6px;
261
+ background-color: var(--xy-handle-background-color, var(--xy-handle-background-color-default));
262
+ border: 1px solid var(--xy-handle-border-color, var(--xy-handle-border-color-default));
263
+ border-radius: 100%;
264
+ }
265
+ .react-flow__handle.connectingfrom {
266
+ pointer-events: all;
267
+ }
268
+ .react-flow__handle.connectionindicator {
269
+ pointer-events: all;
270
+ cursor: crosshair;
271
+ }
272
+ .react-flow__handle-bottom {
273
+ top: auto;
274
+ left: 50%;
275
+ bottom: 0;
276
+ transform: translate(-50%, 50%);
277
+ }
278
+ .react-flow__handle-top {
279
+ top: 0;
280
+ left: 50%;
281
+ transform: translate(-50%, -50%);
282
+ }
283
+ .react-flow__handle-left {
284
+ top: 50%;
285
+ left: 0;
286
+ transform: translate(-50%, -50%);
287
+ }
288
+ .react-flow__handle-right {
289
+ top: 50%;
290
+ right: 0;
291
+ transform: translate(50%, -50%);
292
+ }
293
+ .react-flow__edgeupdater {
294
+ cursor: move;
295
+ pointer-events: all;
296
+ }
297
+ .react-flow__pane.selection .react-flow__panel {
298
+ pointer-events: none;
299
+ }
300
+ .react-flow__panel {
301
+ position: absolute;
302
+ z-index: 5;
303
+ margin: 15px;
304
+ }
305
+ .react-flow__panel.top {
306
+ top: 0;
307
+ }
308
+ .react-flow__panel.bottom {
309
+ bottom: 0;
310
+ }
311
+ .react-flow__panel.top.center, .react-flow__panel.bottom.center {
312
+ left: 50%;
313
+ transform: translateX(-15px) translateX(-50%);
314
+ }
315
+ .react-flow__panel.left {
316
+ left: 0;
317
+ }
318
+ .react-flow__panel.right {
319
+ right: 0;
320
+ }
321
+ .react-flow__panel.left.center, .react-flow__panel.right.center {
322
+ top: 50%;
323
+ transform: translateY(-15px) translateY(-50%);
324
+ }
325
+ .react-flow__attribution {
326
+ font-size: 10px;
327
+ background: var(--xy-attribution-background-color, var(--xy-attribution-background-color-default));
328
+ padding: 2px 3px;
329
+ margin: 0;
330
+ }
331
+ .react-flow__attribution a {
332
+ text-decoration: none;
333
+ color: #999;
334
+ }
335
+ @keyframes dashdraw {
336
+ from {
337
+ stroke-dashoffset: 10;
338
+ }
339
+ }
340
+ .react-flow__edgelabel-renderer {
341
+ position: absolute;
342
+ width: 100%;
343
+ height: 100%;
344
+ pointer-events: none;
345
+ -webkit-user-select: none;
346
+ -moz-user-select: none;
347
+ user-select: none;
348
+ left: 0;
349
+ top: 0;
350
+ }
351
+ .react-flow__viewport-portal {
352
+ position: absolute;
353
+ width: 100%;
354
+ height: 100%;
355
+ left: 0;
356
+ top: 0;
357
+ -webkit-user-select: none;
358
+ -moz-user-select: none;
359
+ user-select: none;
360
+ }
361
+ .react-flow__minimap {
362
+ background: var(
363
+ --xy-minimap-background-color-props,
364
+ var(--xy-minimap-background-color, var(--xy-minimap-background-color-default))
365
+ );
366
+ }
367
+ .react-flow__minimap-svg {
368
+ display: block;
369
+ }
370
+ .react-flow__minimap-mask {
371
+ fill: var(
372
+ --xy-minimap-mask-background-color-props,
373
+ var(--xy-minimap-mask-background-color, var(--xy-minimap-mask-background-color-default))
374
+ );
375
+ stroke: var(
376
+ --xy-minimap-mask-stroke-color-props,
377
+ var(--xy-minimap-mask-stroke-color, var(--xy-minimap-mask-stroke-color-default))
378
+ );
379
+ stroke-width: var(
380
+ --xy-minimap-mask-stroke-width-props,
381
+ var(--xy-minimap-mask-stroke-width, var(--xy-minimap-mask-stroke-width-default))
382
+ );
383
+ }
384
+ .react-flow__minimap-node {
385
+ fill: var(
386
+ --xy-minimap-node-background-color-props,
387
+ var(--xy-minimap-node-background-color, var(--xy-minimap-node-background-color-default))
388
+ );
389
+ stroke: var(
390
+ --xy-minimap-node-stroke-color-props,
391
+ var(--xy-minimap-node-stroke-color, var(--xy-minimap-node-stroke-color-default))
392
+ );
393
+ stroke-width: var(
394
+ --xy-minimap-node-stroke-width-props,
395
+ var(--xy-minimap-node-stroke-width, var(--xy-minimap-node-stroke-width-default))
396
+ );
397
+ }
398
+ .react-flow__background-pattern.dots {
399
+ fill: var(
400
+ --xy-background-pattern-color-props,
401
+ var(--xy-background-pattern-color, var(--xy-background-pattern-dots-color-default))
402
+ );
403
+ }
404
+ .react-flow__background-pattern.lines {
405
+ stroke: var(
406
+ --xy-background-pattern-color-props,
407
+ var(--xy-background-pattern-color, var(--xy-background-pattern-lines-color-default))
408
+ );
409
+ }
410
+ .react-flow__background-pattern.cross {
411
+ stroke: var(
412
+ --xy-background-pattern-color-props,
413
+ var(--xy-background-pattern-color, var(--xy-background-pattern-cross-color-default))
414
+ );
415
+ }
416
+ .react-flow__controls {
417
+ display: flex;
418
+ flex-direction: column;
419
+ box-shadow: var(--xy-controls-box-shadow, var(--xy-controls-box-shadow-default));
420
+ }
421
+ .react-flow__controls.horizontal {
422
+ flex-direction: row;
423
+ }
424
+ .react-flow__controls-button {
425
+ display: flex;
426
+ justify-content: center;
427
+ align-items: center;
428
+ height: 26px;
429
+ width: 26px;
430
+ padding: 4px;
431
+ border: none;
432
+ background: var(--xy-controls-button-background-color, var(--xy-controls-button-background-color-default));
433
+ border-bottom: 1px solid
434
+ var(
435
+ --xy-controls-button-border-color-props,
436
+ var(--xy-controls-button-border-color, var(--xy-controls-button-border-color-default))
437
+ );
438
+ color: var(
439
+ --xy-controls-button-color-props,
440
+ var(--xy-controls-button-color, var(--xy-controls-button-color-default))
441
+ );
442
+ cursor: pointer;
443
+ -webkit-user-select: none;
444
+ -moz-user-select: none;
445
+ user-select: none;
446
+ }
447
+ .react-flow__controls-button svg {
448
+ width: 100%;
449
+ max-width: 12px;
450
+ max-height: 12px;
451
+ fill: currentColor;
452
+ }
453
+ .react-flow__edge.updating .react-flow__edge-path {
454
+ stroke: #777;
455
+ }
456
+ .react-flow__edge-text {
457
+ font-size: 10px;
458
+ }
459
+ .react-flow__node.selectable:focus,
460
+ .react-flow__node.selectable:focus-visible {
461
+ outline: none;
462
+ }
463
+ .react-flow__node-input,
464
+ .react-flow__node-default,
465
+ .react-flow__node-output,
466
+ .react-flow__node-group {
467
+ padding: 10px;
468
+ border-radius: var(--xy-node-border-radius, var(--xy-node-border-radius-default));
469
+ width: 150px;
470
+ font-size: 12px;
471
+ color: var(--xy-node-color, var(--xy-node-color-default));
472
+ text-align: center;
473
+ border: var(--xy-node-border, var(--xy-node-border-default));
474
+ background-color: var(--xy-node-background-color, var(--xy-node-background-color-default));
475
+ }
476
+ .react-flow__node-input.selectable:hover, .react-flow__node-default.selectable:hover, .react-flow__node-output.selectable:hover, .react-flow__node-group.selectable:hover {
477
+ box-shadow: var(--xy-node-boxshadow-hover, var(--xy-node-boxshadow-hover-default));
478
+ }
479
+ .react-flow__node-input.selectable.selected,
480
+ .react-flow__node-input.selectable:focus,
481
+ .react-flow__node-input.selectable:focus-visible,
482
+ .react-flow__node-default.selectable.selected,
483
+ .react-flow__node-default.selectable:focus,
484
+ .react-flow__node-default.selectable:focus-visible,
485
+ .react-flow__node-output.selectable.selected,
486
+ .react-flow__node-output.selectable:focus,
487
+ .react-flow__node-output.selectable:focus-visible,
488
+ .react-flow__node-group.selectable.selected,
489
+ .react-flow__node-group.selectable:focus,
490
+ .react-flow__node-group.selectable:focus-visible {
491
+ box-shadow: var(--xy-node-boxshadow-selected, var(--xy-node-boxshadow-selected-default));
492
+ }
493
+ .react-flow__node-group {
494
+ background-color: var(--xy-node-group-background-color, var(--xy-node-group-background-color-default));
495
+ }
496
+ .react-flow__nodesselection-rect,
497
+ .react-flow__selection {
498
+ background: var(--xy-selection-background-color, var(--xy-selection-background-color-default));
499
+ border: var(--xy-selection-border, var(--xy-selection-border-default));
500
+ }
501
+ .react-flow__nodesselection-rect:focus,
502
+ .react-flow__nodesselection-rect:focus-visible,
503
+ .react-flow__selection:focus,
504
+ .react-flow__selection:focus-visible {
505
+ outline: none;
506
+ }
507
+ .react-flow__controls-button:hover {
508
+ background: var(
509
+ --xy-controls-button-background-color-hover-props,
510
+ var(--xy-controls-button-background-color-hover, var(--xy-controls-button-background-color-hover-default))
511
+ );
512
+ color: var(
513
+ --xy-controls-button-color-hover-props,
514
+ var(--xy-controls-button-color-hover, var(--xy-controls-button-color-hover-default))
515
+ );
516
+ }
517
+ .react-flow__controls-button:disabled {
518
+ pointer-events: none;
519
+ }
520
+ .react-flow__controls-button:disabled svg {
521
+ fill-opacity: 0.4;
522
+ }
523
+ .react-flow__controls-button:last-child {
524
+ border-bottom: none;
525
+ }
526
+ .react-flow__controls.horizontal .react-flow__controls-button {
527
+ border-bottom: none;
528
+ border-right: 1px solid
529
+ var(
530
+ --xy-controls-button-border-color-props,
531
+ var(--xy-controls-button-border-color, var(--xy-controls-button-border-color-default))
532
+ );
533
+ }
534
+ .react-flow__controls.horizontal .react-flow__controls-button:last-child {
535
+ border-right: none;
536
+ }
537
+ .react-flow__resize-control {
538
+ position: absolute;
539
+ }
540
+ .react-flow__resize-control.left,
541
+ .react-flow__resize-control.right {
542
+ cursor: ew-resize;
543
+ }
544
+ .react-flow__resize-control.top,
545
+ .react-flow__resize-control.bottom {
546
+ cursor: ns-resize;
547
+ }
548
+ .react-flow__resize-control.top.left,
549
+ .react-flow__resize-control.bottom.right {
550
+ cursor: nwse-resize;
551
+ }
552
+ .react-flow__resize-control.bottom.left,
553
+ .react-flow__resize-control.top.right {
554
+ cursor: nesw-resize;
555
+ }
556
+ /* handle styles */
557
+ .react-flow__resize-control.handle {
558
+ width: 5px;
559
+ height: 5px;
560
+ border: 1px solid #fff;
561
+ border-radius: 1px;
562
+ background-color: var(--xy-resize-background-color, var(--xy-resize-background-color-default));
563
+ translate: -50% -50%;
564
+ }
565
+ .react-flow__resize-control.handle.left {
566
+ left: 0;
567
+ top: 50%;
568
+ }
569
+ .react-flow__resize-control.handle.right {
570
+ left: 100%;
571
+ top: 50%;
572
+ }
573
+ .react-flow__resize-control.handle.top {
574
+ left: 50%;
575
+ top: 0;
576
+ }
577
+ .react-flow__resize-control.handle.bottom {
578
+ left: 50%;
579
+ top: 100%;
580
+ }
581
+ .react-flow__resize-control.handle.top.left {
582
+ left: 0;
583
+ }
584
+ .react-flow__resize-control.handle.bottom.left {
585
+ left: 0;
586
+ }
587
+ .react-flow__resize-control.handle.top.right {
588
+ left: 100%;
589
+ }
590
+ .react-flow__resize-control.handle.bottom.right {
591
+ left: 100%;
592
+ }
593
+ /* line styles */
594
+ .react-flow__resize-control.line {
595
+ border-color: var(--xy-resize-background-color, var(--xy-resize-background-color-default));
596
+ border-width: 0;
597
+ border-style: solid;
598
+ }
599
+ .react-flow__resize-control.line.left,
600
+ .react-flow__resize-control.line.right {
601
+ width: 1px;
602
+ transform: translate(-50%, 0);
603
+ top: 0;
604
+ height: 100%;
605
+ }
606
+ .react-flow__resize-control.line.left {
607
+ left: 0;
608
+ border-left-width: 1px;
609
+ }
610
+ .react-flow__resize-control.line.right {
611
+ left: 100%;
612
+ border-right-width: 1px;
613
+ }
614
+ .react-flow__resize-control.line.top,
615
+ .react-flow__resize-control.line.bottom {
616
+ height: 1px;
617
+ transform: translate(0, -50%);
618
+ left: 0;
619
+ width: 100%;
620
+ }
621
+ .react-flow__resize-control.line.top {
622
+ top: 0;
623
+ border-top-width: 1px;
624
+ }
625
+ .react-flow__resize-control.line.bottom {
626
+ border-bottom-width: 1px;
627
+ top: 100%;
628
+ }
629
+ .react-flow__edge-textbg {
630
+ fill: var(--xy-edge-label-background-color, var(--xy-edge-label-background-color-default));
631
+ }
632
+ .react-flow__edge-text {
633
+ fill: var(--xy-edge-label-color, var(--xy-edge-label-color-default));
634
+ }