@omnia/fx-sp-models 8.0.53-vnext → 8.0.54-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/FilterEngine.d.ts +2 -0
- package/Site.d.ts +8 -0
- package/index.d.ts +0 -1
- package/index.js +0 -1
- package/package.json +2 -2
- package/styles/TermSetPropertyStyles.d.ts +3 -0
- package/TermSetPropertyValue.d.ts +0 -18
- package/TermSetPropertyValue.js +0 -12
package/FilterEngine.d.ts
CHANGED
|
@@ -12,6 +12,8 @@ export interface TaxonomyFilterEngineProperty extends BaseFilterEngineProperty {
|
|
|
12
12
|
iconButtonsWidth: number;
|
|
13
13
|
valueSortOrder: FilterEngineTaxonomyValueSortOrder;
|
|
14
14
|
defaultValueType: DefaultValueType;
|
|
15
|
+
showDeprecatedTerms: boolean;
|
|
16
|
+
showChipsPropertyLabel: boolean;
|
|
15
17
|
}
|
|
16
18
|
export declare enum FilterEngineTaxonomyValueSortOrder {
|
|
17
19
|
TermsetOrder = 0,
|
package/Site.d.ts
CHANGED
|
@@ -35,3 +35,11 @@ export interface M365GroupNamingPolicyValidationResult {
|
|
|
35
35
|
reservedAliasValidationResult: ReservedSiteAliasValidationResult;
|
|
36
36
|
isValid: boolean;
|
|
37
37
|
}
|
|
38
|
+
export interface SPSiteCollectionAdminInfo {
|
|
39
|
+
title?: string;
|
|
40
|
+
description?: string;
|
|
41
|
+
url?: string;
|
|
42
|
+
lcid?: number;
|
|
43
|
+
timezoneId?: number;
|
|
44
|
+
siteCollectionAdmins?: string[];
|
|
45
|
+
}
|
package/index.d.ts
CHANGED
|
@@ -15,6 +15,5 @@ export * from "./ReservedSiteAliasValidation";
|
|
|
15
15
|
export * from "./OrderByField";
|
|
16
16
|
export * from "./SharePointBusinessProfileRelativePathValue";
|
|
17
17
|
export * from "./FilterEngine";
|
|
18
|
-
export * from "./TermSetPropertyValue";
|
|
19
18
|
export * from "./SharePointUserProfilePropertyValue";
|
|
20
19
|
export * from "./Feature";
|
package/index.js
CHANGED
|
@@ -19,6 +19,5 @@ tslib_1.__exportStar(require("./ReservedSiteAliasValidation"), exports);
|
|
|
19
19
|
tslib_1.__exportStar(require("./OrderByField"), exports);
|
|
20
20
|
tslib_1.__exportStar(require("./SharePointBusinessProfileRelativePathValue"), exports);
|
|
21
21
|
tslib_1.__exportStar(require("./FilterEngine"), exports);
|
|
22
|
-
tslib_1.__exportStar(require("./TermSetPropertyValue"), exports);
|
|
23
22
|
tslib_1.__exportStar(require("./SharePointUserProfilePropertyValue"), exports);
|
|
24
23
|
tslib_1.__exportStar(require("./Feature"), exports);
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@omnia/fx-sp-models",
|
|
3
3
|
"license": "MIT",
|
|
4
|
-
"version": "8.0.
|
|
4
|
+
"version": "8.0.54-dev",
|
|
5
5
|
"description": "Provide Omnia Fx Sharepoint Models Stuffs.",
|
|
6
6
|
"scripts": {
|
|
7
7
|
"test": "echo \"Error: no test specified\" && exit 1"
|
|
@@ -19,7 +19,7 @@
|
|
|
19
19
|
],
|
|
20
20
|
"author": "Precio Fishbone",
|
|
21
21
|
"dependencies": {
|
|
22
|
-
"@omnia/fx-models": "8.0.
|
|
22
|
+
"@omnia/fx-models": "8.0.54-dev"
|
|
23
23
|
},
|
|
24
24
|
"typings": "./index.d.ts",
|
|
25
25
|
"bugs": {
|
|
@@ -3,4 +3,7 @@ import { types } from "typestyle";
|
|
|
3
3
|
export declare const TermSetPropertyStyles: {
|
|
4
4
|
itemwrapper?: (theming: ITheming) => types.NestedCSSProperties;
|
|
5
5
|
chip?: types.NestedCSSProperties;
|
|
6
|
+
itemHeader(inline?: boolean): types.NestedCSSProperties;
|
|
7
|
+
item: types.NestedCSSProperties;
|
|
8
|
+
inline: types.NestedCSSProperties;
|
|
6
9
|
};
|
|
@@ -1,18 +0,0 @@
|
|
|
1
|
-
import { Guid, GuidValue, LockStatusExcludeChildren, PropertyDisplaySettingsBase, PropertyLockStatusType, PropertyValue } from "@omnia/fx-models";
|
|
2
|
-
export type SharePointTermSetPropertySetupSettings = {
|
|
3
|
-
termSetId: GuidValue;
|
|
4
|
-
};
|
|
5
|
-
export type SharePointTermSetPropertyDisplaySettings = {
|
|
6
|
-
locks?: PropertyLockStatusType<LockStatusExcludeChildren<Omit<SharePointTermSetPropertyDisplaySettings, "locks">, "label">>;
|
|
7
|
-
textOnly?: boolean;
|
|
8
|
-
} & PropertyDisplaySettingsBase;
|
|
9
|
-
export type SharePointTermSetPropertyEditorSettings = {
|
|
10
|
-
locks?: PropertyLockStatusType<Omit<SharePointTermSetPropertyEditorSettings, "locks">>;
|
|
11
|
-
multiple?: boolean;
|
|
12
|
-
required?: boolean;
|
|
13
|
-
};
|
|
14
|
-
export declare const sharePointTermSetPropertyDefinitionId: Guid;
|
|
15
|
-
export declare class SharePointTermSetPropertyValue extends PropertyValue {
|
|
16
|
-
termIds: Guid[];
|
|
17
|
-
constructor(termIds: Guid[]);
|
|
18
|
-
}
|
package/TermSetPropertyValue.js
DELETED
|
@@ -1,12 +0,0 @@
|
|
|
1
|
-
"use strict";
|
|
2
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.SharePointTermSetPropertyValue = exports.sharePointTermSetPropertyDefinitionId = void 0;
|
|
4
|
-
const fx_models_1 = require("@omnia/fx-models");
|
|
5
|
-
exports.sharePointTermSetPropertyDefinitionId = new fx_models_1.Guid("73b6db0e-27f2-45d6-b57d-1f18db45f182");
|
|
6
|
-
class SharePointTermSetPropertyValue extends fx_models_1.PropertyValue {
|
|
7
|
-
constructor(termIds) {
|
|
8
|
-
super();
|
|
9
|
-
this.termIds = termIds;
|
|
10
|
-
}
|
|
11
|
-
}
|
|
12
|
-
exports.SharePointTermSetPropertyValue = SharePointTermSetPropertyValue;
|