@omnia/fx-models 8.0.181-dev → 8.0.182-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/package.json +1 -1
- package/richtext-editor-extensions/SubscriptExtension.d.ts +10 -0
- package/richtext-editor-extensions/SubscriptExtension.js +2 -0
- package/richtext-editor-extensions/SuperscriptExtension.d.ts +10 -0
- package/richtext-editor-extensions/SuperscriptExtension.js +2 -0
- package/richtext-editor-extensions/index.d.ts +2 -0
- package/richtext-editor-extensions/index.js +2 -0
package/package.json
CHANGED
@@ -0,0 +1,10 @@
|
|
1
|
+
import { ToolbarProperties } from "./ToolbarProperties";
|
2
|
+
import { EditorCommand } from "./EditorCommand";
|
3
|
+
import { EditorMenuBar } from "./EditorMenuBar";
|
4
|
+
export interface SubscriptCommand extends EditorCommand {
|
5
|
+
subscript?: () => void;
|
6
|
+
}
|
7
|
+
export interface SubscriptMenuBar extends EditorMenuBar<SubscriptCommand> {
|
8
|
+
}
|
9
|
+
export interface SubscriptToolbarProperties extends ToolbarProperties<SubscriptCommand> {
|
10
|
+
}
|
@@ -0,0 +1,10 @@
|
|
1
|
+
import { ToolbarProperties } from "./ToolbarProperties";
|
2
|
+
import { EditorCommand } from "./EditorCommand";
|
3
|
+
import { EditorMenuBar } from "./EditorMenuBar";
|
4
|
+
export interface SuperscriptCommand extends EditorCommand {
|
5
|
+
superscript?: () => void;
|
6
|
+
}
|
7
|
+
export interface SuperscriptMenuBar extends EditorMenuBar<SuperscriptCommand> {
|
8
|
+
}
|
9
|
+
export interface SuperscriptToolbarProperties extends ToolbarProperties<SuperscriptCommand> {
|
10
|
+
}
|
@@ -35,3 +35,5 @@ tslib_1.__exportStar(require("./EmoticonPickerExtension"), exports);
|
|
35
35
|
tslib_1.__exportStar(require("./AnimatedGifExtension"), exports);
|
36
36
|
tslib_1.__exportStar(require("./HashTagExtension"), exports);
|
37
37
|
tslib_1.__exportStar(require("./TextCompletionExtension"), exports);
|
38
|
+
tslib_1.__exportStar(require("./SubscriptExtension"), exports);
|
39
|
+
tslib_1.__exportStar(require("./SuperscriptExtension"), exports);
|