@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 +1 -0
- package/Exposes.js +1 -0
- package/LinkHandler/linktype/DefaultLinkType.js +1 -1
- package/LinkHandler/linktype/DocumentLinkType.js +1 -1
- package/TargetingProperty.js +1 -1
- package/apps/AppInstanceRollup.js +1 -1
- package/internal-do-not-import-from-here/shared/models/Guid.js +1 -1
- package/oxide/TreeView.d.ts +10 -0
- package/oxide/TreeView.js +2 -0
- package/oxide/index.d.ts +1 -0
- package/oxide/index.js +4 -0
- package/package.json +1 -1
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
|
//************************************************************************************ */
|
package/TargetingProperty.js
CHANGED
|
@@ -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";
|
package/oxide/index.d.ts
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from "./TreeView";
|
package/oxide/index.js
ADDED