@cristianormazabal/triton-latex 0.1.5 → 0.1.6

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/cli.cjs CHANGED
@@ -10491,7 +10491,7 @@ function connectorExtents(elements) {
10491
10491
  // ../src/diagrams/triton/ds/struct/shared.ts
10492
10492
  var ARROW_ID2 = "struct-arrow";
10493
10493
  function arrowDef(color) {
10494
- return `<marker id="${ARROW_ID2}" markerWidth="8" markerHeight="8" refX="7" refY="4" orient="auto"><path d="M0 0 L8 4 L0 8 z" fill="${color}" /></marker>`;
10494
+ return `<marker id="${ARROW_ID2}" markerWidth="12" markerHeight="12" refX="10" refY="6" orient="auto" markerUnits="userSpaceOnUse"><path d="M0 0 L12 6 L0 12 z" fill="${color}" /></marker>`;
10495
10495
  }
10496
10496
  function lines(input) {
10497
10497
  return input.split(/\r?\n/).map((l) => l.trim()).filter(Boolean);
@@ -39385,7 +39385,7 @@ function nodeStyle(kinds, theme) {
39385
39385
  if (has("join")) return { shape, fill: palette.surface, stroke: palette.secondary, text: palette.text };
39386
39386
  if (has("build") || has("muted")) return { shape, fill: palette.surface, stroke: palette.textMuted, text: palette.text };
39387
39387
  const fill = palette.surface;
39388
- return { shape, fill, stroke: outlineStroke(fill, theme), text: palette.text };
39388
+ return { shape, fill, stroke: palette.primary, text: palette.text };
39389
39389
  }
39390
39390
  function infoLine(node) {
39391
39391
  return node.info;