aicodeman 0.4.3 → 0.4.4
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/web/public/api-client.3adebdc2.js.gz +0 -0
- package/dist/web/public/app.9dab4ee2.js.gz +0 -0
- package/dist/web/public/constants.cd61abbc.js.gz +0 -0
- package/dist/web/public/index.html +1 -1
- package/dist/web/public/index.html.br +0 -0
- package/dist/web/public/index.html.gz +0 -0
- package/dist/web/public/input-cjk.92544c51.js.gz +0 -0
- package/dist/web/public/keyboard-accessory.9fb81db6.js.gz +0 -0
- package/dist/web/public/{mobile-handlers.d4830fd3.js → mobile-handlers.1fb252da.js} +12 -1
- package/dist/web/public/mobile-handlers.1fb252da.js.br +0 -0
- package/dist/web/public/mobile-handlers.1fb252da.js.gz +0 -0
- package/dist/web/public/mobile.42fde818.css.gz +0 -0
- package/dist/web/public/notification-manager.2d5ea8ec.js.gz +0 -0
- package/dist/web/public/panels-ui.d7f6be08.js.gz +0 -0
- package/dist/web/public/ralph-panel.7b014f16.js.gz +0 -0
- package/dist/web/public/ralph-wizard.f31ab90e.js.gz +0 -0
- package/dist/web/public/respawn-ui.372c6ea7.js.gz +0 -0
- package/dist/web/public/session-ui.0a07c3b7.js.gz +0 -0
- package/dist/web/public/settings-ui.94c57184.js.gz +0 -0
- package/dist/web/public/styles.b8ec2f5a.css.gz +0 -0
- package/dist/web/public/subagent-windows.a366a4ad.js.gz +0 -0
- package/dist/web/public/sw.js.gz +0 -0
- package/dist/web/public/terminal-ui.e4565c7b.js.gz +0 -0
- package/dist/web/public/upload.html.gz +0 -0
- package/dist/web/public/vendor/xterm-addon-fit.min.js.gz +0 -0
- package/dist/web/public/vendor/xterm-addon-unicode11.min.js.gz +0 -0
- package/dist/web/public/vendor/xterm-addon-webgl.min.js.gz +0 -0
- package/dist/web/public/vendor/xterm-zerolag-input.137ad9f0.js.gz +0 -0
- package/dist/web/public/vendor/xterm.css.gz +0 -0
- package/dist/web/public/vendor/xterm.min.js.gz +0 -0
- package/dist/web/public/voice-input.085e9e73.js.gz +0 -0
- package/package.json +1 -1
- package/dist/web/public/mobile-handlers.d4830fd3.js.br +0 -0
- package/dist/web/public/mobile-handlers.d4830fd3.js.gz +0 -0
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
@@ -1695,7 +1695,7 @@
|
|
|
1695
1695
|
</svg>
|
|
1696
1696
|
|
|
1697
1697
|
<script defer src="constants.cd61abbc.js"></script>
|
|
1698
|
-
<script defer src="mobile-handlers.
|
|
1698
|
+
<script defer src="mobile-handlers.1fb252da.js"></script>
|
|
1699
1699
|
<script defer src="voice-input.085e9e73.js"></script>
|
|
1700
1700
|
<script defer src="notification-manager.2d5ea8ec.js"></script>
|
|
1701
1701
|
<script defer src="keyboard-accessory.9fb81db6.js"></script>
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
@@ -100,8 +100,12 @@ const MobileDetection = {
|
|
|
100
100
|
|
|
101
101
|
/** Set --app-height CSS variable from visual viewport.
|
|
102
102
|
* On iPad Safari with tabs, 100vh extends behind the tab bar.
|
|
103
|
-
* visualViewport.height reflects the actual visible area.
|
|
103
|
+
* visualViewport.height reflects the actual visible area.
|
|
104
|
+
* Skips when virtual keyboard is open — KeyboardHandler manages
|
|
105
|
+
* layout via translateY + paddingBottom; shrinking --app-height
|
|
106
|
+
* would double-count and leave zero space for the terminal. */
|
|
104
107
|
updateAppHeight() {
|
|
108
|
+
if (typeof KeyboardHandler !== 'undefined' && KeyboardHandler.keyboardVisible) return;
|
|
105
109
|
const vh = window.visualViewport?.height || window.innerHeight;
|
|
106
110
|
document.documentElement.style.setProperty('--app-height', `${vh}px`);
|
|
107
111
|
},
|
|
@@ -225,6 +229,10 @@ const KeyboardHandler = {
|
|
|
225
229
|
if (heightDiff > 150 && !this.keyboardVisible) {
|
|
226
230
|
this.keyboardVisible = true;
|
|
227
231
|
document.body.classList.add('keyboard-visible');
|
|
232
|
+
// Restore --app-height: MobileDetection's resize listener fires before ours
|
|
233
|
+
// and may have already shrunk it for the keyboard viewport change.
|
|
234
|
+
// Use initialViewportHeight (captured before keyboard opened).
|
|
235
|
+
document.documentElement.style.setProperty('--app-height', `${this.initialViewportHeight}px`);
|
|
228
236
|
this.onKeyboardShow();
|
|
229
237
|
}
|
|
230
238
|
// Keyboard hidden (viewport grew back close to initial)
|
|
@@ -234,6 +242,9 @@ const KeyboardHandler = {
|
|
|
234
242
|
this.keyboardVisible = false;
|
|
235
243
|
document.body.classList.remove('keyboard-visible');
|
|
236
244
|
this.onKeyboardHide();
|
|
245
|
+
// Re-sync --app-height now that keyboard is gone (MobileDetection skipped
|
|
246
|
+
// updates while keyboardVisible was true)
|
|
247
|
+
MobileDetection.updateAppHeight();
|
|
237
248
|
}
|
|
238
249
|
|
|
239
250
|
// Update baseline when keyboard is not visible — adapts to address bar
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
package/dist/web/public/sw.js.gz
CHANGED
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
package/package.json
CHANGED
|
Binary file
|
|
Binary file
|