@omnia/fx-models 8.0.180-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.
@@ -5,9 +5,10 @@ export interface ITypedFilterEngineHandler {
5
5
  showContentOnly: boolean;
6
6
  init(): Promise<void>;
7
7
  generatePropertyOutput: () => BaseFilterEnginePropertyOutput;
8
- getSelectionCount(): number;
8
+ getSelectionCount(rendererManifestId?: string): number;
9
9
  setLatestRefiner(refiner: Refiner<Refinement>): void;
10
10
  resolveData: () => Promise<void>;
11
11
  subscribeChange: () => (fn: () => void) => IMessageBusSubscriptionHandler;
12
- clearAllSelections: () => void;
12
+ clearAllSelections: (rendererManifestId?: string) => void;
13
+ getTitle?: (rendererManifestId?: string) => string;
13
14
  }
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@omnia/fx-models",
3
3
  "license": "MIT",
4
- "version": "8.0.180-dev",
4
+ "version": "8.0.182-dev",
5
5
  "description": "Provide Omnia Fx Models Stuffs.",
6
6
  "scripts": {
7
7
  "test": "echo \"Error: no test specified\" && exit 1"
@@ -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,2 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
@@ -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
+ }
@@ -0,0 +1,2 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
@@ -32,3 +32,5 @@ export * from "./EmoticonPickerExtension";
32
32
  export * from "./AnimatedGifExtension";
33
33
  export * from "./HashTagExtension";
34
34
  export * from "./TextCompletionExtension";
35
+ export * from "./SubscriptExtension";
36
+ export * from "./SuperscriptExtension";
@@ -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);