@ait-co/devtools 0.1.16 → 0.1.17
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/panel/index.js +2 -2
- package/dist/panel/index.js.map +1 -1
- package/package.json +1 -1
package/dist/panel/index.js
CHANGED
|
@@ -582,7 +582,7 @@ function readGlobalString(key) {
|
|
|
582
582
|
}
|
|
583
583
|
const TELEMETRY_ENDPOINT = readGlobalString("__TELEMETRY_ENDPOINT__") ?? "https://t.aitc.dev";
|
|
584
584
|
function getVersion() {
|
|
585
|
-
return
|
|
585
|
+
return "0.1.17";
|
|
586
586
|
}
|
|
587
587
|
let panelVisibleSince = null;
|
|
588
588
|
let accumulatedMs = 0;
|
|
@@ -3653,7 +3653,7 @@ function mount() {
|
|
|
3653
3653
|
mockBadge.textContent = aitState.state.panelEditable ? "EDIT" : "READ-ONLY";
|
|
3654
3654
|
refreshPanel();
|
|
3655
3655
|
});
|
|
3656
|
-
const headerRight = h("span", { style: "display:flex;align-items:center;gap:6px" }, mockBadge, h("span", { style: "font-size:11px;color:#666;font-weight:400" }, `v0.1.
|
|
3656
|
+
const headerRight = h("span", { style: "display:flex;align-items:center;gap:6px" }, mockBadge, h("span", { style: "font-size:11px;color:#666;font-weight:400" }, `v0.1.17`), closeBtn);
|
|
3657
3657
|
const header = h("div", { className: "ait-panel-header" }, h("span", {}, "AIT DevTools"), headerRight);
|
|
3658
3658
|
tabsEl = h("div", { className: "ait-panel-tabs" });
|
|
3659
3659
|
for (const tab of TABS) {
|