@opencxh/domain 1.86.0 → 1.88.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/platform/sdk.d.ts +5 -0
- package/dist/platform/ui.d.ts +18 -0
- package/package.json +1 -1
package/dist/platform/sdk.d.ts
CHANGED
|
@@ -37,6 +37,11 @@ export interface InternalSDK<LocalServices extends ServiceMap = {}, TranslationK
|
|
|
37
37
|
open(key: ModalKeys, props?: any): void;
|
|
38
38
|
close(key: ModalKeys): void;
|
|
39
39
|
};
|
|
40
|
+
docks: {
|
|
41
|
+
open(key: string, props?: any): void;
|
|
42
|
+
close(key: string): void;
|
|
43
|
+
minimize(key: string, minimized?: boolean): void;
|
|
44
|
+
};
|
|
40
45
|
settings: {
|
|
41
46
|
open(initialPageId?: string): void;
|
|
42
47
|
close(): void;
|
package/dist/platform/ui.d.ts
CHANGED
|
@@ -9,6 +9,24 @@ export interface ModalConfig {
|
|
|
9
9
|
props?: Record<string, any>;
|
|
10
10
|
hideHeader?: boolean;
|
|
11
11
|
}
|
|
12
|
+
/**
|
|
13
|
+
* A dock is a persistent, non-blocking floating window (Gmail-style docked
|
|
14
|
+
* compose). Unlike a modal it has no backdrop, stays put while the user keeps
|
|
15
|
+
* working, and several can coexist — so it lives on its own runtime channel
|
|
16
|
+
* (`ui.docks$`), independent of the single `activeModal$` slot. That
|
|
17
|
+
* independence is what lets an incoming call (which opens the `session` modal)
|
|
18
|
+
* cover a dock without destroying it.
|
|
19
|
+
*/
|
|
20
|
+
export interface DockConfig {
|
|
21
|
+
id: string;
|
|
22
|
+
displayName: string;
|
|
23
|
+
resource: string;
|
|
24
|
+
size?: 'sm' | 'md' | 'lg' | 'xl';
|
|
25
|
+
props?: Record<string, any>;
|
|
26
|
+
hideHeader?: boolean;
|
|
27
|
+
/** Rendered collapsed to just its title bar when true. */
|
|
28
|
+
minimized?: boolean;
|
|
29
|
+
}
|
|
12
30
|
/**
|
|
13
31
|
* Settings page registered by an app. Shown in the shell's settings overlay.
|
|
14
32
|
*
|