@opencxh/domain 1.101.0 → 1.112.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/ui.d.ts +7 -0
- package/package.json +1 -1
package/dist/platform/ui.d.ts
CHANGED
|
@@ -124,6 +124,13 @@ export interface ExtensionConfig {
|
|
|
124
124
|
icon?: string | IconDefinition;
|
|
125
125
|
priority?: number;
|
|
126
126
|
contexts?: ExtensionContext[];
|
|
127
|
+
/**
|
|
128
|
+
* Sit apart from the rest of the slot, ahead of them and separated by a
|
|
129
|
+
* rule. For a tool that is always there and always first — the assistant —
|
|
130
|
+
* rather than one more entry in the list. Declared by the app so the host
|
|
131
|
+
* does not have to know which extension is special.
|
|
132
|
+
*/
|
|
133
|
+
pinned?: boolean;
|
|
127
134
|
conditions?: {
|
|
128
135
|
[key: string]: any;
|
|
129
136
|
};
|