@getlupa/vue 0.17.6 → 0.17.8

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.
@@ -11,6 +11,7 @@ import { DataExtraction } from '../DataExtraction';
11
11
  export type SearchBoxOptions = SearchBoxPanelOptions & {
12
12
  inputSelector: string;
13
13
  searchTriggers?: string[];
14
+ searchBoxCloseTriggers?: string[];
14
15
  routingBehavior?: RoutingBehavior;
15
16
  dynamicData?: DynamicData;
16
17
  callbacks?: SearchBoxEventCallbacks;
@@ -224,6 +224,7 @@ export type ResultFacetOptions = {
224
224
  type: FacetStyle;
225
225
  };
226
226
  exclude?: string[];
227
+ excludeValues?: Record<string, Record<string, string[]>>;
227
228
  expand?: string[];
228
229
  facetFilterQueries?: Record<string, FacetFilterQuery>;
229
230
  };
@@ -11,3 +11,4 @@ export declare const escapeHtml: (value?: string) => string;
11
11
  export declare const inputMatches: (input: string, possibleValues: string[]) => boolean;
12
12
  export declare const inputsAreEqual: (input: string, possibleValues: string[]) => boolean;
13
13
  export declare const findClosestStringValue: <T>(input: string, possibleValues: T[], key: keyof T) => T;
14
+ export declare const slugifyClass: (s?: string) => string;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@getlupa/vue",
3
- "version": "0.17.6",
3
+ "version": "0.17.8",
4
4
  "main": "dist/lupaSearch.mjs",
5
5
  "module": "dist/lupaSearch.mjs",
6
6
  "types": "dist/src/index.d.ts",