@ait-co/devtools 0.1.91 → 0.1.93
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/auto.js +53 -0
- package/dist/in-app/auto.js.map +1 -1
- package/dist/in-app/index.d.ts +25 -1
- package/dist/in-app/index.d.ts.map +1 -1
- package/dist/in-app/index.js +54 -1
- package/dist/in-app/index.js.map +1 -1
- package/dist/mcp/cli.js +3 -3
- package/dist/mcp/server.js +1 -1
- package/dist/mock/index.d.ts +40 -1
- package/dist/mock/index.d.ts.map +1 -1
- package/dist/mock/index.js +44 -1
- package/dist/mock/index.js.map +1 -1
- package/dist/panel/index.js +5 -3
- package/dist/panel/index.js.map +1 -1
- package/dist/unplugin/index.cjs +7 -2
- package/dist/unplugin/index.cjs.map +1 -1
- package/dist/unplugin/index.d.cts +13 -0
- package/dist/unplugin/index.d.cts.map +1 -1
- package/dist/unplugin/index.d.ts +13 -0
- package/dist/unplugin/index.d.ts.map +1 -1
- package/dist/unplugin/index.js +7 -2
- package/dist/unplugin/index.js.map +1 -1
- package/package.json +1 -1
package/dist/panel/index.js
CHANGED
|
@@ -26561,7 +26561,7 @@ function readGlobalString(key) {
|
|
|
26561
26561
|
}
|
|
26562
26562
|
const TELEMETRY_ENDPOINT = readGlobalString("__TELEMETRY_ENDPOINT__") ?? "https://t.aitc.dev";
|
|
26563
26563
|
function getVersion() {
|
|
26564
|
-
return "0.1.
|
|
26564
|
+
return "0.1.93";
|
|
26565
26565
|
}
|
|
26566
26566
|
let panelVisibleSince = null;
|
|
26567
26567
|
let accumulatedMs = 0;
|
|
@@ -29975,7 +29975,9 @@ function resolveViewportSize(state) {
|
|
|
29975
29975
|
* 높이에 대한 정보용 값이고, WebView 좌표계에서 콘텐츠는 top=0부터 시작한다. 소비자가
|
|
29976
29976
|
* 이 값을 `padding-top`으로 적용하면 실기기에서 잉여 공간이 생긴다(double-count).
|
|
29977
29977
|
* mock은 top=0을 반환해 소비자 코드가 실기기와 같은 결과를 내도록 한다.
|
|
29978
|
-
* `game` type
|
|
29978
|
+
* `game` webViewProps.type은 SDK deprecated(web-framework 2.6.1: `type?: 'partner' | 'external' | 'game'`
|
|
29979
|
+
* 에서 external/game이 `@deprecated`). 따라서 실측을 추진하지 않으며, mock은 game을 partner와
|
|
29980
|
+
* 동일하게 취급해 top=0을 반환한다 — 분기 미추가 (#577).
|
|
29979
29981
|
* - **Bottom = `safeAreaBottom`** (portrait home-indicator, 실측 34).
|
|
29980
29982
|
* landscape는 `safeAreaBottomLandscape`가 정의돼 있으면 그 값을 사용한다
|
|
29981
29983
|
* (iPhone 15 Pro landscape 실측 20 — portrait 34와 다름).
|
|
@@ -30848,7 +30850,7 @@ function Panel() {
|
|
|
30848
30850
|
color: "#666",
|
|
30849
30851
|
fontWeight: 400
|
|
30850
30852
|
},
|
|
30851
|
-
children: ["v", "0.1.
|
|
30853
|
+
children: ["v", "0.1.93"]
|
|
30852
30854
|
}),
|
|
30853
30855
|
/* @__PURE__ */ (0, import_jsx_runtime.jsx)("button", {
|
|
30854
30856
|
type: "button",
|