react-dockable-desktop 2.1.0 → 3.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.cjs +3 -3
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +76 -35
- package/dist/index.d.ts +76 -35
- package/dist/index.js +3 -3
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
package/dist/index.d.cts
CHANGED
|
@@ -628,25 +628,8 @@ interface WindowManagerProviderProps {
|
|
|
628
628
|
windowBodyClass?: string;
|
|
629
629
|
}
|
|
630
630
|
declare const WindowManagerProvider: React$1.FC<WindowManagerProviderProps>;
|
|
631
|
-
|
|
632
|
-
|
|
633
|
-
* The component re-renders whenever the state changes.
|
|
634
|
-
*
|
|
635
|
-
* For imperative reads without a subscription, use {@link WorkspaceClient} methods
|
|
636
|
-
* like `isOpen()` and `getOpenPanelIds()` instead.
|
|
637
|
-
*
|
|
638
|
-
* @group Hooks
|
|
639
|
-
* @returns The current workspace state tree.
|
|
640
|
-
* @throws Error if used outside of a {@link WindowManagerProvider}.
|
|
641
|
-
* @example
|
|
642
|
-
* ```tsx
|
|
643
|
-
* function PanelList() {
|
|
644
|
-
* const { panels } = useWindowManagerState();
|
|
645
|
-
* return <ul>{Object.keys(panels).map(id => <li key={id}>{id}</li>)}</ul>;
|
|
646
|
-
* }
|
|
647
|
-
* ```
|
|
648
|
-
*/
|
|
649
|
-
declare const useWindowManagerState: () => WindowState;
|
|
631
|
+
declare function useWindowManagerState(): WindowState;
|
|
632
|
+
declare function useWindowManagerState<T>(selector: (state: WindowState) => T): T;
|
|
650
633
|
/**
|
|
651
634
|
* React hook to retrieve all layout mutation actions.
|
|
652
635
|
* Returns the public {@link WindowActions} interface.
|
|
@@ -681,7 +664,40 @@ declare const usePanelContext: () => Pick<WindowActions, "publish" | "subscribe"
|
|
|
681
664
|
* React hook to fetch the localizable predefined message map catalog.
|
|
682
665
|
*/
|
|
683
666
|
declare const usePredefinedMessages: () => Record<PredefinedMessageKey, ContextMenuPredefinedMessage>;
|
|
667
|
+
/**
|
|
668
|
+
* React hook to retrieve the panel instance ID for the component currently rendered inside
|
|
669
|
+
* the dockable desktop. Works for docked, floating, modal, and side-panel containers.
|
|
670
|
+
* Opt-in — components that don't need the ID require no changes.
|
|
671
|
+
*
|
|
672
|
+
* @group Hooks
|
|
673
|
+
* @returns The unique panel instance ID string.
|
|
674
|
+
* @example
|
|
675
|
+
* ```tsx
|
|
676
|
+
* function MyPanel() {
|
|
677
|
+
* const panelId = usePanelId();
|
|
678
|
+
* const { closePanel } = useWindowManagerActions();
|
|
679
|
+
* return <button onClick={() => closePanel(panelId)}>Close</button>;
|
|
680
|
+
* }
|
|
681
|
+
* ```
|
|
682
|
+
*/
|
|
683
|
+
declare const usePanelId: () => string;
|
|
684
684
|
|
|
685
|
+
/** Built-in lifecycle events always available on the WorkspaceClient event bus. */
|
|
686
|
+
interface BuiltInPanelEvents {
|
|
687
|
+
'panel:opened': {
|
|
688
|
+
id: string;
|
|
689
|
+
component: string;
|
|
690
|
+
};
|
|
691
|
+
'panel:closed': {
|
|
692
|
+
id: string;
|
|
693
|
+
};
|
|
694
|
+
'panel:minimized': {
|
|
695
|
+
id: string;
|
|
696
|
+
};
|
|
697
|
+
'panel:restored': {
|
|
698
|
+
id: string;
|
|
699
|
+
};
|
|
700
|
+
}
|
|
685
701
|
/** Per-panel definition supplied to WorkspaceClient constructor. */
|
|
686
702
|
interface PanelDefinition {
|
|
687
703
|
component: ComponentType<any>;
|
|
@@ -716,15 +732,12 @@ interface WorkspaceClientConfig {
|
|
|
716
732
|
*
|
|
717
733
|
* @remarks
|
|
718
734
|
* Calls made before the provider mounts are queued and replayed automatically
|
|
719
|
-
* in order once `_connect()` fires.
|
|
720
|
-
*
|
|
721
|
-
*
|
|
722
|
-
*
|
|
723
|
-
* `subscribe()` and `saveLayout()` return values immediately and cannot be
|
|
724
|
-
* queued — they return safe defaults (`() => {}` and `''`) when disconnected.
|
|
735
|
+
* in order once `_connect()` fires. Duplicate `openPanel` calls for the same
|
|
736
|
+
* ID are deduplicated while queued. Subscriptions made before mount are
|
|
737
|
+
* buffered and re-registered on each connect/reconnect.
|
|
725
738
|
*
|
|
726
739
|
* @example
|
|
727
|
-
* const workspace = new WorkspaceClient({
|
|
740
|
+
* const workspace = new WorkspaceClient<MyEvents>({
|
|
728
741
|
* panels: {
|
|
729
742
|
* map: { component: MapPanel },
|
|
730
743
|
* editor: { component: EditorPanel, defaultOptions: { title: 'Code Editor' } },
|
|
@@ -741,7 +754,7 @@ interface WorkspaceClientConfig {
|
|
|
741
754
|
* workspace.openPanel('map-1', 'map');
|
|
742
755
|
* workspace.focusPanel('map-1');
|
|
743
756
|
*/
|
|
744
|
-
declare class WorkspaceClient {
|
|
757
|
+
declare class WorkspaceClient<TUserEvents extends Record<string, unknown> = Record<string, unknown>> {
|
|
745
758
|
/** Scoped panel registry — fully independent from the global singleton. */
|
|
746
759
|
readonly registry: PanelRegistryClass;
|
|
747
760
|
/** Serialised layout to restore on mount, or null to start with an empty canvas. */
|
|
@@ -749,9 +762,14 @@ declare class WorkspaceClient {
|
|
|
749
762
|
/** Non-rendering configuration forwarded to the provider. */
|
|
750
763
|
readonly config: Pick<WorkspaceClientConfig, 'formatMessage' | 'predefinedMessages' | 'dir'>;
|
|
751
764
|
private _actions;
|
|
765
|
+
private _initialized;
|
|
752
766
|
/** Calls queued before _connect() fires — replayed in order on first connect. */
|
|
753
767
|
private _pendingCalls;
|
|
754
|
-
/**
|
|
768
|
+
/** Tracks openPanel IDs in the pending queue to prevent duplicates before mount. */
|
|
769
|
+
private _pendingOpenPanelIds;
|
|
770
|
+
/** Subscriptions buffered before connect — re-registered on every connect/reconnect. */
|
|
771
|
+
private _pendingSubscriptions;
|
|
772
|
+
/** Timer that emits an error if _connect() is never called with pending work. */
|
|
755
773
|
private _disconnectedWarnTimer;
|
|
756
774
|
constructor(config?: WorkspaceClientConfig);
|
|
757
775
|
/** @internal Called by WindowManagerProvider after mount. */
|
|
@@ -760,11 +778,9 @@ declare class WorkspaceClient {
|
|
|
760
778
|
_disconnect(): void;
|
|
761
779
|
/** True while the provider is mounted and React state is accessible. */
|
|
762
780
|
get isConnected(): boolean;
|
|
763
|
-
|
|
764
|
-
* Dispatches a void action immediately if connected, or queues it for replay.
|
|
765
|
-
* In development, warns if the client is still not connected after 1 second.
|
|
766
|
-
*/
|
|
781
|
+
private _startWarnTimer;
|
|
767
782
|
private _dispatch;
|
|
783
|
+
private _subscribeRaw;
|
|
768
784
|
openPanel(...args: Parameters<WindowActions['openPanel']>): void;
|
|
769
785
|
closePanel(id: string): void;
|
|
770
786
|
minimizePanel(id: string): void;
|
|
@@ -785,10 +801,35 @@ declare class WorkspaceClient {
|
|
|
785
801
|
saveLayout(): string;
|
|
786
802
|
loadLayout(json: string): boolean;
|
|
787
803
|
setDirection(dir: 'ltr' | 'rtl'): void;
|
|
788
|
-
publish(event:
|
|
789
|
-
subscribe(event:
|
|
804
|
+
publish<K extends keyof (TUserEvents & BuiltInPanelEvents)>(event: K, data: (TUserEvents & BuiltInPanelEvents)[K]): void;
|
|
805
|
+
subscribe<K extends keyof (TUserEvents & BuiltInPanelEvents)>(event: K, callback: (data: (TUserEvents & BuiltInPanelEvents)[K]) => void): () => void;
|
|
806
|
+
/** Subscribe to panel open events. Fires only for newly created panels. */
|
|
807
|
+
onPanelOpen(callback: (id: string, component: string) => void): () => void;
|
|
808
|
+
/** Subscribe to panel close events. */
|
|
809
|
+
onPanelClose(callback: (id: string) => void): () => void;
|
|
810
|
+
/** Subscribe to panel minimize events. */
|
|
811
|
+
onPanelMinimize(callback: (id: string) => void): () => void;
|
|
812
|
+
/** Subscribe to panel restore events. */
|
|
813
|
+
onPanelRestore(callback: (id: string) => void): () => void;
|
|
790
814
|
}
|
|
791
815
|
|
|
816
|
+
/**
|
|
817
|
+
* Composite provider that wraps both `WindowManagerProvider` and `PanelProvider`
|
|
818
|
+
* in the correct order. Drop-in replacement for manually nesting both providers.
|
|
819
|
+
*
|
|
820
|
+
* `WindowManagerProvider` and `PanelProvider` remain independently exported
|
|
821
|
+
* for cases that require custom nesting or separate configuration.
|
|
822
|
+
*
|
|
823
|
+
* @example
|
|
824
|
+
* ```tsx
|
|
825
|
+
* <DockableDesktopProvider client={workspace}>
|
|
826
|
+
* <WindowManager />
|
|
827
|
+
* <ModalStackRenderer />
|
|
828
|
+
* </DockableDesktopProvider>
|
|
829
|
+
* ```
|
|
830
|
+
*/
|
|
831
|
+
declare const DockableDesktopProvider: React$1.FC<WindowManagerProviderProps>;
|
|
832
|
+
|
|
792
833
|
/**
|
|
793
834
|
* Options used when requesting to close a container.
|
|
794
835
|
*/
|
|
@@ -1078,4 +1119,4 @@ interface SidebarHandle {
|
|
|
1078
1119
|
*/
|
|
1079
1120
|
declare const Sidebar: React$1.ForwardRefExoticComponent<SidebarProps & React$1.RefAttributes<SidebarHandle>>;
|
|
1080
1121
|
|
|
1081
|
-
export { type CloseOptions, ConfirmationForm, type ConfirmationFormProps, type ContextMenuPredefinedMessage, type DropPosition, type DropTarget, type FloatingWindow, FormContainerContext, type FormContainerContract, FormContainerProvider, type LayoutGridNode, type LayoutLeafNode, type LayoutNode, LeftPanelRenderer, type MessageFormatter, type ModalOptions, ModalStackRenderer, type PanelActions, type PanelDefinition, type PanelInfo, type PanelInstance, type PanelInstanceId, PanelProvider, PanelRegistry, PanelRegistryClass, type PanelRegistryEntry, type PanelState, type PanelTitle, type PredefinedMessageKey, RightPanelRenderer, type SidePanelOptions, SidePanelRenderer, type SidePanelRendererProps, Sidebar, type SidebarHandle, type SidebarProps, type SidebarTab, type SplitDirection, type SplitOrientation, type StyleClasses, type WindowActions, WindowManager, WindowManagerProvider, type WindowState, WorkspaceClient, type WorkspaceClientConfig, defaultPredefinedMessages, formatLabel, useFormContainer, useFormatMessage, usePanelActions, usePanelContext, usePanelState, usePredefinedMessages, useRegistry, useStyleClasses, useWindowManagerActions, useWindowManagerState };
|
|
1122
|
+
export { type BuiltInPanelEvents, type CloseOptions, ConfirmationForm, type ConfirmationFormProps, type ContextMenuPredefinedMessage, DockableDesktopProvider, type DropPosition, type DropTarget, type FloatingWindow, FormContainerContext, type FormContainerContract, FormContainerProvider, type LayoutGridNode, type LayoutLeafNode, type LayoutNode, LeftPanelRenderer, type MessageFormatter, type ModalOptions, ModalStackRenderer, type PanelActions, type PanelDefinition, type PanelInfo, type PanelInstance, type PanelInstanceId, PanelProvider, PanelRegistry, PanelRegistryClass, type PanelRegistryEntry, type PanelState, type PanelTitle, type PredefinedMessageKey, RightPanelRenderer, type SidePanelOptions, SidePanelRenderer, type SidePanelRendererProps, Sidebar, type SidebarHandle, type SidebarProps, type SidebarTab, type SplitDirection, type SplitOrientation, type StyleClasses, type WindowActions, WindowManager, WindowManagerProvider, type WindowState, WorkspaceClient, type WorkspaceClientConfig, defaultPredefinedMessages, formatLabel, useFormContainer, useFormatMessage, usePanelActions, usePanelContext, usePanelId, usePanelState, usePredefinedMessages, useRegistry, useStyleClasses, useWindowManagerActions, useWindowManagerState };
|
package/dist/index.d.ts
CHANGED
|
@@ -628,25 +628,8 @@ interface WindowManagerProviderProps {
|
|
|
628
628
|
windowBodyClass?: string;
|
|
629
629
|
}
|
|
630
630
|
declare const WindowManagerProvider: React$1.FC<WindowManagerProviderProps>;
|
|
631
|
-
|
|
632
|
-
|
|
633
|
-
* The component re-renders whenever the state changes.
|
|
634
|
-
*
|
|
635
|
-
* For imperative reads without a subscription, use {@link WorkspaceClient} methods
|
|
636
|
-
* like `isOpen()` and `getOpenPanelIds()` instead.
|
|
637
|
-
*
|
|
638
|
-
* @group Hooks
|
|
639
|
-
* @returns The current workspace state tree.
|
|
640
|
-
* @throws Error if used outside of a {@link WindowManagerProvider}.
|
|
641
|
-
* @example
|
|
642
|
-
* ```tsx
|
|
643
|
-
* function PanelList() {
|
|
644
|
-
* const { panels } = useWindowManagerState();
|
|
645
|
-
* return <ul>{Object.keys(panels).map(id => <li key={id}>{id}</li>)}</ul>;
|
|
646
|
-
* }
|
|
647
|
-
* ```
|
|
648
|
-
*/
|
|
649
|
-
declare const useWindowManagerState: () => WindowState;
|
|
631
|
+
declare function useWindowManagerState(): WindowState;
|
|
632
|
+
declare function useWindowManagerState<T>(selector: (state: WindowState) => T): T;
|
|
650
633
|
/**
|
|
651
634
|
* React hook to retrieve all layout mutation actions.
|
|
652
635
|
* Returns the public {@link WindowActions} interface.
|
|
@@ -681,7 +664,40 @@ declare const usePanelContext: () => Pick<WindowActions, "publish" | "subscribe"
|
|
|
681
664
|
* React hook to fetch the localizable predefined message map catalog.
|
|
682
665
|
*/
|
|
683
666
|
declare const usePredefinedMessages: () => Record<PredefinedMessageKey, ContextMenuPredefinedMessage>;
|
|
667
|
+
/**
|
|
668
|
+
* React hook to retrieve the panel instance ID for the component currently rendered inside
|
|
669
|
+
* the dockable desktop. Works for docked, floating, modal, and side-panel containers.
|
|
670
|
+
* Opt-in — components that don't need the ID require no changes.
|
|
671
|
+
*
|
|
672
|
+
* @group Hooks
|
|
673
|
+
* @returns The unique panel instance ID string.
|
|
674
|
+
* @example
|
|
675
|
+
* ```tsx
|
|
676
|
+
* function MyPanel() {
|
|
677
|
+
* const panelId = usePanelId();
|
|
678
|
+
* const { closePanel } = useWindowManagerActions();
|
|
679
|
+
* return <button onClick={() => closePanel(panelId)}>Close</button>;
|
|
680
|
+
* }
|
|
681
|
+
* ```
|
|
682
|
+
*/
|
|
683
|
+
declare const usePanelId: () => string;
|
|
684
684
|
|
|
685
|
+
/** Built-in lifecycle events always available on the WorkspaceClient event bus. */
|
|
686
|
+
interface BuiltInPanelEvents {
|
|
687
|
+
'panel:opened': {
|
|
688
|
+
id: string;
|
|
689
|
+
component: string;
|
|
690
|
+
};
|
|
691
|
+
'panel:closed': {
|
|
692
|
+
id: string;
|
|
693
|
+
};
|
|
694
|
+
'panel:minimized': {
|
|
695
|
+
id: string;
|
|
696
|
+
};
|
|
697
|
+
'panel:restored': {
|
|
698
|
+
id: string;
|
|
699
|
+
};
|
|
700
|
+
}
|
|
685
701
|
/** Per-panel definition supplied to WorkspaceClient constructor. */
|
|
686
702
|
interface PanelDefinition {
|
|
687
703
|
component: ComponentType<any>;
|
|
@@ -716,15 +732,12 @@ interface WorkspaceClientConfig {
|
|
|
716
732
|
*
|
|
717
733
|
* @remarks
|
|
718
734
|
* Calls made before the provider mounts are queued and replayed automatically
|
|
719
|
-
* in order once `_connect()` fires.
|
|
720
|
-
*
|
|
721
|
-
*
|
|
722
|
-
*
|
|
723
|
-
* `subscribe()` and `saveLayout()` return values immediately and cannot be
|
|
724
|
-
* queued — they return safe defaults (`() => {}` and `''`) when disconnected.
|
|
735
|
+
* in order once `_connect()` fires. Duplicate `openPanel` calls for the same
|
|
736
|
+
* ID are deduplicated while queued. Subscriptions made before mount are
|
|
737
|
+
* buffered and re-registered on each connect/reconnect.
|
|
725
738
|
*
|
|
726
739
|
* @example
|
|
727
|
-
* const workspace = new WorkspaceClient({
|
|
740
|
+
* const workspace = new WorkspaceClient<MyEvents>({
|
|
728
741
|
* panels: {
|
|
729
742
|
* map: { component: MapPanel },
|
|
730
743
|
* editor: { component: EditorPanel, defaultOptions: { title: 'Code Editor' } },
|
|
@@ -741,7 +754,7 @@ interface WorkspaceClientConfig {
|
|
|
741
754
|
* workspace.openPanel('map-1', 'map');
|
|
742
755
|
* workspace.focusPanel('map-1');
|
|
743
756
|
*/
|
|
744
|
-
declare class WorkspaceClient {
|
|
757
|
+
declare class WorkspaceClient<TUserEvents extends Record<string, unknown> = Record<string, unknown>> {
|
|
745
758
|
/** Scoped panel registry — fully independent from the global singleton. */
|
|
746
759
|
readonly registry: PanelRegistryClass;
|
|
747
760
|
/** Serialised layout to restore on mount, or null to start with an empty canvas. */
|
|
@@ -749,9 +762,14 @@ declare class WorkspaceClient {
|
|
|
749
762
|
/** Non-rendering configuration forwarded to the provider. */
|
|
750
763
|
readonly config: Pick<WorkspaceClientConfig, 'formatMessage' | 'predefinedMessages' | 'dir'>;
|
|
751
764
|
private _actions;
|
|
765
|
+
private _initialized;
|
|
752
766
|
/** Calls queued before _connect() fires — replayed in order on first connect. */
|
|
753
767
|
private _pendingCalls;
|
|
754
|
-
/**
|
|
768
|
+
/** Tracks openPanel IDs in the pending queue to prevent duplicates before mount. */
|
|
769
|
+
private _pendingOpenPanelIds;
|
|
770
|
+
/** Subscriptions buffered before connect — re-registered on every connect/reconnect. */
|
|
771
|
+
private _pendingSubscriptions;
|
|
772
|
+
/** Timer that emits an error if _connect() is never called with pending work. */
|
|
755
773
|
private _disconnectedWarnTimer;
|
|
756
774
|
constructor(config?: WorkspaceClientConfig);
|
|
757
775
|
/** @internal Called by WindowManagerProvider after mount. */
|
|
@@ -760,11 +778,9 @@ declare class WorkspaceClient {
|
|
|
760
778
|
_disconnect(): void;
|
|
761
779
|
/** True while the provider is mounted and React state is accessible. */
|
|
762
780
|
get isConnected(): boolean;
|
|
763
|
-
|
|
764
|
-
* Dispatches a void action immediately if connected, or queues it for replay.
|
|
765
|
-
* In development, warns if the client is still not connected after 1 second.
|
|
766
|
-
*/
|
|
781
|
+
private _startWarnTimer;
|
|
767
782
|
private _dispatch;
|
|
783
|
+
private _subscribeRaw;
|
|
768
784
|
openPanel(...args: Parameters<WindowActions['openPanel']>): void;
|
|
769
785
|
closePanel(id: string): void;
|
|
770
786
|
minimizePanel(id: string): void;
|
|
@@ -785,10 +801,35 @@ declare class WorkspaceClient {
|
|
|
785
801
|
saveLayout(): string;
|
|
786
802
|
loadLayout(json: string): boolean;
|
|
787
803
|
setDirection(dir: 'ltr' | 'rtl'): void;
|
|
788
|
-
publish(event:
|
|
789
|
-
subscribe(event:
|
|
804
|
+
publish<K extends keyof (TUserEvents & BuiltInPanelEvents)>(event: K, data: (TUserEvents & BuiltInPanelEvents)[K]): void;
|
|
805
|
+
subscribe<K extends keyof (TUserEvents & BuiltInPanelEvents)>(event: K, callback: (data: (TUserEvents & BuiltInPanelEvents)[K]) => void): () => void;
|
|
806
|
+
/** Subscribe to panel open events. Fires only for newly created panels. */
|
|
807
|
+
onPanelOpen(callback: (id: string, component: string) => void): () => void;
|
|
808
|
+
/** Subscribe to panel close events. */
|
|
809
|
+
onPanelClose(callback: (id: string) => void): () => void;
|
|
810
|
+
/** Subscribe to panel minimize events. */
|
|
811
|
+
onPanelMinimize(callback: (id: string) => void): () => void;
|
|
812
|
+
/** Subscribe to panel restore events. */
|
|
813
|
+
onPanelRestore(callback: (id: string) => void): () => void;
|
|
790
814
|
}
|
|
791
815
|
|
|
816
|
+
/**
|
|
817
|
+
* Composite provider that wraps both `WindowManagerProvider` and `PanelProvider`
|
|
818
|
+
* in the correct order. Drop-in replacement for manually nesting both providers.
|
|
819
|
+
*
|
|
820
|
+
* `WindowManagerProvider` and `PanelProvider` remain independently exported
|
|
821
|
+
* for cases that require custom nesting or separate configuration.
|
|
822
|
+
*
|
|
823
|
+
* @example
|
|
824
|
+
* ```tsx
|
|
825
|
+
* <DockableDesktopProvider client={workspace}>
|
|
826
|
+
* <WindowManager />
|
|
827
|
+
* <ModalStackRenderer />
|
|
828
|
+
* </DockableDesktopProvider>
|
|
829
|
+
* ```
|
|
830
|
+
*/
|
|
831
|
+
declare const DockableDesktopProvider: React$1.FC<WindowManagerProviderProps>;
|
|
832
|
+
|
|
792
833
|
/**
|
|
793
834
|
* Options used when requesting to close a container.
|
|
794
835
|
*/
|
|
@@ -1078,4 +1119,4 @@ interface SidebarHandle {
|
|
|
1078
1119
|
*/
|
|
1079
1120
|
declare const Sidebar: React$1.ForwardRefExoticComponent<SidebarProps & React$1.RefAttributes<SidebarHandle>>;
|
|
1080
1121
|
|
|
1081
|
-
export { type CloseOptions, ConfirmationForm, type ConfirmationFormProps, type ContextMenuPredefinedMessage, type DropPosition, type DropTarget, type FloatingWindow, FormContainerContext, type FormContainerContract, FormContainerProvider, type LayoutGridNode, type LayoutLeafNode, type LayoutNode, LeftPanelRenderer, type MessageFormatter, type ModalOptions, ModalStackRenderer, type PanelActions, type PanelDefinition, type PanelInfo, type PanelInstance, type PanelInstanceId, PanelProvider, PanelRegistry, PanelRegistryClass, type PanelRegistryEntry, type PanelState, type PanelTitle, type PredefinedMessageKey, RightPanelRenderer, type SidePanelOptions, SidePanelRenderer, type SidePanelRendererProps, Sidebar, type SidebarHandle, type SidebarProps, type SidebarTab, type SplitDirection, type SplitOrientation, type StyleClasses, type WindowActions, WindowManager, WindowManagerProvider, type WindowState, WorkspaceClient, type WorkspaceClientConfig, defaultPredefinedMessages, formatLabel, useFormContainer, useFormatMessage, usePanelActions, usePanelContext, usePanelState, usePredefinedMessages, useRegistry, useStyleClasses, useWindowManagerActions, useWindowManagerState };
|
|
1122
|
+
export { type BuiltInPanelEvents, type CloseOptions, ConfirmationForm, type ConfirmationFormProps, type ContextMenuPredefinedMessage, DockableDesktopProvider, type DropPosition, type DropTarget, type FloatingWindow, FormContainerContext, type FormContainerContract, FormContainerProvider, type LayoutGridNode, type LayoutLeafNode, type LayoutNode, LeftPanelRenderer, type MessageFormatter, type ModalOptions, ModalStackRenderer, type PanelActions, type PanelDefinition, type PanelInfo, type PanelInstance, type PanelInstanceId, PanelProvider, PanelRegistry, PanelRegistryClass, type PanelRegistryEntry, type PanelState, type PanelTitle, type PredefinedMessageKey, RightPanelRenderer, type SidePanelOptions, SidePanelRenderer, type SidePanelRendererProps, Sidebar, type SidebarHandle, type SidebarProps, type SidebarTab, type SplitDirection, type SplitOrientation, type StyleClasses, type WindowActions, WindowManager, WindowManagerProvider, type WindowState, WorkspaceClient, type WorkspaceClientConfig, defaultPredefinedMessages, formatLabel, useFormContainer, useFormatMessage, usePanelActions, usePanelContext, usePanelId, usePanelState, usePredefinedMessages, useRegistry, useStyleClasses, useWindowManagerActions, useWindowManagerState };
|