@parhelia/core 0.1.12259 → 0.1.12269
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/agents-view/AgentsTitlebar.js +3 -2
- package/dist/agents-view/AgentsTitlebar.js.map +1 -1
- package/dist/editor/MobileLayout.js +1 -1
- package/dist/editor/MobileLayout.js.map +1 -1
- package/dist/editor/ai/AgentTerminal.js +153 -136
- package/dist/editor/ai/AgentTerminal.js.map +1 -1
- package/dist/editor/client/EditorShell.js +4 -3
- package/dist/editor/client/EditorShell.js.map +1 -1
- package/dist/editor/client/ui/EditorChrome.js +1 -1
- package/dist/editor/client/ui/EditorChrome.js.map +1 -1
- package/dist/editor/page-viewer/MiniMap.d.ts +1 -3
- package/dist/editor/page-viewer/MiniMap.js +73 -22
- package/dist/editor/page-viewer/MiniMap.js.map +1 -1
- package/dist/editor/page-viewer/PageViewerFrame.js +1 -1
- package/dist/editor/page-viewer/PageViewerFrame.js.map +1 -1
- package/dist/editor/settings/SettingsView.js +1 -1
- package/dist/editor/settings/SettingsView.js.map +1 -1
- package/dist/index.d.ts +1 -0
- package/dist/index.js +1 -0
- package/dist/index.js.map +1 -1
- package/dist/revision.d.ts +2 -2
- package/dist/revision.js +2 -2
- package/dist/splash-screen/ModernSplashScreen.js +1 -1
- package/dist/splash-screen/ModernSplashScreen.js.map +1 -1
- package/dist/splash-screen/RecentPages.js +2 -2
- package/dist/splash-screen/RecentPages.js.map +1 -1
- package/package.json +1 -1
- package/styles.css +3 -0
|
@@ -2168,9 +2168,10 @@ export function EditorShell({ configuration, className, item: loadItemDescriptor
|
|
|
2168
2168
|
useEffect(() => {
|
|
2169
2169
|
if (fullscreen &&
|
|
2170
2170
|
!searchParams.get("fullscreen") &&
|
|
2171
|
-
!configuration.forceFullscreen
|
|
2171
|
+
!configuration.forceFullscreen &&
|
|
2172
|
+
!isMobile)
|
|
2172
2173
|
setShowFullscreenHint(true);
|
|
2173
|
-
}, [fullscreen, configuration.forceFullscreen, searchParams]);
|
|
2174
|
+
}, [fullscreen, configuration.forceFullscreen, searchParams, isMobile]);
|
|
2174
2175
|
const state = {
|
|
2175
2176
|
page,
|
|
2176
2177
|
configuration,
|
|
@@ -4334,7 +4335,7 @@ export function EditorShell({ configuration, className, item: loadItemDescriptor
|
|
|
4334
4335
|
}, [currentItemDescriptor]);
|
|
4335
4336
|
if (!currentView)
|
|
4336
4337
|
return null;
|
|
4337
|
-
const editorUi = fullscreen ? (_jsxs(_Fragment, { children: [_jsxs("div", { className: "fixed inset-0 flex", children: [_jsx(PageViewerFrame, { compareView: compareMode, pageViewContext: activePageViewContext }), _jsx(FullscreenControls, { device: activePageViewContext.device, setDevice: (d) => activePageViewContext.setDevice(d), canExit: !configuration.forceFullscreen, onExit: () => setFullscreen(false), firstMobileDeviceName: configuration.devices[0]?.name })] }), showFullscreenHint && !configuration.forceFullscreen && (_jsx("div", { className: "fixed inset-0", onMouseMoveCapture: () => {
|
|
4338
|
+
const editorUi = fullscreen ? (_jsxs(_Fragment, { children: [_jsxs("div", { className: "fixed inset-0 flex", children: [_jsx(PageViewerFrame, { compareView: compareMode, pageViewContext: activePageViewContext }), _jsx(FullscreenControls, { device: activePageViewContext.device, setDevice: (d) => activePageViewContext.setDevice(d), canExit: !configuration.forceFullscreen, onExit: () => setFullscreen(false), firstMobileDeviceName: configuration.devices[0]?.name })] }), showFullscreenHint && !configuration.forceFullscreen && !isMobile && (_jsx("div", { className: "fixed inset-0 z-10000", onMouseMoveCapture: () => {
|
|
4338
4339
|
setTimeout(() => {
|
|
4339
4340
|
setShowFullscreenHint(false);
|
|
4340
4341
|
}, 600);
|