@vuu-ui/vuu-shell 0.8.74 → 0.8.76
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/cjs/app-header/AppHeader.js +2 -1
- package/cjs/app-header/AppHeader.js.map +1 -1
- package/cjs/application-provider/ApplicationProvider.js +5 -1
- package/cjs/application-provider/ApplicationProvider.js.map +1 -1
- package/cjs/index.js +13 -12
- package/cjs/index.js.map +1 -1
- package/cjs/layout-management/LayoutList.js +2 -2
- package/cjs/layout-management/LayoutList.js.map +1 -1
- package/cjs/layout-management/{useLayoutManager.js → LayoutManagementProvider.js} +46 -19
- package/cjs/layout-management/LayoutManagementProvider.js.map +1 -0
- package/cjs/layout-management/defaultWorkspaceJSON.js +75 -0
- package/cjs/layout-management/defaultWorkspaceJSON.js.map +1 -0
- package/cjs/layout-management/useLayoutContextMenuItems.js +3 -3
- package/cjs/layout-management/useLayoutContextMenuItems.js.map +1 -1
- package/cjs/left-nav/LeftNav.js +2 -1
- package/cjs/left-nav/LeftNav.js.map +1 -1
- package/cjs/persistence-manager/RemotePersistenceManager.js +1 -1
- package/cjs/persistence-manager/RemotePersistenceManager.js.map +1 -1
- package/cjs/{shell-layouts → shell-layout-templates}/context-panel/ContextPanel.js +4 -2
- package/cjs/shell-layout-templates/context-panel/ContextPanel.js.map +1 -0
- package/cjs/{shell-layouts → shell-layout-templates/full-height-left-panel}/useFullHeightLeftPanel.js +12 -12
- package/cjs/shell-layout-templates/full-height-left-panel/useFullHeightLeftPanel.js.map +1 -0
- package/cjs/{shell-layouts → shell-layout-templates/inlay-left-panel}/useInlayLeftPanel.js +10 -4
- package/cjs/shell-layout-templates/inlay-left-panel/useInlayLeftPanel.js.map +1 -0
- package/cjs/shell-layout-templates/side-panel/SidePanel.js.map +1 -0
- package/cjs/shell-layout-templates/simple-content-pane/useSimpleContentPane.js +46 -0
- package/cjs/shell-layout-templates/simple-content-pane/useSimpleContentPane.js.map +1 -0
- package/cjs/shell-layout-templates/useShellLayout.js +21 -0
- package/cjs/shell-layout-templates/useShellLayout.js.map +1 -0
- package/cjs/shell.css.js +1 -1
- package/cjs/shell.js +46 -37
- package/cjs/shell.js.map +1 -1
- package/esm/app-header/AppHeader.js +2 -1
- package/esm/app-header/AppHeader.js.map +1 -1
- package/esm/application-provider/ApplicationProvider.js +5 -1
- package/esm/application-provider/ApplicationProvider.js.map +1 -1
- package/esm/index.js +5 -4
- package/esm/index.js.map +1 -1
- package/esm/layout-management/LayoutList.js +1 -1
- package/esm/layout-management/LayoutList.js.map +1 -1
- package/esm/layout-management/{useLayoutManager.js → LayoutManagementProvider.js} +46 -19
- package/esm/layout-management/LayoutManagementProvider.js.map +1 -0
- package/esm/layout-management/defaultWorkspaceJSON.js +70 -0
- package/esm/layout-management/defaultWorkspaceJSON.js.map +1 -0
- package/esm/layout-management/useLayoutContextMenuItems.js +2 -2
- package/esm/layout-management/useLayoutContextMenuItems.js.map +1 -1
- package/esm/left-nav/LeftNav.js +2 -1
- package/esm/left-nav/LeftNav.js.map +1 -1
- package/esm/persistence-manager/RemotePersistenceManager.js +1 -1
- package/esm/persistence-manager/RemotePersistenceManager.js.map +1 -1
- package/esm/{shell-layouts → shell-layout-templates}/context-panel/ContextPanel.js +4 -2
- package/esm/shell-layout-templates/context-panel/ContextPanel.js.map +1 -0
- package/esm/{shell-layouts → shell-layout-templates/full-height-left-panel}/useFullHeightLeftPanel.js +13 -13
- package/esm/shell-layout-templates/full-height-left-panel/useFullHeightLeftPanel.js.map +1 -0
- package/esm/{shell-layouts → shell-layout-templates/inlay-left-panel}/useInlayLeftPanel.js +11 -5
- package/esm/shell-layout-templates/inlay-left-panel/useInlayLeftPanel.js.map +1 -0
- package/esm/shell-layout-templates/side-panel/SidePanel.js.map +1 -0
- package/esm/shell-layout-templates/simple-content-pane/useSimpleContentPane.js +44 -0
- package/esm/shell-layout-templates/simple-content-pane/useSimpleContentPane.js.map +1 -0
- package/esm/shell-layout-templates/useShellLayout.js +19 -0
- package/esm/shell-layout-templates/useShellLayout.js.map +1 -0
- package/esm/shell.css.js +1 -1
- package/esm/shell.js +48 -39
- package/esm/shell.js.map +1 -1
- package/package.json +11 -11
- package/types/vuu-layout/src/Component.d.ts +6 -0
- package/types/vuu-layout/src/LayoutContainer.d.ts +6 -0
- package/types/vuu-layout/src/dock-layout/DockLayout.d.ts +7 -0
- package/types/vuu-layout/src/dock-layout/Drawer.d.ts +17 -0
- package/types/vuu-layout/src/dock-layout/index.d.ts +2 -0
- package/types/vuu-layout/src/drag-drop/BoxModel.d.ts +143 -0
- package/types/vuu-layout/src/drag-drop/DragState.d.ts +46 -0
- package/types/vuu-layout/src/drag-drop/Draggable.d.ts +24 -0
- package/types/vuu-layout/src/drag-drop/DropMenu.d.ts +9 -0
- package/types/vuu-layout/src/drag-drop/DropTarget.d.ts +60 -0
- package/types/vuu-layout/src/drag-drop/DropTargetRenderer.d.ts +17 -0
- package/types/vuu-layout/src/drag-drop/dragDropTypes.d.ts +51 -0
- package/types/vuu-layout/src/drag-drop/index.d.ts +4 -0
- package/types/vuu-layout/src/flexbox/Flexbox.d.ts +4 -0
- package/types/vuu-layout/src/flexbox/FlexboxLayout.d.ts +6 -0
- package/types/vuu-layout/src/flexbox/FluidGrid.d.ts +6 -0
- package/types/vuu-layout/src/flexbox/FluidGridLayout.d.ts +6 -0
- package/types/vuu-layout/src/flexbox/Splitter.d.ts +12 -0
- package/types/vuu-layout/src/flexbox/flexbox-utils.d.ts +12 -0
- package/types/vuu-layout/src/flexbox/flexboxTypes.d.ts +51 -0
- package/types/vuu-layout/src/flexbox/index.d.ts +4 -0
- package/types/vuu-layout/src/flexbox/useResponsiveSizing.d.ts +10 -0
- package/types/vuu-layout/src/flexbox/useSplitterResizing.d.ts +2 -0
- package/types/vuu-layout/src/index.d.ts +17 -0
- package/types/vuu-layout/src/layout-action.d.ts +19 -0
- package/types/vuu-layout/src/layout-header/Header.d.ts +13 -0
- package/types/vuu-layout/src/layout-header/index.d.ts +1 -0
- package/types/vuu-layout/src/layout-provider/LayoutProvider.d.ts +15 -0
- package/types/vuu-layout/src/layout-provider/LayoutProviderContext.d.ts +10 -0
- package/types/vuu-layout/src/layout-provider/index.d.ts +2 -0
- package/types/vuu-layout/src/layout-provider/useLayoutDragDrop.d.ts +4 -0
- package/types/vuu-layout/src/layout-reducer/flexUtils.d.ts +22 -0
- package/types/vuu-layout/src/layout-reducer/index.d.ts +4 -0
- package/types/vuu-layout/src/layout-reducer/insert-layout-element.d.ts +8 -0
- package/types/vuu-layout/src/layout-reducer/layout-reducer.d.ts +3 -0
- package/types/vuu-layout/src/layout-reducer/layoutTypes.d.ts +131 -0
- package/types/vuu-layout/src/layout-reducer/layoutUtils.d.ts +44 -0
- package/types/vuu-layout/src/layout-reducer/move-layout-element.d.ts +3 -0
- package/types/vuu-layout/src/layout-reducer/remove-layout-element.d.ts +3 -0
- package/types/vuu-layout/src/layout-reducer/replace-layout-element.d.ts +6 -0
- package/types/vuu-layout/src/layout-reducer/resize-flex-children.d.ts +4 -0
- package/types/vuu-layout/src/layout-reducer/wrap-layout-element.d.ts +9 -0
- package/types/vuu-layout/src/layout-view/View.d.ts +10 -0
- package/types/vuu-layout/src/layout-view/index.d.ts +3 -0
- package/types/vuu-layout/src/layout-view/useView.d.ts +21 -0
- package/types/vuu-layout/src/layout-view/useViewBroadcastChannel.d.ts +7 -0
- package/types/vuu-layout/src/layout-view/useViewResize.d.ts +7 -0
- package/types/vuu-layout/src/layout-view/viewTypes.d.ts +45 -0
- package/types/vuu-layout/src/layout-view-actions/ViewContext.d.ts +33 -0
- package/types/vuu-layout/src/layout-view-actions/index.d.ts +2 -0
- package/types/vuu-layout/src/layout-view-actions/useViewActionDispatcher.d.ts +4 -0
- package/types/vuu-layout/src/palette/Palette.d.ts +25 -0
- package/types/vuu-layout/src/palette/index.d.ts +1 -0
- package/types/vuu-layout/src/placeholder/LayoutStartPanel.d.ts +5 -0
- package/types/vuu-layout/src/placeholder/Placeholder.d.ts +17 -0
- package/types/vuu-layout/src/placeholder/index.d.ts +1 -0
- package/types/vuu-layout/src/responsive/breakpoints.d.ts +4 -0
- package/types/vuu-layout/src/responsive/index.d.ts +3 -0
- package/types/vuu-layout/src/responsive/use-breakpoints.d.ts +7 -0
- package/types/vuu-layout/src/responsive/useResizeObserver.d.ts +13 -0
- package/types/vuu-layout/src/responsive/utils.d.ts +6 -0
- package/types/vuu-layout/src/stack/Stack.d.ts +3 -0
- package/types/vuu-layout/src/stack/StackLayout.d.ts +6 -0
- package/types/vuu-layout/src/stack/index.d.ts +3 -0
- package/types/vuu-layout/src/stack/stackTypes.d.ts +24 -0
- package/types/vuu-layout/src/use-persistent-state.d.ts +11 -0
- package/types/vuu-layout/src/utils/index.d.ts +5 -0
- package/types/vuu-layout/src/utils/pathUtils.d.ts +31 -0
- package/types/vuu-layout/src/utils/propUtils.d.ts +5 -0
- package/types/vuu-layout/src/utils/refUtils.d.ts +2 -0
- package/types/vuu-layout/src/utils/styleUtils.d.ts +3 -0
- package/types/vuu-layout/src/utils/typeOf.d.ts +7 -0
- package/types/{index.d.ts → vuu-shell/src/index.d.ts} +1 -2
- package/types/{layout-management/useLayoutManager.d.ts → vuu-shell/src/layout-management/LayoutManagementProvider.d.ts} +22 -7
- package/types/vuu-shell/src/layout-management/defaultWorkspaceJSON.d.ts +9 -0
- package/types/{layout-management → vuu-shell/src/layout-management}/index.d.ts +2 -2
- package/types/{persistence-manager → vuu-shell/src/persistence-manager}/StaticPersistenceManager.d.ts +3 -1
- package/types/{shell-layouts → vuu-shell/src/shell-layout-templates}/context-panel/ContextPanel.d.ts +2 -1
- package/types/vuu-shell/src/shell-layout-templates/full-height-left-panel/useFullHeightLeftPanel.d.ts +2 -0
- package/types/vuu-shell/src/shell-layout-templates/inlay-left-panel/useInlayLeftPanel.d.ts +2 -0
- package/types/vuu-shell/src/shell-layout-templates/simple-content-pane/useSimpleContentPane.d.ts +2 -0
- package/types/vuu-shell/src/shell-layout-templates/useShellLayout.d.ts +45 -0
- package/types/vuu-shell/src/shell.d.ts +16 -0
- package/cjs/layout-management/defaultApplicationJson.js +0 -97
- package/cjs/layout-management/defaultApplicationJson.js.map +0 -1
- package/cjs/layout-management/useLayoutManager.js.map +0 -1
- package/cjs/shell-layouts/context-panel/ContextPanel.js.map +0 -1
- package/cjs/shell-layouts/side-panel/SidePanel.js.map +0 -1
- package/cjs/shell-layouts/useFullHeightLeftPanel.js.map +0 -1
- package/cjs/shell-layouts/useInlayLeftPanel.js.map +0 -1
- package/cjs/shell-layouts/useShellLayout.js +0 -15
- package/cjs/shell-layouts/useShellLayout.js.map +0 -1
- package/esm/layout-management/defaultApplicationJson.js +0 -91
- package/esm/layout-management/defaultApplicationJson.js.map +0 -1
- package/esm/layout-management/useLayoutManager.js.map +0 -1
- package/esm/shell-layouts/context-panel/ContextPanel.js.map +0 -1
- package/esm/shell-layouts/side-panel/SidePanel.js.map +0 -1
- package/esm/shell-layouts/useFullHeightLeftPanel.js.map +0 -1
- package/esm/shell-layouts/useInlayLeftPanel.js.map +0 -1
- package/esm/shell-layouts/useShellLayout.js +0 -13
- package/esm/shell-layouts/useShellLayout.js.map +0 -1
- package/types/layout-management/defaultApplicationJson.d.ts +0 -6
- package/types/shell-layouts/useFullHeightLeftPanel.d.ts +0 -3
- package/types/shell-layouts/useInlayLeftPanel.d.ts +0 -3
- package/types/shell-layouts/useShellLayout.d.ts +0 -10
- package/types/shell.d.ts +0 -17
- /package/cjs/{shell-layouts → shell-layout-templates}/context-panel/ContextPanel.css.js +0 -0
- /package/cjs/{shell-layouts → shell-layout-templates}/context-panel/ContextPanel.css.js.map +0 -0
- /package/cjs/{shell-layouts → shell-layout-templates}/side-panel/SidePanel.css.js +0 -0
- /package/cjs/{shell-layouts → shell-layout-templates}/side-panel/SidePanel.css.js.map +0 -0
- /package/cjs/{shell-layouts → shell-layout-templates}/side-panel/SidePanel.js +0 -0
- /package/esm/{shell-layouts → shell-layout-templates}/context-panel/ContextPanel.css.js +0 -0
- /package/esm/{shell-layouts → shell-layout-templates}/context-panel/ContextPanel.css.js.map +0 -0
- /package/esm/{shell-layouts → shell-layout-templates}/side-panel/SidePanel.css.js +0 -0
- /package/esm/{shell-layouts → shell-layout-templates}/side-panel/SidePanel.css.js.map +0 -0
- /package/esm/{shell-layouts → shell-layout-templates}/side-panel/SidePanel.js +0 -0
- /package/types/{ShellContextProvider.d.ts → vuu-shell/src/ShellContextProvider.d.ts} +0 -0
- /package/types/{app-header → vuu-shell/src/app-header}/AppHeader.d.ts +0 -0
- /package/types/{app-header → vuu-shell/src/app-header}/index.d.ts +0 -0
- /package/types/{application-provider → vuu-shell/src/application-provider}/ApplicationContext.d.ts +0 -0
- /package/types/{application-provider → vuu-shell/src/application-provider}/ApplicationProvider.d.ts +0 -0
- /package/types/{application-provider → vuu-shell/src/application-provider}/index.d.ts +0 -0
- /package/types/{connection-status → vuu-shell/src/connection-status}/ConnectionStatusIndicator.d.ts +0 -0
- /package/types/{connection-status → vuu-shell/src/connection-status}/index.d.ts +0 -0
- /package/types/{datasource-provider → vuu-shell/src/datasource-provider}/DataSourceProvider.d.ts +0 -0
- /package/types/{datasource-provider → vuu-shell/src/datasource-provider}/index.d.ts +0 -0
- /package/types/{feature → vuu-shell/src/feature}/Feature.d.ts +0 -0
- /package/types/{feature → vuu-shell/src/feature}/FeatureErrorBoundary.d.ts +0 -0
- /package/types/{feature → vuu-shell/src/feature}/Loader.d.ts +0 -0
- /package/types/{feature → vuu-shell/src/feature}/index.d.ts +0 -0
- /package/types/{feature-list → vuu-shell/src/feature-list}/FeatureList.d.ts +0 -0
- /package/types/{feature-list → vuu-shell/src/feature-list}/index.d.ts +0 -0
- /package/types/{get-layout-history.d.ts → vuu-shell/src/get-layout-history.d.ts} +0 -0
- /package/types/{layout-management → vuu-shell/src/layout-management}/LayoutList.d.ts +0 -0
- /package/types/{layout-management → vuu-shell/src/layout-management}/LayoutTile.d.ts +0 -0
- /package/types/{layout-management → vuu-shell/src/layout-management}/SaveLayoutPanel.d.ts +0 -0
- /package/types/{layout-management → vuu-shell/src/layout-management}/layoutTypes.d.ts +0 -0
- /package/types/{layout-management → vuu-shell/src/layout-management}/screenshot-utils.d.ts +0 -0
- /package/types/{layout-management → vuu-shell/src/layout-management}/useLayoutContextMenuItems.d.ts +0 -0
- /package/types/{left-nav → vuu-shell/src/left-nav}/LeftNav.d.ts +0 -0
- /package/types/{left-nav → vuu-shell/src/left-nav}/index.d.ts +0 -0
- /package/types/{login → vuu-shell/src/login}/LoginPanel.d.ts +0 -0
- /package/types/{login → vuu-shell/src/login}/VuuLogo.d.ts +0 -0
- /package/types/{login → vuu-shell/src/login}/index.d.ts +0 -0
- /package/types/{login → vuu-shell/src/login}/login-utils.d.ts +0 -0
- /package/types/{persistence-manager → vuu-shell/src/persistence-manager}/LocalPersistenceManager.d.ts +0 -0
- /package/types/{persistence-manager → vuu-shell/src/persistence-manager}/PersistenceManager.d.ts +0 -0
- /package/types/{persistence-manager → vuu-shell/src/persistence-manager}/PersistenceProvider.d.ts +0 -0
- /package/types/{persistence-manager → vuu-shell/src/persistence-manager}/RemotePersistenceManager.d.ts +0 -0
- /package/types/{persistence-manager → vuu-shell/src/persistence-manager}/index.d.ts +0 -0
- /package/types/{persistence-provider → vuu-shell/src/persistence-provider}/PersistenceProviderNext.d.ts +0 -0
- /package/types/{persistence-provider → vuu-shell/src/persistence-provider}/index.d.ts +0 -0
- /package/types/{session-editing-form → vuu-shell/src/session-editing-form}/SessionEditingForm.d.ts +0 -0
- /package/types/{session-editing-form → vuu-shell/src/session-editing-form}/index.d.ts +0 -0
- /package/types/{shell-layouts → vuu-shell/src/shell-layout-templates}/context-panel/index.d.ts +0 -0
- /package/types/{shell-layouts → vuu-shell/src/shell-layout-templates}/index.d.ts +0 -0
- /package/types/{shell-layouts → vuu-shell/src/shell-layout-templates}/side-panel/SidePanel.d.ts +0 -0
- /package/types/{shell-layouts → vuu-shell/src/shell-layout-templates}/side-panel/index.d.ts +0 -0
- /package/types/{theme-switch → vuu-shell/src/theme-switch}/ThemeSwitch.d.ts +0 -0
- /package/types/{theme-switch → vuu-shell/src/theme-switch}/index.d.ts +0 -0
- /package/types/{use-force-render.d.ts → vuu-shell/src/use-force-render.d.ts} +0 -0
- /package/types/{user-settings → vuu-shell/src/user-settings}/SettingsForm.d.ts +0 -0
- /package/types/{user-settings → vuu-shell/src/user-settings}/UserSettingsPanel.d.ts +0 -0
- /package/types/{user-settings → vuu-shell/src/user-settings}/index.d.ts +0 -0
package/types/shell.d.ts
DELETED
|
@@ -1,17 +0,0 @@
|
|
|
1
|
-
import { LayoutProviderProps } from "@vuu-ui/vuu-layout";
|
|
2
|
-
import { LayoutJSON, VuuUser } from "@vuu-ui/vuu-utils";
|
|
3
|
-
import { HTMLAttributes, ReactNode } from "react";
|
|
4
|
-
import { SidePanelProps } from "./shell-layouts";
|
|
5
|
-
export type LayoutTemplateName = "full-height" | "inlay";
|
|
6
|
-
export interface ShellProps extends HTMLAttributes<HTMLDivElement> {
|
|
7
|
-
LayoutProps?: Pick<LayoutProviderProps, "createNewChild" | "pathToDropTarget">;
|
|
8
|
-
LeftSidePanelProps?: SidePanelProps;
|
|
9
|
-
children?: ReactNode;
|
|
10
|
-
defaultLayout?: LayoutJSON;
|
|
11
|
-
leftSidePanelLayout?: "full-height" | "inlay";
|
|
12
|
-
loginUrl?: string;
|
|
13
|
-
saveUrl?: string;
|
|
14
|
-
serverUrl?: string;
|
|
15
|
-
user: VuuUser;
|
|
16
|
-
}
|
|
17
|
-
export declare const Shell: ({ defaultLayout, user, ...props }: ShellProps) => JSX.Element;
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
/package/types/{application-provider → vuu-shell/src/application-provider}/ApplicationContext.d.ts
RENAMED
|
File without changes
|
/package/types/{application-provider → vuu-shell/src/application-provider}/ApplicationProvider.d.ts
RENAMED
|
File without changes
|
|
File without changes
|
/package/types/{connection-status → vuu-shell/src/connection-status}/ConnectionStatusIndicator.d.ts
RENAMED
|
File without changes
|
|
File without changes
|
/package/types/{datasource-provider → vuu-shell/src/datasource-provider}/DataSourceProvider.d.ts
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
/package/types/{layout-management → vuu-shell/src/layout-management}/useLayoutContextMenuItems.d.ts
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
/package/types/{persistence-manager → vuu-shell/src/persistence-manager}/PersistenceManager.d.ts
RENAMED
|
File without changes
|
/package/types/{persistence-manager → vuu-shell/src/persistence-manager}/PersistenceProvider.d.ts
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
/package/types/{session-editing-form → vuu-shell/src/session-editing-form}/SessionEditingForm.d.ts
RENAMED
|
File without changes
|
|
File without changes
|
/package/types/{shell-layouts → vuu-shell/src/shell-layout-templates}/context-panel/index.d.ts
RENAMED
|
File without changes
|
|
File without changes
|
/package/types/{shell-layouts → vuu-shell/src/shell-layout-templates}/side-panel/SidePanel.d.ts
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|