@goplasmatic/dataflow-ui 2.0.10 → 2.0.11
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/dataflow-ui.css +23 -1
- package/package.json +1 -1
package/dist/dataflow-ui.css
CHANGED
|
@@ -4334,10 +4334,32 @@ svg.react-flow__connectionline {
|
|
|
4334
4334
|
|
|
4335
4335
|
.df-visualizer-result-content {
|
|
4336
4336
|
flex: 1;
|
|
4337
|
-
|
|
4337
|
+
min-height: 0;
|
|
4338
|
+
overflow: hidden;
|
|
4338
4339
|
background: var(--df-bg-primary);
|
|
4339
4340
|
}
|
|
4340
4341
|
|
|
4342
|
+
/* Monaco Editor Wrapper */
|
|
4343
|
+
|
|
4344
|
+
.df-monaco-editor-wrapper {
|
|
4345
|
+
height: 100%;
|
|
4346
|
+
min-height: 100%;
|
|
4347
|
+
}
|
|
4348
|
+
|
|
4349
|
+
/* Monaco Editor Line Highlighting (for debug mode) */
|
|
4350
|
+
|
|
4351
|
+
.df-highlighted-line {
|
|
4352
|
+
background-color: color-mix(in srgb, var(--df-success) 15%, transparent) !important;
|
|
4353
|
+
border-left: 3px solid var(--df-success) !important;
|
|
4354
|
+
}
|
|
4355
|
+
|
|
4356
|
+
.df-highlighted-glyph {
|
|
4357
|
+
background-color: var(--df-success);
|
|
4358
|
+
width: 4px !important;
|
|
4359
|
+
margin-left: 3px;
|
|
4360
|
+
border-radius: 2px;
|
|
4361
|
+
}
|
|
4362
|
+
|
|
4341
4363
|
.df-result-json {
|
|
4342
4364
|
margin: 0;
|
|
4343
4365
|
padding: 12px;
|
package/package.json
CHANGED