@omnia/fx-models 8.0.540-dev → 8.0.542-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.
|
@@ -1,10 +1,11 @@
|
|
|
1
|
+
import { HttpConfig } from "@omnia/fx-models/internal-do-not-import-from-here/shared";
|
|
1
2
|
export interface VelcronActionHooks<TBefore = any, TAfter = any> {
|
|
2
3
|
beforeHandler?: (args: TBefore) => TBefore;
|
|
3
4
|
afterHandler?: (args: TBefore) => TAfter;
|
|
4
5
|
}
|
|
5
6
|
export interface HttpGetBeforeActionHookArgs {
|
|
6
7
|
url: string;
|
|
7
|
-
|
|
8
|
+
config: HttpConfig;
|
|
8
9
|
}
|
|
9
10
|
export interface HttpGetAfterActionHookArgs {
|
|
10
11
|
json: string;
|
package/package.json
CHANGED
|
@@ -12,10 +12,11 @@ export interface HeadingCommand extends EditorCommand {
|
|
|
12
12
|
}
|
|
13
13
|
export interface HeadingMenuBar extends EditorMenuBar<HeadingCommand> {
|
|
14
14
|
}
|
|
15
|
-
export interface HeadingToolbarProperties extends ToolbarProperties<HeadingCommand>,
|
|
15
|
+
export interface HeadingToolbarProperties extends ToolbarProperties<HeadingCommand>, TextStyleToolbarSettings {
|
|
16
16
|
}
|
|
17
|
-
export interface
|
|
17
|
+
export interface TextStyleToolbarSettings extends RichTextEditorExtensionSettings {
|
|
18
18
|
headings: Array<guid>;
|
|
19
|
+
textStyles: Array<guid>;
|
|
19
20
|
}
|
|
20
21
|
export interface HeadingEditorExtensionConfiguration extends HeadingToolbarProperties {
|
|
21
22
|
}
|