@opencxh/domain 1.99.0 → 1.100.1
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/platform/ui.d.ts +6 -0
- package/package.json +1 -1
package/dist/platform/ui.d.ts
CHANGED
|
@@ -25,6 +25,12 @@ export interface DockConfig {
|
|
|
25
25
|
size?: 'sm' | 'md' | 'lg' | 'xl';
|
|
26
26
|
props?: Record<string, any>;
|
|
27
27
|
hideHeader?: boolean;
|
|
28
|
+
/**
|
|
29
|
+
* Optional federated resource rendered inside the generic header, right of
|
|
30
|
+
* the title and before the minimize/close controls — e.g. a mail composer's
|
|
31
|
+
* "from"-account dropdown. Receives the dock's `props` + `dockControls`.
|
|
32
|
+
*/
|
|
33
|
+
headerAccessory?: string;
|
|
28
34
|
/** Rendered collapsed to just its title bar when true. */
|
|
29
35
|
minimized?: boolean;
|
|
30
36
|
/**
|