@algolia/autocomplete-shared 1.17.1 → 1.17.3

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.
@@ -1 +1 @@
1
- export declare function getAttributeValueByPath<TRecord>(record: TRecord, path: string[]): any;
1
+ export declare function getAttributeValueByPath<TRecord>(record: TRecord, path: Array<string | number>): any;
@@ -8,7 +8,7 @@ export declare type HighlightHitParams<THit> = {
8
8
  *
9
9
  * You can use the array syntax to reference nested attributes.
10
10
  */
11
- attribute: keyof THit | string[];
11
+ attribute: keyof THit | Array<string | number>;
12
12
  /**
13
13
  * The tag name to use for highlighted parts.
14
14
  *
@@ -1 +1 @@
1
- export declare const version = "1.17.1";
1
+ export declare const version = "1.17.3";
@@ -1 +1 @@
1
- export var version = '1.17.1';
1
+ export var version = '1.17.3';
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@algolia/autocomplete-shared",
3
3
  "description": "Shared utils for Autocomplete packages.",
4
- "version": "1.17.1",
4
+ "version": "1.17.3",
5
5
  "license": "MIT",
6
6
  "homepage": "https://github.com/algolia/autocomplete",
7
7
  "repository": "algolia/autocomplete",