lumiverse-spindle-types 0.6.26 → 0.6.27
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/dom.d.ts +6 -0
- package/package.json +1 -1
package/dist/dom.d.ts
CHANGED
|
@@ -341,6 +341,12 @@ export interface SpindleDockPanelHandle {
|
|
|
341
341
|
expand(): void;
|
|
342
342
|
isCollapsed(): boolean;
|
|
343
343
|
setTitle(title: string): void;
|
|
344
|
+
/** Update the dock's current size, clamped to its configured bounds. */
|
|
345
|
+
setSize(size: number): void;
|
|
346
|
+
/** Update the dock's minimum size and reconcile its current bounds. */
|
|
347
|
+
setMinSize(size: number): void;
|
|
348
|
+
/** Update the dock's maximum size and reconcile its current bounds. */
|
|
349
|
+
setMaxSize(size: number): void;
|
|
344
350
|
destroy(): void;
|
|
345
351
|
onVisibilityChange(handler: (visible: boolean) => void): () => void;
|
|
346
352
|
}
|