@omnia/fx-models 8.0.529-dev → 8.0.531-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 +2 -1
- package/Enums.js +1 -0
- package/editor-chrome/EditorChromeRegistration.d.ts +1 -0
- package/internal-do-not-import-from-here/shared/models/OxideTypeDefinitions.d.ts +1 -1
- package/internal-do-not-import-from-here/shared/models/OxideTypeDefinitions.js +1 -1
- package/package.json +1 -1
- package/properties/definitions/TermSetPropertyDefinition.d.ts +1 -0
package/Enums.d.ts
CHANGED
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) {
|
|
@@ -11,7 +11,7 @@ export declare const OButtonAffixDefinitions: readonly ["prefix", "subfix"];
|
|
|
11
11
|
export type OButtonAffix = typeof OButtonAffixDefinitions[number];
|
|
12
12
|
export declare const OButtonAffixName = "OButtonAffix";
|
|
13
13
|
/** Dialog */
|
|
14
|
-
export declare const ODialogTypeDefinitions: readonly ["create-cancel", "save-cancel", "confirm", "ok-cancel", "default", "app", "retry"];
|
|
14
|
+
export declare const ODialogTypeDefinitions: readonly ["create-cancel", "save-cancel", "confirm", "ok-cancel", "default", "app", "retry", "container"];
|
|
15
15
|
export type ODialogTypes = typeof ODialogTypeDefinitions[number];
|
|
16
16
|
export declare const ODialogTypesName = "ODialogTypes";
|
|
17
17
|
export declare const ODialogSizeDefinitions: readonly ["x-small", "small", "medium", "large", "full"];
|
|
@@ -10,7 +10,7 @@ exports.OButtonVariantsName = "OButtonVariants";
|
|
|
10
10
|
exports.OButtonAffixDefinitions = ["prefix", "subfix"];
|
|
11
11
|
exports.OButtonAffixName = "OButtonAffix";
|
|
12
12
|
/** Dialog */
|
|
13
|
-
exports.ODialogTypeDefinitions = ["create-cancel", "save-cancel", "confirm", "ok-cancel", "default", "app", "retry"];
|
|
13
|
+
exports.ODialogTypeDefinitions = ["create-cancel", "save-cancel", "confirm", "ok-cancel", "default", "app", "retry", "container"];
|
|
14
14
|
exports.ODialogTypesName = "ODialogTypes";
|
|
15
15
|
exports.ODialogSizeDefinitions = ["x-small", "small", "medium", "large", "full"];
|
|
16
16
|
/**Icon */
|
package/package.json
CHANGED
|
@@ -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 {
|