@omnia/fx-models 7.10.0-preview.x → 7.11.0-preview.2
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/Constants.d.ts +5 -0
- package/Constants.js +6 -1
- package/FilterEngineStyles.d.ts +1 -0
- package/Layout.d.ts +2 -0
- package/ManifestIds.d.ts +1 -0
- package/ManifestIds.js +3 -0
- package/PermissionInputSettings.d.ts +1 -0
- package/enterprise-properties/EnterpriseProperty.d.ts +1 -0
- package/enterprise-properties/EnterprisePropertyColumnMapping.d.ts +1 -0
- package/filterbuilder/FilterBuilder.d.ts +3 -3
- package/filterengine/Shared.d.ts +5 -1
- package/filterengine/Shared.js +3 -0
- package/package.json +1 -1
- package/richtext-editor-extensions/HeadingExtension.d.ts +5 -0
- package/ux/AppManagementApi.d.ts +1 -0
- package/ux/WCAGPageCheckerApi.d.ts +21 -0
- package/ux/WCAGPageCheckerApi.js +2 -0
- package/ux/index.d.ts +1 -0
- package/ux/index.js +1 -0
package/Constants.d.ts
CHANGED
|
@@ -167,6 +167,7 @@ export declare const Constants: {
|
|
|
167
167
|
appOnlyReadAccessToSharePointTermstore: Guid;
|
|
168
168
|
provisionOmniaSearchUserData: Guid;
|
|
169
169
|
aiEngine: Guid;
|
|
170
|
+
extraIDAdditionalUserProperties: Guid;
|
|
170
171
|
};
|
|
171
172
|
app: {
|
|
172
173
|
tableName: string;
|
|
@@ -250,4 +251,8 @@ export declare const Constants: {
|
|
|
250
251
|
aiEngine: {
|
|
251
252
|
semanticSearchEnterprisePropertyPrefix: string;
|
|
252
253
|
};
|
|
254
|
+
azFilteringProperties: {
|
|
255
|
+
enterprisePropertyPrefix: string;
|
|
256
|
+
omniaSearchPropertyPrefix: string;
|
|
257
|
+
};
|
|
253
258
|
};
|
package/Constants.js
CHANGED
|
@@ -197,7 +197,8 @@ exports.Constants = {
|
|
|
197
197
|
legacyAppPermissions: new models_1.Guid("36c6fe6a-d79e-4f87-9349-cff9d3e1ab71"),
|
|
198
198
|
appOnlyReadAccessToSharePointTermstore: new models_1.Guid("8095f802-38f0-426c-8d81-22cb22a2a019"),
|
|
199
199
|
provisionOmniaSearchUserData: new models_1.Guid("8fc1325d-4196-406e-8dca-ebb78824896f"),
|
|
200
|
-
aiEngine: new models_1.Guid("f976ad6f-987f-44e6-973a-097d81f73fc7")
|
|
200
|
+
aiEngine: new models_1.Guid("f976ad6f-987f-44e6-973a-097d81f73fc7"),
|
|
201
|
+
extraIDAdditionalUserProperties: new models_1.Guid("8a878ffd-f4d5-4048-9ab1-107bf7109dd9")
|
|
201
202
|
},
|
|
202
203
|
app: {
|
|
203
204
|
tableName: "AppInstances",
|
|
@@ -284,5 +285,9 @@ exports.Constants = {
|
|
|
284
285
|
},
|
|
285
286
|
aiEngine: {
|
|
286
287
|
semanticSearchEnterprisePropertyPrefix: "EnterpriseProperty_"
|
|
288
|
+
},
|
|
289
|
+
azFilteringProperties: {
|
|
290
|
+
enterprisePropertyPrefix: "AZFilteringProp",
|
|
291
|
+
omniaSearchPropertyPrefix: "azFilteringProp"
|
|
287
292
|
}
|
|
288
293
|
};
|
package/FilterEngineStyles.d.ts
CHANGED
|
@@ -16,6 +16,7 @@ export declare const FilterEngineStyles: {
|
|
|
16
16
|
avatarOptionStyle: types.NestedCSSProperties;
|
|
17
17
|
searchBoxDefaultStyle: types.NestedCSSProperties;
|
|
18
18
|
searchValueBoxDefaultStyle: types.NestedCSSProperties;
|
|
19
|
+
searchBoxContrast?: (dark: boolean) => types.NestedCSSProperties;
|
|
19
20
|
treeNodeText: (isSelected: boolean) => types.NestedCSSProperties;
|
|
20
21
|
treeNodeResultCount: (theme: ITheming, isSelected: boolean) => types.NestedCSSProperties;
|
|
21
22
|
dialogContent: (theming: ITheming) => types.NestedCSSProperties;
|
package/Layout.d.ts
CHANGED
|
@@ -137,6 +137,7 @@ export interface SectionSettings extends LayoutItemSettings {
|
|
|
137
137
|
themeDefinition: ThemeDefinition;
|
|
138
138
|
hidden?: boolean;
|
|
139
139
|
disableLazyLoad?: boolean;
|
|
140
|
+
headerLevel?: GuidValue;
|
|
140
141
|
}
|
|
141
142
|
export interface ColumnedSectionSettings extends SectionSettings {
|
|
142
143
|
type: SectionTypes.Column;
|
|
@@ -239,6 +240,7 @@ export interface HeaderItemSettings {
|
|
|
239
240
|
titleSettings: BlockTitleSettings;
|
|
240
241
|
anchorName?: string;
|
|
241
242
|
scrollIntoViewDisabled: boolean;
|
|
243
|
+
headerLevel?: GuidValue;
|
|
242
244
|
}
|
|
243
245
|
export interface SpacingItemSettings {
|
|
244
246
|
paddingRight: number;
|
package/ManifestIds.d.ts
CHANGED
|
@@ -81,6 +81,7 @@ export declare class OmniaResourceManifests {
|
|
|
81
81
|
static get ActionHandlerEvents(): Guid;
|
|
82
82
|
static get LikeTopicIdProviderRegistration(): Guid;
|
|
83
83
|
static get LinkHandlerRegistration(): Guid;
|
|
84
|
+
static get WCAGPageCheckerContext(): Guid;
|
|
84
85
|
static get EnterpriseGlossaryRegistrationApi(): Guid;
|
|
85
86
|
static get AppProvisioningValidatorApi(): Guid;
|
|
86
87
|
static get SidePanelRegistrationApi(): Guid;
|
package/ManifestIds.js
CHANGED
|
@@ -271,6 +271,9 @@ class OmniaResourceManifests {
|
|
|
271
271
|
static get LinkHandlerRegistration() {
|
|
272
272
|
return new models_1.Guid("34cf3a27-5b97-4555-8695-a92e8c16d7e1");
|
|
273
273
|
}
|
|
274
|
+
static get WCAGPageCheckerContext() {
|
|
275
|
+
return new models_1.Guid("33548668-eff6-49d1-8fbd-a34b372abb83");
|
|
276
|
+
}
|
|
274
277
|
static get EnterpriseGlossaryRegistrationApi() {
|
|
275
278
|
return new models_1.Guid("248d7062-6ed7-4f1c-bb5e-3b78f765a107");
|
|
276
279
|
}
|
|
@@ -7,6 +7,7 @@ export interface PermissionInputSettings {
|
|
|
7
7
|
label: string;
|
|
8
8
|
principalType?: PrincipalTypes;
|
|
9
9
|
hideDynamicGroupSelection?: boolean;
|
|
10
|
+
showExtensionSelection?: boolean;
|
|
10
11
|
providerIds?: GuidValue[];
|
|
11
12
|
required?: boolean;
|
|
12
13
|
enableSpecialUser?: ISpecialUserConfiguration;
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { FilterLogicalOperator } from "../QueryFilter";
|
|
2
2
|
import { FilterComponent } from "./FilterComponent";
|
|
3
|
-
import { IBooleanFilterOperatorBuilder, IDateTimeFilterOperatorBuilder, IDateTimeOffsetFilterOperatorBuilder, IFloatFilterOperatorBuilder, IIntFilterOperatorBuilder, ILongFilterOperatorBuilder, IStringFilterOperatorBuilder } from "./FilterOperatorBuilder";
|
|
3
|
+
import { IBooleanFilterOperatorBuilder, IDateTimeFilterOperatorBuilder, IDateTimeOffsetFilterOperatorBuilder, IFloatFilterOperatorBuilder, IIntFilterOperatorBuilder, ILongFilterOperatorBuilder, IStringFilterOperatorBuilder, IntFilterOperatorBuilder } from "./FilterOperatorBuilder";
|
|
4
4
|
export interface IFilterComponentBuilder {
|
|
5
5
|
int(propertyName: string): IIntFilterOperatorBuilder;
|
|
6
6
|
float(propertyName: string): IFloatFilterOperatorBuilder;
|
|
@@ -17,8 +17,8 @@ export interface IFilterLogicalOperatorBuilder {
|
|
|
17
17
|
build(): FilterComponent[];
|
|
18
18
|
}
|
|
19
19
|
export declare class FilterBuilder implements IFilterComponentBuilder, IFilterLogicalOperatorBuilder {
|
|
20
|
-
|
|
21
|
-
|
|
20
|
+
protected filters: FilterComponent[];
|
|
21
|
+
protected intFilterOperatorBuilder?: IntFilterOperatorBuilder;
|
|
22
22
|
private floatFilterOperatorBuilder?;
|
|
23
23
|
private dateTimeFilterOperatorBuilder?;
|
|
24
24
|
private dateTimeOffsetFilterOperatorBuilder?;
|
package/filterengine/Shared.d.ts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { GuidValue } from "../../shared";
|
|
2
|
-
import { EnterprisePropertyDefinition } from "../enterprise-properties";
|
|
2
|
+
import { EnterprisePropertyColumnMapping, EnterprisePropertyDefinition } from "../enterprise-properties";
|
|
3
3
|
import { PropertyIndexedType, UserPickingType } from "../Enums";
|
|
4
4
|
import { Identity } from "../identities";
|
|
5
5
|
import { PromotedTagOptions } from "../PromotedTagOptions";
|
|
@@ -89,6 +89,9 @@ export interface FilterEngineContextProperty {
|
|
|
89
89
|
title: string;
|
|
90
90
|
type: BaseFilterEnginePropertyType;
|
|
91
91
|
inheritFromType?: GuidValue;
|
|
92
|
+
internalName?: string;
|
|
93
|
+
getSettings?: () => any;
|
|
94
|
+
hideSquareBrackets?: boolean;
|
|
92
95
|
}
|
|
93
96
|
export interface FilterEngineContextPropertyDefinition {
|
|
94
97
|
typedHandler: new (property: any, defaultRouterValue: any, isRefinable: boolean, hasFilterState: boolean, enterpriseProperty: EnterprisePropertyDefinition) => ITypedFilterEngineHandler;
|
|
@@ -263,6 +266,7 @@ export declare abstract class FilterEngineContext {
|
|
|
263
266
|
constructor(componentId: string);
|
|
264
267
|
isRefinable(prop: BaseFilterEngineProperty): boolean;
|
|
265
268
|
getAvailableProperties(): EnterprisePropertyDefinition[];
|
|
269
|
+
getAZFilterableProperties(): EnterprisePropertyColumnMapping[];
|
|
266
270
|
getExcludedPropertyTypeIds(): GuidValue[];
|
|
267
271
|
readonly abstract uniqueId: string;
|
|
268
272
|
readonly supportFullTextSearch: boolean;
|
package/filterengine/Shared.js
CHANGED
package/package.json
CHANGED
package/ux/AppManagementApi.d.ts
CHANGED
|
@@ -62,6 +62,7 @@ export interface IAppManagementInstanceConfigurationApi {
|
|
|
62
62
|
addAppLayoutTab: (settings: AppLayoutTabSettings) => IAppManagementInstanceConfigurationApi;
|
|
63
63
|
addNamingPolicyTab: (settings: AppNamingPolicyTabSettings) => IAppManagementInstanceConfigurationApi;
|
|
64
64
|
addCustomTab: (items: ElementRenderer | ElementRenderer[]) => IAppManagementInstanceConfigurationApi;
|
|
65
|
+
setProvisioningCability: (allowProvisioning: boolean) => IAppManagementInstanceConfigurationApi;
|
|
65
66
|
}
|
|
66
67
|
export interface IAppManagementInstanceHandler {
|
|
67
68
|
onConfigure: (api: IAppManagementInstanceConfigurationApi) => Promise<void>;
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
import { ApiPath } from "../Extends";
|
|
2
|
+
export interface IWCAGPageCheckerApi {
|
|
3
|
+
context: Promise<IWCAGPageCheckerContextApi>;
|
|
4
|
+
}
|
|
5
|
+
declare module "./UxApi" {
|
|
6
|
+
interface IOmniaUxApi {
|
|
7
|
+
wcag: {
|
|
8
|
+
pageChecker: IWCAGPageCheckerApi;
|
|
9
|
+
};
|
|
10
|
+
}
|
|
11
|
+
interface IOmniaUxExtendApiManifest {
|
|
12
|
+
wcag: {
|
|
13
|
+
pageChecker: {
|
|
14
|
+
context: ApiPath;
|
|
15
|
+
};
|
|
16
|
+
};
|
|
17
|
+
}
|
|
18
|
+
}
|
|
19
|
+
export interface IWCAGPageCheckerContextApi {
|
|
20
|
+
initializeInstance(elementToCheck: string, lang?: string): Promise<void>;
|
|
21
|
+
}
|
package/ux/index.d.ts
CHANGED
package/ux/index.js
CHANGED
|
@@ -22,3 +22,4 @@ tslib_1.__exportStar(require("./EnterprisePropertyToPropertySettingMappingApi"),
|
|
|
22
22
|
tslib_1.__exportStar(require("./MediaGalleryApi"), exports);
|
|
23
23
|
tslib_1.__exportStar(require("./MediaPickerFileHandlerApi"), exports);
|
|
24
24
|
tslib_1.__exportStar(require("./BlockGalleryApi"), exports);
|
|
25
|
+
tslib_1.__exportStar(require("./WCAGPageCheckerApi"), exports);
|