react-dockable-desktop 5.4.0 → 6.0.0

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/index.d.cts CHANGED
@@ -1321,6 +1321,12 @@ interface SidePanelOptions {
1321
1321
  icon?: React$1.ReactNode;
1322
1322
  /** Specific CSS width (e.g. 300, '40%') for the panel container. */
1323
1323
  width?: number | string;
1324
+ /**
1325
+ * CSS padding for the panel body content — a number (px) or any CSS value/shorthand
1326
+ * (e.g. `'10px 16px'`). Default: `0` (edge-to-edge) — pass `10` to restore the pre-v6.0.0
1327
+ * default, or any value your content needs.
1328
+ */
1329
+ bodyPadding?: number | string;
1324
1330
  }
1325
1331
  /** Configuration options applied when opening a Modal. */
1326
1332
  interface ModalOptions {
@@ -1332,6 +1338,12 @@ interface ModalOptions {
1332
1338
  size?: 'small' | 'medium' | 'large' | 'fullscreen' | 'auto';
1333
1339
  /** If false, hides the modal backdrop exit click and header close button. */
1334
1340
  closable?: boolean;
1341
+ /**
1342
+ * CSS padding for the modal body content — a number (px) or any CSS value/shorthand
1343
+ * (e.g. `'10px 16px'`). Default: `0` (edge-to-edge) — pass `10` to restore the pre-v6.0.0
1344
+ * default, or any value your content needs.
1345
+ */
1346
+ bodyPadding?: number | string;
1335
1347
  }
1336
1348
  /**
1337
1349
  * Represents a rendered instance of a panel or modal in the layout.
@@ -1625,6 +1637,12 @@ interface SidebarProps {
1625
1637
  * @param onOpen - call to (re-)select this tab
1626
1638
  */
1627
1639
  renderHeader?: (tab: SidebarTab, onClose: () => void, onOpen: () => void) => React$1.ReactNode;
1640
+ /**
1641
+ * @internal Marks this instance as a secondary sidebar for context-broadcasting
1642
+ * purposes. Set automatically by `<SecondarySidebar>` — do not pass this directly.
1643
+ * Default: false
1644
+ */
1645
+ isSecondary?: boolean;
1628
1646
  /** Main workspace content rendered alongside the sidebar. */
1629
1647
  children?: React$1.ReactNode;
1630
1648
  }
@@ -1651,6 +1669,10 @@ interface SidebarContextValue {
1651
1669
  openTab: (tabId: string) => void;
1652
1670
  closeDrawer: () => void;
1653
1671
  getActiveTab: () => string | null;
1672
+ /** Which side this Sidebar instance is rendering on. */
1673
+ position: 'left' | 'right';
1674
+ /** True if this instance is a `<SecondarySidebar>`, false for a primary `<Sidebar>`. */
1675
+ isSecondary: boolean;
1654
1676
  }
1655
1677
  /**
1656
1678
  * Value provided by `useSidebarTab()`. Available only to components rendered
@@ -1663,6 +1685,23 @@ interface SidebarTabContextValue {
1663
1685
  openTab: (tabId: string) => void;
1664
1686
  }
1665
1687
  declare const Sidebar: React$1.ForwardRefExoticComponent<SidebarProps & React$1.RefAttributes<SidebarHandle>>;
1688
+ /**
1689
+ * Props for {@link SecondarySidebar} — identical to {@link SidebarProps} except
1690
+ * `position` (always the opposite of whatever primary `Sidebar` it's nested inside)
1691
+ * and `isSecondary` (always `true`) are not settable.
1692
+ */
1693
+ type SecondarySidebarProps = Omit<SidebarProps, 'position' | 'isSecondary'>;
1694
+ /**
1695
+ * A second, independent `Sidebar` instance for the opposite edge of the screen —
1696
+ * same component, same behavior, zero forked code. Must be rendered inside a
1697
+ * primary `Sidebar`'s `children`; automatically takes whichever side that primary
1698
+ * isn't using, so the side is never specified directly.
1699
+ *
1700
+ * @throws Error if rendered without an ancestor `Sidebar`, or nested inside another
1701
+ * `SecondarySidebar` — this library supports exactly one primary and one secondary,
1702
+ * nothing deeper.
1703
+ */
1704
+ declare const SecondarySidebar: React$1.ForwardRefExoticComponent<SecondarySidebarProps & React$1.RefAttributes<SidebarHandle>>;
1666
1705
  /**
1667
1706
  * Returns sidebar control functions from anywhere inside a `<Sidebar>` tree,
1668
1707
  * including floating panels rendered via `{children}`.
@@ -2381,4 +2420,4 @@ declare function computeResizedRect(dir: ResizeDir, dx: number, dy: number, star
2381
2420
  */
2382
2421
  declare function useColorScheme(): 'dark' | 'light';
2383
2422
 
2384
- export { type BuiltInPanelEvents, type ButtonVariant, type CloseOptions, ConfirmationForm, type ConfirmationFormProps, ContextMenu, type ContextMenuAdapter, type ContextMenuCheckbox, type ContextMenuHandle, type ContextMenuItem, type ContextMenuLabel, type ContextMenuPredefinedMessage, type ContextMenuProps, ContextMenuProvider, type ContextMenuSeparator, type ContextMenuSimpleItem, type ContextMenuSubMenu, DefaultContextMenuAdapter, DockableDesktopProvider, type DockableDesktopProviderProps, type DropPosition, type DropTarget, type FloatAnchor, type FloatingWindow, FormContainerContext, type FormContainerContract, FormContainerProvider, type LayoutGridNode, type LayoutLeafNode, type LayoutNode, LeftPanelRenderer, type ManagedWindowConfig, type MenuItemAction, type MessageFormatter, type ModalOptions, ModalStackRenderer, type OpenPanelOptions, type PanelActions, type PanelContribution, PanelContributionProvider, type PanelDefinition, PanelFloatingWindow, type PanelFloatingWindowManagerHandle, type PanelFloatingWindowProps, type PanelInfo, type PanelInstance, type PanelInstanceId, PanelOverlayRoot, type PanelOverlayRootProps, PanelProvider, PanelRegistry, PanelRegistryClass, type PanelRegistryEntry, type PanelSidebarSection, type PanelState, type PanelTitle, PanelToolbar, ToolbarItem as PanelToolbarItem, type PanelToolbarProps, ToolbarSeparator as PanelToolbarSeparator, type PointerDragConfig, type PredefinedMessageKey, type ResizeConstraints, type ResizeDir, type ResizeRect, type ResolvedToastOptions, RightPanelRenderer, type SearchResult, type SerializedLayout, type ShowContextMenuOptions, type SidePanelOptions, SidePanelRenderer, type SidePanelRendererProps, Sidebar, type SidebarContextValue, type SidebarHandle, type SidebarHeaderAction, type SidebarHeaderActionButton, type SidebarHeaderActionCustom, type SidebarProps, type SidebarTab, type SidebarTabContextValue, type SplitDirection, type SplitOrientation, type StyleClasses, type TaskbarVisibility, type ToastAdapter, ToastContainer, type ToastContainerProps, type ToastFunction, type ToastOptions, type ToastPosition, type ToastPromiseMessages, type ToastType, Toolbar, type ToolbarActionItem, ToolbarButton, type ToolbarButtonProps, ToolbarCenter, type ToolbarContextValue, type ToolbarGroupEntry, type ToolbarGroupItem, type ToolbarGroupSubItem, type ToolbarHandle, type ToolbarItem$1 as ToolbarItem, type ToolbarPosition, type ToolbarProps, ToolbarProvider, type ToolbarRadioItem, ToolbarSearchInput, type ToolbarSearchInputProps, type ToolbarSeparator$1 as ToolbarSeparator, ToolbarSpacer, ToolbarToggle, type ToolbarToggleItem, type ToolbarToggleProps, type ToolbarVariant, type UsePanelFloatingWindowReturn, type WindowActions, WindowManager, type WindowManagerProps, WindowManagerProvider, type WindowManagerProviderProps, type WindowState, WorkspaceClient, type WorkspaceClientConfig, computeResizedRect, defaultPredefinedMessages, formatLabel, isSerializable, sidebarSectionToTab, startPointerDrag, toast, useActivePanelContribution, useColorScheme, useFormContainer, useFormatMessage, useMergedSidebarTabs, useMergedToolbarItems, usePanelActions, usePanelContext, usePanelContextMenu, usePanelContribution, usePanelFloatingWindow, usePanelFloatingWindowManager, usePanelId, usePanelSize, usePanelState, usePredefinedMessages, useRegistry, useShowContextMenu, useSidebar, useSidebarTab, useStyleClasses, useToolbar, useWindowManagerActions, useWindowManagerState };
2423
+ export { type BuiltInPanelEvents, type ButtonVariant, type CloseOptions, ConfirmationForm, type ConfirmationFormProps, ContextMenu, type ContextMenuAdapter, type ContextMenuCheckbox, type ContextMenuHandle, type ContextMenuItem, type ContextMenuLabel, type ContextMenuPredefinedMessage, type ContextMenuProps, ContextMenuProvider, type ContextMenuSeparator, type ContextMenuSimpleItem, type ContextMenuSubMenu, DefaultContextMenuAdapter, DockableDesktopProvider, type DockableDesktopProviderProps, type DropPosition, type DropTarget, type FloatAnchor, type FloatingWindow, FormContainerContext, type FormContainerContract, FormContainerProvider, type LayoutGridNode, type LayoutLeafNode, type LayoutNode, LeftPanelRenderer, type ManagedWindowConfig, type MenuItemAction, type MessageFormatter, type ModalOptions, ModalStackRenderer, type OpenPanelOptions, type PanelActions, type PanelContribution, PanelContributionProvider, type PanelDefinition, PanelFloatingWindow, type PanelFloatingWindowManagerHandle, type PanelFloatingWindowProps, type PanelInfo, type PanelInstance, type PanelInstanceId, PanelOverlayRoot, type PanelOverlayRootProps, PanelProvider, PanelRegistry, PanelRegistryClass, type PanelRegistryEntry, type PanelSidebarSection, type PanelState, type PanelTitle, PanelToolbar, ToolbarItem as PanelToolbarItem, type PanelToolbarProps, ToolbarSeparator as PanelToolbarSeparator, type PointerDragConfig, type PredefinedMessageKey, type ResizeConstraints, type ResizeDir, type ResizeRect, type ResolvedToastOptions, RightPanelRenderer, type SearchResult, SecondarySidebar, type SecondarySidebarProps, type SerializedLayout, type ShowContextMenuOptions, type SidePanelOptions, SidePanelRenderer, type SidePanelRendererProps, Sidebar, type SidebarContextValue, type SidebarHandle, type SidebarHeaderAction, type SidebarHeaderActionButton, type SidebarHeaderActionCustom, type SidebarProps, type SidebarTab, type SidebarTabContextValue, type SplitDirection, type SplitOrientation, type StyleClasses, type TaskbarVisibility, type ToastAdapter, ToastContainer, type ToastContainerProps, type ToastFunction, type ToastOptions, type ToastPosition, type ToastPromiseMessages, type ToastType, Toolbar, type ToolbarActionItem, ToolbarButton, type ToolbarButtonProps, ToolbarCenter, type ToolbarContextValue, type ToolbarGroupEntry, type ToolbarGroupItem, type ToolbarGroupSubItem, type ToolbarHandle, type ToolbarItem$1 as ToolbarItem, type ToolbarPosition, type ToolbarProps, ToolbarProvider, type ToolbarRadioItem, ToolbarSearchInput, type ToolbarSearchInputProps, type ToolbarSeparator$1 as ToolbarSeparator, ToolbarSpacer, ToolbarToggle, type ToolbarToggleItem, type ToolbarToggleProps, type ToolbarVariant, type UsePanelFloatingWindowReturn, type WindowActions, WindowManager, type WindowManagerProps, WindowManagerProvider, type WindowManagerProviderProps, type WindowState, WorkspaceClient, type WorkspaceClientConfig, computeResizedRect, defaultPredefinedMessages, formatLabel, isSerializable, sidebarSectionToTab, startPointerDrag, toast, useActivePanelContribution, useColorScheme, useFormContainer, useFormatMessage, useMergedSidebarTabs, useMergedToolbarItems, usePanelActions, usePanelContext, usePanelContextMenu, usePanelContribution, usePanelFloatingWindow, usePanelFloatingWindowManager, usePanelId, usePanelSize, usePanelState, usePredefinedMessages, useRegistry, useShowContextMenu, useSidebar, useSidebarTab, useStyleClasses, useToolbar, useWindowManagerActions, useWindowManagerState };
package/dist/index.d.ts CHANGED
@@ -1321,6 +1321,12 @@ interface SidePanelOptions {
1321
1321
  icon?: React$1.ReactNode;
1322
1322
  /** Specific CSS width (e.g. 300, '40%') for the panel container. */
1323
1323
  width?: number | string;
1324
+ /**
1325
+ * CSS padding for the panel body content — a number (px) or any CSS value/shorthand
1326
+ * (e.g. `'10px 16px'`). Default: `0` (edge-to-edge) — pass `10` to restore the pre-v6.0.0
1327
+ * default, or any value your content needs.
1328
+ */
1329
+ bodyPadding?: number | string;
1324
1330
  }
1325
1331
  /** Configuration options applied when opening a Modal. */
1326
1332
  interface ModalOptions {
@@ -1332,6 +1338,12 @@ interface ModalOptions {
1332
1338
  size?: 'small' | 'medium' | 'large' | 'fullscreen' | 'auto';
1333
1339
  /** If false, hides the modal backdrop exit click and header close button. */
1334
1340
  closable?: boolean;
1341
+ /**
1342
+ * CSS padding for the modal body content — a number (px) or any CSS value/shorthand
1343
+ * (e.g. `'10px 16px'`). Default: `0` (edge-to-edge) — pass `10` to restore the pre-v6.0.0
1344
+ * default, or any value your content needs.
1345
+ */
1346
+ bodyPadding?: number | string;
1335
1347
  }
1336
1348
  /**
1337
1349
  * Represents a rendered instance of a panel or modal in the layout.
@@ -1625,6 +1637,12 @@ interface SidebarProps {
1625
1637
  * @param onOpen - call to (re-)select this tab
1626
1638
  */
1627
1639
  renderHeader?: (tab: SidebarTab, onClose: () => void, onOpen: () => void) => React$1.ReactNode;
1640
+ /**
1641
+ * @internal Marks this instance as a secondary sidebar for context-broadcasting
1642
+ * purposes. Set automatically by `<SecondarySidebar>` — do not pass this directly.
1643
+ * Default: false
1644
+ */
1645
+ isSecondary?: boolean;
1628
1646
  /** Main workspace content rendered alongside the sidebar. */
1629
1647
  children?: React$1.ReactNode;
1630
1648
  }
@@ -1651,6 +1669,10 @@ interface SidebarContextValue {
1651
1669
  openTab: (tabId: string) => void;
1652
1670
  closeDrawer: () => void;
1653
1671
  getActiveTab: () => string | null;
1672
+ /** Which side this Sidebar instance is rendering on. */
1673
+ position: 'left' | 'right';
1674
+ /** True if this instance is a `<SecondarySidebar>`, false for a primary `<Sidebar>`. */
1675
+ isSecondary: boolean;
1654
1676
  }
1655
1677
  /**
1656
1678
  * Value provided by `useSidebarTab()`. Available only to components rendered
@@ -1663,6 +1685,23 @@ interface SidebarTabContextValue {
1663
1685
  openTab: (tabId: string) => void;
1664
1686
  }
1665
1687
  declare const Sidebar: React$1.ForwardRefExoticComponent<SidebarProps & React$1.RefAttributes<SidebarHandle>>;
1688
+ /**
1689
+ * Props for {@link SecondarySidebar} — identical to {@link SidebarProps} except
1690
+ * `position` (always the opposite of whatever primary `Sidebar` it's nested inside)
1691
+ * and `isSecondary` (always `true`) are not settable.
1692
+ */
1693
+ type SecondarySidebarProps = Omit<SidebarProps, 'position' | 'isSecondary'>;
1694
+ /**
1695
+ * A second, independent `Sidebar` instance for the opposite edge of the screen —
1696
+ * same component, same behavior, zero forked code. Must be rendered inside a
1697
+ * primary `Sidebar`'s `children`; automatically takes whichever side that primary
1698
+ * isn't using, so the side is never specified directly.
1699
+ *
1700
+ * @throws Error if rendered without an ancestor `Sidebar`, or nested inside another
1701
+ * `SecondarySidebar` — this library supports exactly one primary and one secondary,
1702
+ * nothing deeper.
1703
+ */
1704
+ declare const SecondarySidebar: React$1.ForwardRefExoticComponent<SecondarySidebarProps & React$1.RefAttributes<SidebarHandle>>;
1666
1705
  /**
1667
1706
  * Returns sidebar control functions from anywhere inside a `<Sidebar>` tree,
1668
1707
  * including floating panels rendered via `{children}`.
@@ -2381,4 +2420,4 @@ declare function computeResizedRect(dir: ResizeDir, dx: number, dy: number, star
2381
2420
  */
2382
2421
  declare function useColorScheme(): 'dark' | 'light';
2383
2422
 
2384
- export { type BuiltInPanelEvents, type ButtonVariant, type CloseOptions, ConfirmationForm, type ConfirmationFormProps, ContextMenu, type ContextMenuAdapter, type ContextMenuCheckbox, type ContextMenuHandle, type ContextMenuItem, type ContextMenuLabel, type ContextMenuPredefinedMessage, type ContextMenuProps, ContextMenuProvider, type ContextMenuSeparator, type ContextMenuSimpleItem, type ContextMenuSubMenu, DefaultContextMenuAdapter, DockableDesktopProvider, type DockableDesktopProviderProps, type DropPosition, type DropTarget, type FloatAnchor, type FloatingWindow, FormContainerContext, type FormContainerContract, FormContainerProvider, type LayoutGridNode, type LayoutLeafNode, type LayoutNode, LeftPanelRenderer, type ManagedWindowConfig, type MenuItemAction, type MessageFormatter, type ModalOptions, ModalStackRenderer, type OpenPanelOptions, type PanelActions, type PanelContribution, PanelContributionProvider, type PanelDefinition, PanelFloatingWindow, type PanelFloatingWindowManagerHandle, type PanelFloatingWindowProps, type PanelInfo, type PanelInstance, type PanelInstanceId, PanelOverlayRoot, type PanelOverlayRootProps, PanelProvider, PanelRegistry, PanelRegistryClass, type PanelRegistryEntry, type PanelSidebarSection, type PanelState, type PanelTitle, PanelToolbar, ToolbarItem as PanelToolbarItem, type PanelToolbarProps, ToolbarSeparator as PanelToolbarSeparator, type PointerDragConfig, type PredefinedMessageKey, type ResizeConstraints, type ResizeDir, type ResizeRect, type ResolvedToastOptions, RightPanelRenderer, type SearchResult, type SerializedLayout, type ShowContextMenuOptions, type SidePanelOptions, SidePanelRenderer, type SidePanelRendererProps, Sidebar, type SidebarContextValue, type SidebarHandle, type SidebarHeaderAction, type SidebarHeaderActionButton, type SidebarHeaderActionCustom, type SidebarProps, type SidebarTab, type SidebarTabContextValue, type SplitDirection, type SplitOrientation, type StyleClasses, type TaskbarVisibility, type ToastAdapter, ToastContainer, type ToastContainerProps, type ToastFunction, type ToastOptions, type ToastPosition, type ToastPromiseMessages, type ToastType, Toolbar, type ToolbarActionItem, ToolbarButton, type ToolbarButtonProps, ToolbarCenter, type ToolbarContextValue, type ToolbarGroupEntry, type ToolbarGroupItem, type ToolbarGroupSubItem, type ToolbarHandle, type ToolbarItem$1 as ToolbarItem, type ToolbarPosition, type ToolbarProps, ToolbarProvider, type ToolbarRadioItem, ToolbarSearchInput, type ToolbarSearchInputProps, type ToolbarSeparator$1 as ToolbarSeparator, ToolbarSpacer, ToolbarToggle, type ToolbarToggleItem, type ToolbarToggleProps, type ToolbarVariant, type UsePanelFloatingWindowReturn, type WindowActions, WindowManager, type WindowManagerProps, WindowManagerProvider, type WindowManagerProviderProps, type WindowState, WorkspaceClient, type WorkspaceClientConfig, computeResizedRect, defaultPredefinedMessages, formatLabel, isSerializable, sidebarSectionToTab, startPointerDrag, toast, useActivePanelContribution, useColorScheme, useFormContainer, useFormatMessage, useMergedSidebarTabs, useMergedToolbarItems, usePanelActions, usePanelContext, usePanelContextMenu, usePanelContribution, usePanelFloatingWindow, usePanelFloatingWindowManager, usePanelId, usePanelSize, usePanelState, usePredefinedMessages, useRegistry, useShowContextMenu, useSidebar, useSidebarTab, useStyleClasses, useToolbar, useWindowManagerActions, useWindowManagerState };
2423
+ export { type BuiltInPanelEvents, type ButtonVariant, type CloseOptions, ConfirmationForm, type ConfirmationFormProps, ContextMenu, type ContextMenuAdapter, type ContextMenuCheckbox, type ContextMenuHandle, type ContextMenuItem, type ContextMenuLabel, type ContextMenuPredefinedMessage, type ContextMenuProps, ContextMenuProvider, type ContextMenuSeparator, type ContextMenuSimpleItem, type ContextMenuSubMenu, DefaultContextMenuAdapter, DockableDesktopProvider, type DockableDesktopProviderProps, type DropPosition, type DropTarget, type FloatAnchor, type FloatingWindow, FormContainerContext, type FormContainerContract, FormContainerProvider, type LayoutGridNode, type LayoutLeafNode, type LayoutNode, LeftPanelRenderer, type ManagedWindowConfig, type MenuItemAction, type MessageFormatter, type ModalOptions, ModalStackRenderer, type OpenPanelOptions, type PanelActions, type PanelContribution, PanelContributionProvider, type PanelDefinition, PanelFloatingWindow, type PanelFloatingWindowManagerHandle, type PanelFloatingWindowProps, type PanelInfo, type PanelInstance, type PanelInstanceId, PanelOverlayRoot, type PanelOverlayRootProps, PanelProvider, PanelRegistry, PanelRegistryClass, type PanelRegistryEntry, type PanelSidebarSection, type PanelState, type PanelTitle, PanelToolbar, ToolbarItem as PanelToolbarItem, type PanelToolbarProps, ToolbarSeparator as PanelToolbarSeparator, type PointerDragConfig, type PredefinedMessageKey, type ResizeConstraints, type ResizeDir, type ResizeRect, type ResolvedToastOptions, RightPanelRenderer, type SearchResult, SecondarySidebar, type SecondarySidebarProps, type SerializedLayout, type ShowContextMenuOptions, type SidePanelOptions, SidePanelRenderer, type SidePanelRendererProps, Sidebar, type SidebarContextValue, type SidebarHandle, type SidebarHeaderAction, type SidebarHeaderActionButton, type SidebarHeaderActionCustom, type SidebarProps, type SidebarTab, type SidebarTabContextValue, type SplitDirection, type SplitOrientation, type StyleClasses, type TaskbarVisibility, type ToastAdapter, ToastContainer, type ToastContainerProps, type ToastFunction, type ToastOptions, type ToastPosition, type ToastPromiseMessages, type ToastType, Toolbar, type ToolbarActionItem, ToolbarButton, type ToolbarButtonProps, ToolbarCenter, type ToolbarContextValue, type ToolbarGroupEntry, type ToolbarGroupItem, type ToolbarGroupSubItem, type ToolbarHandle, type ToolbarItem$1 as ToolbarItem, type ToolbarPosition, type ToolbarProps, ToolbarProvider, type ToolbarRadioItem, ToolbarSearchInput, type ToolbarSearchInputProps, type ToolbarSeparator$1 as ToolbarSeparator, ToolbarSpacer, ToolbarToggle, type ToolbarToggleItem, type ToolbarToggleProps, type ToolbarVariant, type UsePanelFloatingWindowReturn, type WindowActions, WindowManager, type WindowManagerProps, WindowManagerProvider, type WindowManagerProviderProps, type WindowState, WorkspaceClient, type WorkspaceClientConfig, computeResizedRect, defaultPredefinedMessages, formatLabel, isSerializable, sidebarSectionToTab, startPointerDrag, toast, useActivePanelContribution, useColorScheme, useFormContainer, useFormatMessage, useMergedSidebarTabs, useMergedToolbarItems, usePanelActions, usePanelContext, usePanelContextMenu, usePanelContribution, usePanelFloatingWindow, usePanelFloatingWindowManager, usePanelId, usePanelSize, usePanelState, usePredefinedMessages, useRegistry, useShowContextMenu, useSidebar, useSidebarTab, useStyleClasses, useToolbar, useWindowManagerActions, useWindowManagerState };