@omnia/fx-models 8.0.491-dev → 8.0.492-dev
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/LayoutDefinition.d.ts +3 -2
- package/package.json +1 -1
package/LayoutDefinition.d.ts
CHANGED
@@ -109,8 +109,8 @@ export interface ILayoutCanvasJourneyMenuDefinitionBuilder<T> {
|
|
109
109
|
So other extensions etc can inject between
|
110
110
|
*/
|
111
111
|
add: (journey: ILayoutCanvasJourneyDefinition) => ILayoutCanvasJourneyMenuDefinitionBuilder<T>;
|
112
|
-
remove: (journey: guid) =>
|
113
|
-
update: (journey: guid) => ILayoutCanvasJourneyMenuItemDefinitionBuilder<T
|
112
|
+
remove: (journey: guid) => ILayoutCanvasJourneyMenuDefinitionBuilder<T>;
|
113
|
+
update: (journey: guid) => ILayoutCanvasJourneyMenuItemDefinitionBuilder<ILayoutCanvasJourneyMenuDefinitionBuilder<T>>;
|
114
114
|
done: () => T;
|
115
115
|
}
|
116
116
|
export interface ILayoutCanvasJourneyMenuItemDefinitionBuilder<T> {
|
@@ -141,6 +141,7 @@ export interface ILayoutCanvasJourneyDefinition extends ILayoutCanvasItemDefinit
|
|
141
141
|
beforeCreate: IMessageBusTopicSubscription<ILayoutCanvasJourneyDefinition>;
|
142
142
|
created: IMessageBusTopicSubscription<ILayoutCanvasJourneyInstance>;
|
143
143
|
};
|
144
|
+
slots: ILayoutCanvasJourneyMenuItemDefinitionSlots;
|
144
145
|
}
|
145
146
|
export interface ILayoutCanvasDefinitionBuilder {
|
146
147
|
panels: () => ILayoutCanvasSettingsPanel;
|