sysml-diagram 0.43.0 → 0.43.1
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/out/main.js +9 -6
- package/out/main.js.map +2 -2
- package/package.json +1 -1
- package/resources/sysml.dimension-table.json +1 -1
package/out/main.js
CHANGED
|
@@ -210094,12 +210094,15 @@ svg.react-flow__connectionline { z-index: 1; }
|
|
|
210094
210094
|
/* REQ-361 - Bound hit testing on portless GV cards. The margin retains border
|
|
210095
210095
|
* strokes, package tabs and side handles. Port glyphs and their outside labels
|
|
210096
210096
|
* remain unbounded. Editing and hover controls also retain their full overflow. */
|
|
210097
|
-
/* Keep every card mounted
|
|
210098
|
-
*
|
|
210099
|
-
*
|
|
210097
|
+
/* Keep every card mounted AND rendered. Group cards used to defer their
|
|
210098
|
+
* off-screen contents with content-visibility auto (issue 287). A card that
|
|
210099
|
+
* crosses the viewport edge then lays out and paints inside the navigation
|
|
210100
|
+
* frame, so a pan across a complete inventory pays that work on almost every
|
|
210101
|
+
* frame. Measured on one host with the expanded SDV General View (1569 cards):
|
|
210102
|
+
* the pan p95 fell from 66.7 ms to 33.4 ms and the canvas opened 2.1 s sooner
|
|
210103
|
+
* without the deferral. Paint containment alone bounds these cards. */
|
|
210100
210104
|
.react-flow__node.rf-bounded-paint { contain: paint; overflow-clip-margin: 16px; }
|
|
210101
|
-
.
|
|
210102
|
-
.react-flow__node.rf-bounded-paint:is(:hover, :focus-within, .selected) { contain: none; content-visibility: visible; }
|
|
210105
|
+
.react-flow__node.rf-bounded-paint:is(:hover, :focus-within, .selected) { contain: none; }
|
|
210103
210106
|
.react-flow__node-sysml, .react-flow__node-frame { background: transparent; border: none; padding: 0; border-radius: 0; box-shadow: none; }
|
|
210104
210107
|
.rf-node, .rf-frame { position: relative; user-select: none; }
|
|
210105
210108
|
/* Container frames: the interior is click-through so connectors drawn underneath
|
|
@@ -214393,7 +214396,7 @@ async function runExport(command) {
|
|
|
214393
214396
|
}
|
|
214394
214397
|
|
|
214395
214398
|
// src/main.ts
|
|
214396
|
-
var VERSION2 = true ? "0.43.
|
|
214399
|
+
var VERSION2 = true ? "0.43.1" : "dev";
|
|
214397
214400
|
function display(file) {
|
|
214398
214401
|
const rel2 = path9.relative(process.cwd(), file);
|
|
214399
214402
|
return rel2 && !rel2.startsWith("..") ? rel2.split(path9.sep).join("/") : file;
|