@ait-co/devtools 0.1.52 → 0.1.54-beta.0
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/README.en.md +12 -20
- package/README.md +12 -20
- package/dist/mcp/cli.js +18 -16
- package/dist/mcp/cli.js.map +1 -1
- package/dist/mcp/server.js +1 -1
- package/dist/mcp/server.js.map +1 -1
- package/dist/mock/index.d.ts +46 -1
- package/dist/mock/index.d.ts.map +1 -1
- package/dist/mock/index.js +55 -1
- package/dist/mock/index.js.map +1 -1
- package/dist/panel/index.js +2 -2
- package/dist/panel/index.js.map +1 -1
- package/dist/unplugin/index.cjs +2 -1
- package/dist/unplugin/index.cjs.map +1 -1
- package/dist/unplugin/index.d.cts +11 -11
- package/dist/unplugin/index.d.cts.map +1 -1
- package/dist/unplugin/index.d.ts +11 -11
- package/dist/unplugin/index.d.ts.map +1 -1
- package/dist/unplugin/index.js +2 -1
- package/dist/unplugin/index.js.map +1 -1
- package/package.json +20 -18
package/dist/panel/index.js
CHANGED
|
@@ -1108,7 +1108,7 @@ function readGlobalString(key) {
|
|
|
1108
1108
|
}
|
|
1109
1109
|
const TELEMETRY_ENDPOINT = readGlobalString("__TELEMETRY_ENDPOINT__") ?? "https://t.aitc.dev";
|
|
1110
1110
|
function getVersion() {
|
|
1111
|
-
return "0.1.
|
|
1111
|
+
return "0.1.54-beta.0";
|
|
1112
1112
|
}
|
|
1113
1113
|
let panelVisibleSince = null;
|
|
1114
1114
|
let accumulatedMs = 0;
|
|
@@ -4861,7 +4861,7 @@ function mount() {
|
|
|
4861
4861
|
mockBadge.textContent = aitState.state.panelEditable ? t("panel.editMode.on") : t("panel.editMode.off");
|
|
4862
4862
|
refreshPanel();
|
|
4863
4863
|
});
|
|
4864
|
-
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.
|
|
4864
|
+
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.54-beta.0`), closeBtn);
|
|
4865
4865
|
const header = h("div", { className: "ait-panel-header" }, h("span", {}, t("panel.title")), headerRight);
|
|
4866
4866
|
tabsEl = h("div", { className: "ait-panel-tabs" });
|
|
4867
4867
|
for (const tab of getTabs()) {
|