@omnia/fx-models 8.0.529-dev → 8.0.530-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/Enums.d.ts CHANGED
@@ -141,7 +141,8 @@ export declare enum UserPickingType {
141
141
  NoDefault = 0,
142
142
  FixedValue = 1,
143
143
  CurrentUser = 2,
144
- SelectedUser = 3
144
+ SelectedUser = 3,
145
+ CurrentGroup = 4
145
146
  }
146
147
  export declare enum PropertyIndexedType {
147
148
  Text = 1,
package/Enums.js CHANGED
@@ -174,6 +174,7 @@ var UserPickingType;
174
174
  UserPickingType[UserPickingType["FixedValue"] = 1] = "FixedValue";
175
175
  UserPickingType[UserPickingType["CurrentUser"] = 2] = "CurrentUser";
176
176
  UserPickingType[UserPickingType["SelectedUser"] = 3] = "SelectedUser";
177
+ UserPickingType[UserPickingType["CurrentGroup"] = 4] = "CurrentGroup";
177
178
  })(UserPickingType || (exports.UserPickingType = UserPickingType = {}));
178
179
  var PropertyIndexedType;
179
180
  (function (PropertyIndexedType) {
@@ -34,6 +34,7 @@ export interface EditorChromeConfiguration {
34
34
  settings?: {
35
35
  displayResizable?: boolean;
36
36
  zoomable?: boolean;
37
+ backNavigation?: boolean;
37
38
  };
38
39
  active?: boolean;
39
40
  rightDrawer?: {
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@omnia/fx-models",
3
3
  "license": "MIT",
4
- "version": "8.0.529-dev",
4
+ "version": "8.0.530-dev",
5
5
  "description": "Provide Omnia Fx Models Stuffs.",
6
6
  "scripts": {
7
7
  "test": "echo \"Error: no test specified\" && exit 1"
@@ -14,6 +14,7 @@ export type SharePointTermSetPropertyEditorSettings = {
14
14
  required?: boolean;
15
15
  lcid?: number;
16
16
  isEnterpriseKeyword?: boolean;
17
+ includeDeprecated?: boolean;
17
18
  };
18
19
  export declare const sharePointTermSetPropertyDefinitionId: guid;
19
20
  export declare class SharePointTermSetPropertyValue extends PropertyValue {