@bonginkan/maria-lite 8.0.0 → 8.0.2

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.
@@ -4948,7 +4948,7 @@ async function openUniverseViewerShell(opts) {
4948
4948
  html += '<div class="uv-heartbeat-bar"><span class="uv-hb-dot"></span><span class="uv-hb-label">Off</span><span class="uv-hb-progress"></span></div>';
4949
4949
  html += '<div class="uv-controls">';
4950
4950
  html += '<input class="uv-topic-input" type="text" placeholder="Enter your topic (required)" />';
4951
- html += '<label class="uv-apply-label"><input class="uv-apply-check" type="checkbox" /> --apply</label>';
4951
+ html += '<label class="uv-apply-label"><input class="uv-apply-check" type="checkbox" checked /> --apply</label>';
4952
4952
  const infIcon = vLucide ? lucideIcon("rocket", "di-lucide") : "\u{1F680}";
4953
4953
  html += `<button class="uv-inflate-btn">${infIcon} Inflate</button>`;
4954
4954
  const rerunIcon = vLucide ? lucideIcon("refresh-cw", "di-lucide") : "\u{1F504}";
@@ -5099,7 +5099,7 @@ async function openUniverseViewerShell(opts) {
5099
5099
  inflateBtn?.addEventListener("click", () => {
5100
5100
  const topicVal = requireTopic();
5101
5101
  if (topicVal === null) return;
5102
- const applyMode = applyCheck?.checked ? "apply" : "plan-only";
5102
+ const applyMode = applyCheck?.checked === false ? "plan-only" : "apply";
5103
5103
  inflateUniverse(name, applyMode, topicVal || void 0, { inFiles: getInFiles() });
5104
5104
  });
5105
5105
  const rerunBtn = body.querySelector(".uv-rerun-btn");
@@ -7250,7 +7250,7 @@ async function openMultiverseFolder() {
7250
7250
  body.innerHTML = `<div style="padding:16px;color:#e74c3c;">Failed to load multiverse: ${String(err)}</div>`;
7251
7251
  }
7252
7252
  }
7253
- function inflateUniverse(name, mode = "plan-only", topic, opts) {
7253
+ function inflateUniverse(name, mode = "apply", topic, opts) {
7254
7254
  const flag = mode === "apply" ? "--apply" : "--plan-only";
7255
7255
  const topicPart = topic ? ` --topic "${topic.replace(/"/g, '\\"')}"` : "";
7256
7256
  const rerunPart = opts?.rerun ? " --rerun" : "";
package/dist/ext.cjs CHANGED
@@ -98007,7 +98007,7 @@ function resolvePackageJsonNearEntrypoint() {
98007
98007
  }
98008
98008
  function resolveMariaLiteVersionInfo() {
98009
98009
  const fallbackName = EXPECTED_PKG_NAME;
98010
- const fallbackVersion = String(process.env.MARIA_LITE_VERSION || "").trim() || "8.0.0";
98010
+ const fallbackVersion = String(process.env.MARIA_LITE_VERSION || "").trim() || "8.0.2";
98011
98011
  const near = resolvePackageJsonNearEntrypoint();
98012
98012
  if (near) {
98013
98013
  const name = fallbackName;
package/dist/ext.d.cts CHANGED
@@ -27,6 +27,8 @@ type LiteCommandHelp = {
27
27
  description: string;
28
28
  usage: string;
29
29
  schema?: LiteCommandSchema;
30
+ implicitApply?: boolean;
31
+ supportsPreview?: boolean;
30
32
  };
31
33
  type LiteParsedInput = {
32
34
  isSlash: boolean;
@@ -1 +1 @@
1
- {"buildTimestamp":"2026-03-10T01:59:22.292Z","fileCount":952,"indexJsonlRelPath":"src-lite/origin/index.jsonl","schemaVersion":"maria_lite_origin_index_meta_v1","sourceDir":"src-lite/origin","textExtractedCount":952}
1
+ {"buildTimestamp":"2026-03-10T06:01:12.324Z","fileCount":952,"indexJsonlRelPath":"src-lite/origin/index.jsonl","schemaVersion":"maria_lite_origin_index_meta_v1","sourceDir":"src-lite/origin","textExtractedCount":952}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@bonginkan/maria-lite",
3
- "version": "8.0.0",
3
+ "version": "8.0.2",
4
4
  "description": "MARIA-LITE: lightweight MARIA OS CLI (src-lite).",
5
5
  "license": "SEE LICENSE IN LICENSE",
6
6
  "author": "Bonginkan Inc.",