@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;
|
|
@@ -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;
|