@omnia/fx-models 8.0.15-vnext → 8.0.17-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
@@ -114,6 +114,7 @@ export * from "@omnia/fx-models/internal-do-not-import-from-here/velcron/core/mo
114
114
  export * from "./auth";
115
115
  export * from "./sidepanel";
116
116
  export * from "./componentproptypes";
117
+ export * from "./oxide";
117
118
  export * from "./FilePicker";
118
119
  export * from "./FileIdentifier";
119
120
  export * from "./UserAgent";
package/Exposes.js CHANGED
@@ -126,6 +126,7 @@ tslib_1.__exportStar(require("@omnia/fx-models/internal-do-not-import-from-here/
126
126
  tslib_1.__exportStar(require("./auth"), exports);
127
127
  tslib_1.__exportStar(require("./sidepanel"), exports);
128
128
  tslib_1.__exportStar(require("./componentproptypes"), exports);
129
+ tslib_1.__exportStar(require("./oxide"), exports);
129
130
  //************************************************************************************ */
130
131
  // End of folder exports
131
132
  //************************************************************************************ */
@@ -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;
@@ -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";
@@ -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 });
@@ -0,0 +1 @@
1
+ export * from "./TreeView";
package/oxide/index.js ADDED
@@ -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("./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.15-vnext",
4
+ "version": "8.0.17-vnext",
5
5
  "description": "Provide Omnia Fx Models Stuffs.",
6
6
  "scripts": {
7
7
  "test": "echo \"Error: no test specified\" && exit 1"