react-dockable-desktop 6.0.1 → 6.1.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
@@ -2053,6 +2053,28 @@ declare function ToastContainer({ position, maxVisible, defaultDuration, default
2053
2053
 
2054
2054
  /** Edge of a panel to which a `PanelToolbar` attaches. */
2055
2055
  type ToolbarPosition = 'top' | 'bottom' | 'left' | 'right';
2056
+ /**
2057
+ * Which of a docked widget's axes span the host panel instead of carrying a fixed size.
2058
+ *
2059
+ * A docked widget normally pins one end of each axis and carries an explicit size. A stretched
2060
+ * axis pins **both** ends and carries no size at all, so the widget tracks the panel as it
2061
+ * resizes — with no `ResizeObserver` and no JS, because CSS already does exactly this.
2062
+ *
2063
+ * - `'width'` — spans the panel's inline axis; height still fixed. A status or timeline strip.
2064
+ * - `'height'` — spans the block axis; width still fixed. A full-height side column.
2065
+ * - `'both'` — fills the panel, the inner-widget equivalent of maximizing a floating window.
2066
+ */
2067
+ type Stretch = 'width' | 'height' | 'both';
2068
+ /**
2069
+ * Where a docked widget sits: which corner it is anchored to, plus which axes (if any) span the
2070
+ * panel. Reported as a unit because a single gesture can change both at once — dropping a
2071
+ * full-width bottom strip onto the left edge flips the anchor *and* the stretched axis together,
2072
+ * and reporting those separately would expose a state that is never actually valid.
2073
+ */
2074
+ interface PanelFloatPlacement {
2075
+ anchor: FloatAnchor;
2076
+ stretch: Stretch | null;
2077
+ }
2056
2078
  /**
2057
2079
  * Configuration for a window spawned imperatively via `usePanelFloatingWindowManager().open()`.
2058
2080
  * @see usePanelFloatingWindowManager
@@ -2070,6 +2092,12 @@ interface ManagedWindowConfig {
2070
2092
  width?: number;
2071
2093
  /** Initial height in pixels. */
2072
2094
  height?: number;
2095
+ /**
2096
+ * Which axes span the panel instead of carrying a fixed size. `width`/`height` above still apply
2097
+ * to any axis that isn't spanning, and are what a spanning axis returns to when released.
2098
+ * @see Stretch
2099
+ */
2100
+ stretch?: Stretch;
2073
2101
  }
2074
2102
  /** Props for `<PanelOverlayRoot>`. */
2075
2103
  interface PanelOverlayRootProps {
@@ -2214,16 +2242,53 @@ interface PanelFloatingWindowProps {
2214
2242
  onClose(): void;
2215
2243
  /** Corner of the panel to dock to on first render. @see FloatAnchor */
2216
2244
  defaultAnchor: FloatAnchor;
2217
- /** Initial width in pixels. */
2245
+ /** Initial width in pixels. Ignored on an axis that starts stretched, and restored to when that
2246
+ * axis is later released. */
2218
2247
  defaultWidth: number;
2219
- /** Initial height in pixels. */
2248
+ /** Initial height in pixels. Ignored on an axis that starts stretched, and restored to when that
2249
+ * axis is later released. */
2220
2250
  defaultHeight: number;
2251
+ /**
2252
+ * Which axes span the panel on first render. Uncontrolled: gestures update it from here.
2253
+ * @see Stretch
2254
+ */
2255
+ defaultStretch?: Stretch;
2256
+ /**
2257
+ * Controlled stretch state. When provided — **including as `null`** — the caller is the single
2258
+ * source of truth: gestures report through {@link PanelFloatingWindowProps.onPlacementChange}
2259
+ * instead of updating internally, and the caller must echo the new value back. Omit entirely
2260
+ * (`undefined`) for uncontrolled behaviour, matching `ToolbarToggleItem.active` and
2261
+ * `Sidebar.activeTabId`.
2262
+ */
2263
+ stretch?: Stretch | null;
2264
+ /**
2265
+ * Called whenever a gesture changes where the widget sits — a stretched axis released, a
2266
+ * re-dock, or a detach. Reports anchor and stretch **together**, because one gesture can change
2267
+ * both at once and reporting them separately would surface a state that is never valid.
2268
+ *
2269
+ * This is also the only way to persist placement: the library serialises nothing about inner
2270
+ * widgets, so store what you receive here and feed it back via `defaultAnchor`/`stretch`.
2271
+ */
2272
+ onPlacementChange?: (placement: PanelFloatPlacement) => void;
2273
+ /**
2274
+ * Whether this widget may span the panel at all. `false` disables resize-to-stretch snapping,
2275
+ * for content that only makes sense at a bounded size. Default `true`.
2276
+ */
2277
+ stretchable?: boolean;
2221
2278
  children?: React$1.ReactNode;
2222
2279
  }
2223
2280
  /**
2224
2281
  * Declarative floating window anchored inside a `PanelOverlayRoot`.
2225
- * Supports 8-direction resize, drag-to-free, and drag-to-dock at any corner.
2226
- * Multiple windows docked to the same corner stack vertically with animated offsets.
2282
+ *
2283
+ * Docks to any corner, drags free of it, and drops back onto one. Windows sharing a corner stack
2284
+ * along the block axis with animated offsets. An axis can also **span the panel** instead of
2285
+ * carrying a fixed size, so the window tracks the panel as it resizes — see
2286
+ * {@link PanelFloatingWindowProps.defaultStretch} and {@link Stretch}.
2287
+ *
2288
+ * Resize handles follow what is actually movable: a free-floating window is pinned by nothing and
2289
+ * offers all eight, while a docked one offers only its free edges — plus both ends of any spanning
2290
+ * axis, either of which releases it.
2291
+ *
2227
2292
  * @example
2228
2293
  * const info = usePanelFloatingWindow();
2229
2294
  * <PanelFloatingWindow
@@ -2233,6 +2298,18 @@ interface PanelFloatingWindowProps {
2233
2298
  * >
2234
2299
  * <LayerInfoContent />
2235
2300
  * </PanelFloatingWindow>
2301
+ *
2302
+ * @example
2303
+ * // A full-width status strip along the bottom, tracking the panel's width.
2304
+ * // defaultHeight still applies; defaultWidth is what the inline axis returns to if released.
2305
+ * <PanelFloatingWindow
2306
+ * id="timeline" title="Timeline"
2307
+ * open onClose={close}
2308
+ * defaultAnchor="bottom-left" defaultStretch="width"
2309
+ * defaultWidth={240} defaultHeight={120}
2310
+ * >
2311
+ * <TimelineContent />
2312
+ * </PanelFloatingWindow>
2236
2313
  */
2237
2314
  declare function PanelFloatingWindow(props: PanelFloatingWindowProps): React$1.ReactElement | null;
2238
2315
  /** Return type of `usePanelFloatingWindow`. @see usePanelFloatingWindow */
@@ -2271,13 +2348,18 @@ interface PanelFloatingWindowManagerHandle {
2271
2348
  }
2272
2349
  /**
2273
2350
  * Imperative hook for spawning N named floating windows at runtime from data or event handlers.
2274
- * All windows share z-ordering, drag, and corner-docking infrastructure of the `PanelOverlayRoot`.
2351
+ * All windows share z-ordering, drag, and corner-docking infrastructure of the `PanelOverlayRoot`,
2352
+ * and accept the same placement options — including {@link ManagedWindowConfig.stretch} to span an
2353
+ * axis of the panel.
2275
2354
  *
2276
2355
  * Must be called inside a **descendant** of `PanelOverlayRoot`, not in the component that renders the root.
2277
2356
  * @returns A stable `PanelFloatingWindowManagerHandle`.
2278
2357
  * @example
2279
2358
  * const manager = usePanelFloatingWindowManager();
2280
2359
  * manager.open('feature-42', { title: 'Feature 42', content: <FeatureDetail id={42} />, anchor: 'top-right' });
2360
+ *
2361
+ * // A full-width strip along the bottom edge:
2362
+ * manager.open('timeline', { title: 'Timeline', content: <Timeline />, anchor: 'bottom-left', stretch: 'width', height: 120 });
2281
2363
  */
2282
2364
  declare function usePanelFloatingWindowManager(): PanelFloatingWindowManagerHandle;
2283
2365
 
@@ -2451,4 +2533,4 @@ declare function computeResizedRect(dir: ResizeDir, dx: number, dy: number, star
2451
2533
  */
2452
2534
  declare function useColorScheme(): 'dark' | 'light';
2453
2535
 
2454
- 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 };
2536
+ 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, type PanelFloatPlacement, 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 Stretch, 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
@@ -2053,6 +2053,28 @@ declare function ToastContainer({ position, maxVisible, defaultDuration, default
2053
2053
 
2054
2054
  /** Edge of a panel to which a `PanelToolbar` attaches. */
2055
2055
  type ToolbarPosition = 'top' | 'bottom' | 'left' | 'right';
2056
+ /**
2057
+ * Which of a docked widget's axes span the host panel instead of carrying a fixed size.
2058
+ *
2059
+ * A docked widget normally pins one end of each axis and carries an explicit size. A stretched
2060
+ * axis pins **both** ends and carries no size at all, so the widget tracks the panel as it
2061
+ * resizes — with no `ResizeObserver` and no JS, because CSS already does exactly this.
2062
+ *
2063
+ * - `'width'` — spans the panel's inline axis; height still fixed. A status or timeline strip.
2064
+ * - `'height'` — spans the block axis; width still fixed. A full-height side column.
2065
+ * - `'both'` — fills the panel, the inner-widget equivalent of maximizing a floating window.
2066
+ */
2067
+ type Stretch = 'width' | 'height' | 'both';
2068
+ /**
2069
+ * Where a docked widget sits: which corner it is anchored to, plus which axes (if any) span the
2070
+ * panel. Reported as a unit because a single gesture can change both at once — dropping a
2071
+ * full-width bottom strip onto the left edge flips the anchor *and* the stretched axis together,
2072
+ * and reporting those separately would expose a state that is never actually valid.
2073
+ */
2074
+ interface PanelFloatPlacement {
2075
+ anchor: FloatAnchor;
2076
+ stretch: Stretch | null;
2077
+ }
2056
2078
  /**
2057
2079
  * Configuration for a window spawned imperatively via `usePanelFloatingWindowManager().open()`.
2058
2080
  * @see usePanelFloatingWindowManager
@@ -2070,6 +2092,12 @@ interface ManagedWindowConfig {
2070
2092
  width?: number;
2071
2093
  /** Initial height in pixels. */
2072
2094
  height?: number;
2095
+ /**
2096
+ * Which axes span the panel instead of carrying a fixed size. `width`/`height` above still apply
2097
+ * to any axis that isn't spanning, and are what a spanning axis returns to when released.
2098
+ * @see Stretch
2099
+ */
2100
+ stretch?: Stretch;
2073
2101
  }
2074
2102
  /** Props for `<PanelOverlayRoot>`. */
2075
2103
  interface PanelOverlayRootProps {
@@ -2214,16 +2242,53 @@ interface PanelFloatingWindowProps {
2214
2242
  onClose(): void;
2215
2243
  /** Corner of the panel to dock to on first render. @see FloatAnchor */
2216
2244
  defaultAnchor: FloatAnchor;
2217
- /** Initial width in pixels. */
2245
+ /** Initial width in pixels. Ignored on an axis that starts stretched, and restored to when that
2246
+ * axis is later released. */
2218
2247
  defaultWidth: number;
2219
- /** Initial height in pixels. */
2248
+ /** Initial height in pixels. Ignored on an axis that starts stretched, and restored to when that
2249
+ * axis is later released. */
2220
2250
  defaultHeight: number;
2251
+ /**
2252
+ * Which axes span the panel on first render. Uncontrolled: gestures update it from here.
2253
+ * @see Stretch
2254
+ */
2255
+ defaultStretch?: Stretch;
2256
+ /**
2257
+ * Controlled stretch state. When provided — **including as `null`** — the caller is the single
2258
+ * source of truth: gestures report through {@link PanelFloatingWindowProps.onPlacementChange}
2259
+ * instead of updating internally, and the caller must echo the new value back. Omit entirely
2260
+ * (`undefined`) for uncontrolled behaviour, matching `ToolbarToggleItem.active` and
2261
+ * `Sidebar.activeTabId`.
2262
+ */
2263
+ stretch?: Stretch | null;
2264
+ /**
2265
+ * Called whenever a gesture changes where the widget sits — a stretched axis released, a
2266
+ * re-dock, or a detach. Reports anchor and stretch **together**, because one gesture can change
2267
+ * both at once and reporting them separately would surface a state that is never valid.
2268
+ *
2269
+ * This is also the only way to persist placement: the library serialises nothing about inner
2270
+ * widgets, so store what you receive here and feed it back via `defaultAnchor`/`stretch`.
2271
+ */
2272
+ onPlacementChange?: (placement: PanelFloatPlacement) => void;
2273
+ /**
2274
+ * Whether this widget may span the panel at all. `false` disables resize-to-stretch snapping,
2275
+ * for content that only makes sense at a bounded size. Default `true`.
2276
+ */
2277
+ stretchable?: boolean;
2221
2278
  children?: React$1.ReactNode;
2222
2279
  }
2223
2280
  /**
2224
2281
  * Declarative floating window anchored inside a `PanelOverlayRoot`.
2225
- * Supports 8-direction resize, drag-to-free, and drag-to-dock at any corner.
2226
- * Multiple windows docked to the same corner stack vertically with animated offsets.
2282
+ *
2283
+ * Docks to any corner, drags free of it, and drops back onto one. Windows sharing a corner stack
2284
+ * along the block axis with animated offsets. An axis can also **span the panel** instead of
2285
+ * carrying a fixed size, so the window tracks the panel as it resizes — see
2286
+ * {@link PanelFloatingWindowProps.defaultStretch} and {@link Stretch}.
2287
+ *
2288
+ * Resize handles follow what is actually movable: a free-floating window is pinned by nothing and
2289
+ * offers all eight, while a docked one offers only its free edges — plus both ends of any spanning
2290
+ * axis, either of which releases it.
2291
+ *
2227
2292
  * @example
2228
2293
  * const info = usePanelFloatingWindow();
2229
2294
  * <PanelFloatingWindow
@@ -2233,6 +2298,18 @@ interface PanelFloatingWindowProps {
2233
2298
  * >
2234
2299
  * <LayerInfoContent />
2235
2300
  * </PanelFloatingWindow>
2301
+ *
2302
+ * @example
2303
+ * // A full-width status strip along the bottom, tracking the panel's width.
2304
+ * // defaultHeight still applies; defaultWidth is what the inline axis returns to if released.
2305
+ * <PanelFloatingWindow
2306
+ * id="timeline" title="Timeline"
2307
+ * open onClose={close}
2308
+ * defaultAnchor="bottom-left" defaultStretch="width"
2309
+ * defaultWidth={240} defaultHeight={120}
2310
+ * >
2311
+ * <TimelineContent />
2312
+ * </PanelFloatingWindow>
2236
2313
  */
2237
2314
  declare function PanelFloatingWindow(props: PanelFloatingWindowProps): React$1.ReactElement | null;
2238
2315
  /** Return type of `usePanelFloatingWindow`. @see usePanelFloatingWindow */
@@ -2271,13 +2348,18 @@ interface PanelFloatingWindowManagerHandle {
2271
2348
  }
2272
2349
  /**
2273
2350
  * Imperative hook for spawning N named floating windows at runtime from data or event handlers.
2274
- * All windows share z-ordering, drag, and corner-docking infrastructure of the `PanelOverlayRoot`.
2351
+ * All windows share z-ordering, drag, and corner-docking infrastructure of the `PanelOverlayRoot`,
2352
+ * and accept the same placement options — including {@link ManagedWindowConfig.stretch} to span an
2353
+ * axis of the panel.
2275
2354
  *
2276
2355
  * Must be called inside a **descendant** of `PanelOverlayRoot`, not in the component that renders the root.
2277
2356
  * @returns A stable `PanelFloatingWindowManagerHandle`.
2278
2357
  * @example
2279
2358
  * const manager = usePanelFloatingWindowManager();
2280
2359
  * manager.open('feature-42', { title: 'Feature 42', content: <FeatureDetail id={42} />, anchor: 'top-right' });
2360
+ *
2361
+ * // A full-width strip along the bottom edge:
2362
+ * manager.open('timeline', { title: 'Timeline', content: <Timeline />, anchor: 'bottom-left', stretch: 'width', height: 120 });
2281
2363
  */
2282
2364
  declare function usePanelFloatingWindowManager(): PanelFloatingWindowManagerHandle;
2283
2365
 
@@ -2451,4 +2533,4 @@ declare function computeResizedRect(dir: ResizeDir, dx: number, dy: number, star
2451
2533
  */
2452
2534
  declare function useColorScheme(): 'dark' | 'light';
2453
2535
 
2454
- 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 };
2536
+ 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, type PanelFloatPlacement, 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 Stretch, 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 };