@omnia/fx-models 8.0.13-vnext → 8.0.16-vnext

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/Exposes.d.ts CHANGED
@@ -113,6 +113,7 @@ export * from "./filterengine";
113
113
  export * from "@omnia/fx-models/internal-do-not-import-from-here/velcron/core/models";
114
114
  export * from "./auth";
115
115
  export * from "./sidepanel";
116
+ export * from "./componentproptypes";
116
117
  export * from "./oxide";
117
118
  export * from "./FilePicker";
118
119
  export * from "./FileIdentifier";
package/Exposes.js CHANGED
@@ -125,6 +125,7 @@ tslib_1.__exportStar(require("./filterengine"), exports);
125
125
  tslib_1.__exportStar(require("@omnia/fx-models/internal-do-not-import-from-here/velcron/core/models"), exports);
126
126
  tslib_1.__exportStar(require("./auth"), exports);
127
127
  tslib_1.__exportStar(require("./sidepanel"), exports);
128
+ tslib_1.__exportStar(require("./componentproptypes"), exports);
128
129
  tslib_1.__exportStar(require("./oxide"), exports);
129
130
  //************************************************************************************ */
130
131
  // End of folder exports
@@ -12,5 +12,5 @@ class DefaultLinkType {
12
12
  this.id = DefaultLinkType.id;
13
13
  }
14
14
  }
15
- exports.DefaultLinkType = DefaultLinkType;
16
15
  DefaultLinkType.id = "72da0174-ad58-47da-90e7-ca03e3ecb651";
16
+ exports.DefaultLinkType = DefaultLinkType;
@@ -14,5 +14,5 @@ class DocumentLinkType {
14
14
  this.id = DocumentLinkType.id;
15
15
  }
16
16
  }
17
- exports.DocumentLinkType = DocumentLinkType;
18
17
  DocumentLinkType.id = "0d8fceb2-fdc9-4133-88be-0868a1f89601";
18
+ exports.DocumentLinkType = DocumentLinkType;
package/ManifestIds.d.ts CHANGED
@@ -71,7 +71,7 @@ export declare class OmniaResourceManifests {
71
71
  static get MicrosoftTeamsSDKLoader(): Guid;
72
72
  static get TeamsSSOScript(): Guid;
73
73
  static get MediaPickerProviderRegistration(): Guid;
74
- static get FxUxRichTextEditorPublic(): Guid;
74
+ static get FxUxRichTextEditorCore(): Guid;
75
75
  static get ActionApi(): Guid;
76
76
  static get ActionHandlerEvents(): Guid;
77
77
  static get LikeTopicIdProviderRegistration(): Guid;
package/ManifestIds.js CHANGED
@@ -244,7 +244,7 @@ class OmniaResourceManifests {
244
244
  static get MediaPickerProviderRegistration() {
245
245
  return new models_1.Guid("8955f9b8-c9fa-4e46-8a44-7d79162ab7f5");
246
246
  }
247
- static get FxUxRichTextEditorPublic() {
247
+ static get FxUxRichTextEditorCore() {
248
248
  return new models_1.Guid("b46f7161-e941-4240-b573-a9cd83e9d132");
249
249
  }
250
250
  static get ActionApi() {
@@ -6,7 +6,6 @@ exports.TargetingPropertyType = void 0;
6
6
  * */
7
7
  class TargetingPropertyType {
8
8
  }
9
- exports.TargetingPropertyType = TargetingPropertyType;
10
9
  /// <summary>
11
10
  /// Use maskable values
12
11
  /// </summary>
@@ -14,3 +13,4 @@ TargetingPropertyType.groupMembership = 1;
14
13
  TargetingPropertyType.userProfileProperty = 2;
15
14
  TargetingPropertyType.azureAdProperty = 3;
16
15
  TargetingPropertyType.groupIdentity = 4;
16
+ exports.TargetingPropertyType = TargetingPropertyType;
@@ -3,7 +3,6 @@ Object.defineProperty(exports, "__esModule", { value: true });
3
3
  exports.AppInstanceRollupCardViewTypes = exports.AppInstanceRollupConstants = void 0;
4
4
  class AppInstanceRollupConstants {
5
5
  }
6
- exports.AppInstanceRollupConstants = AppInstanceRollupConstants;
7
6
  AppInstanceRollupConstants.AppInstanceProperties = {
8
7
  Title: "title_df6808d8-7bda-4c53-8906-2d7dec058289",
9
8
  TitleAndLink: "titleAndLink_93c3fdc6-1ca4-4242-b873-7de964aad588",
@@ -11,6 +10,7 @@ AppInstanceRollupConstants.AppInstanceProperties = {
11
10
  Description: "description_d4d77ca6-1ca4-479e-94f0-532b9ca52ed4",
12
11
  Image: "image_44a905b6-48e3-47e4-9690-376a4e855cf0"
13
12
  };
13
+ exports.AppInstanceRollupConstants = AppInstanceRollupConstants;
14
14
  var AppInstanceRollupCardViewTypes;
15
15
  (function (AppInstanceRollupCardViewTypes) {
16
16
  AppInstanceRollupCardViewTypes[AppInstanceRollupCardViewTypes["BackgroundImage"] = 1] = "BackgroundImage";
@@ -0,0 +1,4 @@
1
+ export interface ThemeableComponentProps {
2
+ colorSchemaType?: any;
3
+ container?: any;
4
+ }
@@ -0,0 +1,2 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
@@ -0,0 +1 @@
1
+ export * from "./ThemeableComponents";
@@ -0,0 +1,4 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ const tslib_1 = require("tslib");
4
+ tslib_1.__exportStar(require("./ThemeableComponents"), exports);
@@ -47,5 +47,5 @@ class Guid {
47
47
  return this.value.toLowerCase();
48
48
  }
49
49
  }
50
- exports.Guid = Guid;
51
50
  Guid._empty = "00000000-0000-0000-0000-000000000000";
51
+ exports.Guid = Guid;
@@ -0,0 +1,10 @@
1
+ import { IIcon } from "@omnia/fx-models";
2
+ export interface TreeViewItem<TValue = any> {
3
+ id: string;
4
+ value: TValue;
5
+ title: string;
6
+ icon: IIcon;
7
+ active: boolean;
8
+ expanded: boolean;
9
+ children: TreeViewItem[];
10
+ }
@@ -0,0 +1,2 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
package/oxide/index.d.ts CHANGED
@@ -1 +1 @@
1
- export * from "./Componentprops";
1
+ export * from "./TreeView";
package/oxide/index.js CHANGED
@@ -1,4 +1,4 @@
1
1
  "use strict";
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
3
  const tslib_1 = require("tslib");
4
- tslib_1.__exportStar(require("./Componentprops"), exports);
4
+ tslib_1.__exportStar(require("./TreeView"), exports);
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@omnia/fx-models",
3
3
  "license": "MIT",
4
- "version": "8.0.13-vnext",
4
+ "version": "8.0.16-vnext",
5
5
  "description": "Provide Omnia Fx Models Stuffs.",
6
6
  "scripts": {
7
7
  "test": "echo \"Error: no test specified\" && exit 1"
@@ -3,7 +3,7 @@ import { EditorProps } from "prosemirror-view";
3
3
  import { GuidValue } from "@omnia/fx-models/internal-do-not-import-from-here/shared/models";
4
4
  import { IMark, INodeExtension, IMarkExtension, IPlugin } from "./EditorExtension";
5
5
  export interface TipTapEditor extends TipTapEditorProperties, TipTapEditorMethods {
6
- omniaRTFId: GuidValue;
6
+ omniaRTFId?: GuidValue;
7
7
  }
8
8
  export interface TipTapEditorProperties {
9
9
  content?: object | string;
@@ -29,13 +29,12 @@ export interface TipTapEditorProperties {
29
29
  onPaste?: (e: any) => void;
30
30
  }
31
31
  export interface TipTapEditorMethods {
32
- setContent(content: string, emitUpdate?: boolean, parseOptions?: ParseOptions): any;
33
- clearContent(emitUpdate?: boolean): any;
34
- setOptions(options: object): any;
35
- registerPlugin(plugin: Plugin): any;
36
- getJSON(emitUpdate?: boolean): any;
37
- getHTML(): string;
38
- focus(): any;
39
- blur(): any;
40
- destroy(): any;
32
+ setContent?(content: string, emitUpdate?: boolean, parseOptions?: ParseOptions): any;
33
+ clearContent?(emitUpdate?: boolean): any;
34
+ setOptions?(options: object): any;
35
+ getJSON?(emitUpdate?: boolean): any;
36
+ getHTML?(): string;
37
+ focus?(): any;
38
+ blur?(): any;
39
+ destroy?(): any;
41
40
  }
@@ -13,6 +13,7 @@ export declare const LayoutEditorCanvasStyles: {
13
13
  drawerPanel: NestedCSSPropertiesExtends;
14
14
  developerDialog: NestedCSSPropertiesExtends;
15
15
  drawerToolbar: NestedCSSPropertiesExtends;
16
+ drawerToolbarWrapper: NestedCSSPropertiesExtends;
16
17
  settingsWrapper: NestedCSSPropertiesExtends;
17
18
  closeButton: NestedCSSPropertiesExtends;
18
19
  rightResizer: (backgroundColor: string) => NestedCSSPropertiesExtends;
@@ -1,18 +0,0 @@
1
- import { ColorSchemaTypes } from "@omnia/fx-models/internal-do-not-import-from-here/shared/models";
2
- import { PropType } from "vue";
3
- export declare const ThemeableComponentProps: {
4
- colorSchemaType: {
5
- type: PropType<ColorSchemaTypes>;
6
- required: boolean;
7
- };
8
- container: {
9
- type: PropType<boolean>;
10
- required: boolean;
11
- };
12
- };
13
- export declare const ComponentStylingProps: {
14
- class: {
15
- type: PropType<String | String[]>;
16
- required: boolean;
17
- };
18
- };
@@ -1,26 +0,0 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.ComponentStylingProps = exports.ThemeableComponentProps = void 0;
4
- function definePropObjectType() {
5
- return Object;
6
- }
7
- exports.ThemeableComponentProps = {
8
- colorSchemaType: {
9
- type: definePropObjectType(),
10
- required: false
11
- },
12
- container: {
13
- type: definePropObjectType(),
14
- required: false
15
- },
16
- };
17
- exports.ComponentStylingProps = {
18
- // style: {
19
- // type: String,
20
- // required: false
21
- // },
22
- class: {
23
- type: definePropObjectType(),
24
- required: false
25
- },
26
- };