@ait-co/devtools 0.1.23 → 0.1.24
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/in-app/index.d.ts +2 -2
- package/dist/in-app/index.js.map +1 -1
- package/dist/mcp/cli.js +7 -7
- 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/panel/index.js +3 -3
- package/dist/panel/index.js.map +1 -1
- package/dist/unplugin/index.cjs +1 -1
- package/dist/unplugin/index.cjs.map +1 -1
- package/dist/unplugin/index.js +1 -1
- package/dist/unplugin/index.js.map +1 -1
- package/package.json +1 -1
package/dist/panel/index.js
CHANGED
|
@@ -1050,7 +1050,7 @@ function readGlobalString(key) {
|
|
|
1050
1050
|
}
|
|
1051
1051
|
const TELEMETRY_ENDPOINT = readGlobalString("__TELEMETRY_ENDPOINT__") ?? "https://t.aitc.dev";
|
|
1052
1052
|
function getVersion() {
|
|
1053
|
-
return "0.1.
|
|
1053
|
+
return "0.1.24";
|
|
1054
1054
|
}
|
|
1055
1055
|
let panelVisibleSince = null;
|
|
1056
1056
|
let accumulatedMs = 0;
|
|
@@ -3529,7 +3529,7 @@ function removeNavBarElement() {
|
|
|
3529
3529
|
* 우측 `⋯` + 구분선 + `×`.
|
|
3530
3530
|
* - `game`: 투명 배경, 게임 캔버스를 가리지 않도록 우측 `⋯` + 구분선 + `×`만.
|
|
3531
3531
|
*
|
|
3532
|
-
* `env(safe-area-inset-top)`에는 이 높이가 포함되지 않으므로 (
|
|
3532
|
+
* `env(safe-area-inset-top)`에는 이 높이가 포함되지 않으므로 (SDK 동작 확인),
|
|
3533
3533
|
* 오버레이는 preset.safeAreaTop만큼 아래로 내려서 그린다.
|
|
3534
3534
|
*
|
|
3535
3535
|
* 뒤로가기 버튼은 `__ait:backEvent`를 트리거하고, X 버튼은 `closeView()`를 호출한다.
|
|
@@ -4182,7 +4182,7 @@ function mount() {
|
|
|
4182
4182
|
mockBadge.textContent = aitState.state.panelEditable ? t("panel.editMode.on") : t("panel.editMode.off");
|
|
4183
4183
|
refreshPanel();
|
|
4184
4184
|
});
|
|
4185
|
-
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.
|
|
4185
|
+
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.24`), closeBtn);
|
|
4186
4186
|
const header = h("div", { className: "ait-panel-header" }, h("span", {}, t("panel.title")), headerRight);
|
|
4187
4187
|
tabsEl = h("div", { className: "ait-panel-tabs" });
|
|
4188
4188
|
for (const tab of getTabs()) {
|