@syntrologie/runtime-sdk 2.8.0-canary.49 → 2.8.0-canary.50

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.
@@ -19906,20 +19906,6 @@ Please report this to https://github.com/markedjs/marked.`, e2) {
19906
19906
  root.unmount();
19907
19907
  };
19908
19908
  }
19909
- const questions = faqConfig.actions || [];
19910
- container.innerHTML = `
19911
- <div style="font-family: system-ui; max-width: 800px;">
19912
- ${questions.map((q3) => `
19913
- <div style="margin-bottom: 8px; padding: 16px; background: ${slateGrey[12]}; border-radius: 8px;">
19914
- <strong>${q3.config.question}</strong>
19915
- <p style="margin-top: 8px; color: ${slateGrey[6]};">${getAnswerText(q3.config.answer)}</p>
19916
- </div>
19917
- `).join("")}
19918
- </div>
19919
- `;
19920
- return () => {
19921
- container.innerHTML = "";
19922
- };
19923
19909
  }
19924
19910
  };
19925
19911
 
@@ -20396,21 +20382,6 @@ Please report this to https://github.com/markedjs/marked.`, e2) {
20396
20382
  root.unmount();
20397
20383
  };
20398
20384
  }
20399
- const tips = navConfig.actions || [];
20400
- container.innerHTML = `
20401
- <div style="font-family: system-ui; max-width: 100%;">
20402
- ${tips.map((tip) => `
20403
- <div style="margin-bottom: 4px; padding: 12px 16px; background: ${slateGrey[12]}; border-radius: 8px;">
20404
- ${tip.config.icon ? `<span>${renderIcon(tip.config.icon)}</span> ` : ""}<strong>${escapeHtml(tip.config.title)}</strong>
20405
- <p style="margin-top: 8px; color: ${slateGrey[6]}; font-size: 13px;">${escapeHtml(tip.config.description)}</p>
20406
- ${tip.config.href ? `<a href="${escapeHtml(tip.config.href)}" style="color: ${purple[2]}; font-size: 13px;">Go &rarr;</a>` : ""}
20407
- </div>
20408
- `).join("")}
20409
- </div>
20410
- `;
20411
- return () => {
20412
- container.innerHTML = "";
20413
- };
20414
20385
  }
20415
20386
  };
20416
20387
 
@@ -20706,7 +20677,7 @@ Please report this to https://github.com/markedjs/marked.`, e2) {
20706
20677
  }
20707
20678
 
20708
20679
  // src/version.ts
20709
- var SDK_VERSION = "2.8.0-canary.49";
20680
+ var SDK_VERSION = "2.8.0-canary.50";
20710
20681
 
20711
20682
  // src/types.ts
20712
20683
  var SDK_SCHEMA_VERSION = "2.0";
@@ -42032,7 +42003,7 @@ ${cssRules}
42032
42003
  }
42033
42004
 
42034
42005
  // src/index.ts
42035
- var RUNTIME_SDK_BUILD = true ? `${"2026-04-07T17:40:37.868Z"} (${"abdf6edd52c"})` : "dev";
42006
+ var RUNTIME_SDK_BUILD = true ? `${"2026-04-07T18:18:57.994Z"} (${"fa0d694036d"})` : "dev";
42036
42007
  if (typeof window !== "undefined") {
42037
42008
  console.log(`[Syntro Runtime] Build: ${RUNTIME_SDK_BUILD}`);
42038
42009
  const existing = window.SynOS;