@omnia/fx-models 7.10.0-preview.2 → 7.10.0-preview.20
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.
|
@@ -6,6 +6,8 @@ export interface EnterprisePropertyColumnMapping {
|
|
|
6
6
|
createdAt: Date;
|
|
7
7
|
status: EnterprisePropertyMappingStatus;
|
|
8
8
|
log: string;
|
|
9
|
+
enableAZFiltering?: boolean;
|
|
10
|
+
azFilterInternalName?: string;
|
|
9
11
|
}
|
|
10
12
|
export declare enum EnterprisePropertyMappingStatus {
|
|
11
13
|
isAdding = 1,
|
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,8 @@ export interface FilterEngineContextProperty {
|
|
|
89
89
|
title: string;
|
|
90
90
|
type: BaseFilterEnginePropertyType;
|
|
91
91
|
inheritFromType?: GuidValue;
|
|
92
|
+
internalName?: string;
|
|
93
|
+
getSettings?: () => any;
|
|
92
94
|
}
|
|
93
95
|
export interface FilterEngineContextPropertyDefinition {
|
|
94
96
|
typedHandler: new (property: any, defaultRouterValue: any, isRefinable: boolean, hasFilterState: boolean, enterpriseProperty: EnterprisePropertyDefinition) => ITypedFilterEngineHandler;
|
|
@@ -263,6 +265,7 @@ export declare abstract class FilterEngineContext {
|
|
|
263
265
|
constructor(componentId: string);
|
|
264
266
|
isRefinable(prop: BaseFilterEngineProperty): boolean;
|
|
265
267
|
getAvailableProperties(): EnterprisePropertyDefinition[];
|
|
268
|
+
getAZFilterableProperties(): EnterprisePropertyColumnMapping[];
|
|
266
269
|
getExcludedPropertyTypeIds(): GuidValue[];
|
|
267
270
|
readonly abstract uniqueId: string;
|
|
268
271
|
readonly supportFullTextSearch: boolean;
|
package/filterengine/Shared.js
CHANGED
package/package.json
CHANGED