@omnia/fx-models 7.10.0-preview.35 → 7.10.0-preview.36

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 CHANGED
@@ -251,4 +251,8 @@ export declare const Constants: {
251
251
  aiEngine: {
252
252
  semanticSearchEnterprisePropertyPrefix: string;
253
253
  };
254
+ azFilteringProperties: {
255
+ enterprisePropertyPrefix: string;
256
+ omniaSearchPropertyPrefix: string;
257
+ };
254
258
  };
package/Constants.js CHANGED
@@ -285,5 +285,9 @@ exports.Constants = {
285
285
  },
286
286
  aiEngine: {
287
287
  semanticSearchEnterprisePropertyPrefix: "EnterpriseProperty_"
288
+ },
289
+ azFilteringProperties: {
290
+ enterprisePropertyPrefix: "AZFilteringProp",
291
+ omniaSearchPropertyPrefix: "azFilteringProp"
288
292
  }
289
293
  };
package/Layout.d.ts CHANGED
@@ -137,7 +137,7 @@ export interface SectionSettings extends LayoutItemSettings {
137
137
  themeDefinition: ThemeDefinition;
138
138
  hidden?: boolean;
139
139
  disableLazyLoad?: boolean;
140
- titleFormatting?: GuidValue;
140
+ headerLevel?: GuidValue;
141
141
  }
142
142
  export interface ColumnedSectionSettings extends SectionSettings {
143
143
  type: SectionTypes.Column;
@@ -240,7 +240,7 @@ export interface HeaderItemSettings {
240
240
  titleSettings: BlockTitleSettings;
241
241
  anchorName?: string;
242
242
  scrollIntoViewDisabled: boolean;
243
- titleFormatting?: GuidValue;
243
+ headerLevel?: GuidValue;
244
244
  }
245
245
  export interface SpacingItemSettings {
246
246
  paddingRight: number;
@@ -10,7 +10,8 @@ export declare enum FilterEngineRenderType {
10
10
  Dropdown = 0,
11
11
  List = 1,
12
12
  Tags = 2,
13
- IconButtons = 3
13
+ IconButtons = 3,
14
+ LinkButtons = 4
14
15
  }
15
16
  export declare enum FilterEngineDefaultPosition {
16
17
  Top = 0,
@@ -204,6 +205,7 @@ export interface TextFilterEngineProperty extends BaseFilterEngineProperty {
204
205
  showResultCount: boolean;
205
206
  valueSortOrder: FilterEngineTextValueSortOrder;
206
207
  showSearchValueBox: boolean;
208
+ multipleSelectionEnabled?: boolean;
207
209
  }
208
210
  export interface TagsFilterEngineProperty extends BaseFilterEngineProperty {
209
211
  value: Array<string>;
@@ -7,6 +7,7 @@ var FilterEngineRenderType;
7
7
  FilterEngineRenderType[FilterEngineRenderType["List"] = 1] = "List";
8
8
  FilterEngineRenderType[FilterEngineRenderType["Tags"] = 2] = "Tags";
9
9
  FilterEngineRenderType[FilterEngineRenderType["IconButtons"] = 3] = "IconButtons";
10
+ FilterEngineRenderType[FilterEngineRenderType["LinkButtons"] = 4] = "LinkButtons";
10
11
  })(FilterEngineRenderType = exports.FilterEngineRenderType || (exports.FilterEngineRenderType = {}));
11
12
  var FilterEngineDefaultPosition;
12
13
  (function (FilterEngineDefaultPosition) {
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@omnia/fx-models",
3
3
  "license": "MIT",
4
- "version": "7.10.0-preview.35",
4
+ "version": "7.10.0-preview.36",
5
5
  "description": "Provide Omnia Fx Models Stuffs.",
6
6
  "scripts": {
7
7
  "test": "echo \"Error: no test specified\" && exit 1"