@algolia/autocomplete-shared 1.10.0 → 1.11.1
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.
|
@@ -42,7 +42,6 @@ export declare type GetFormProps<TEvent = Event> = (props: {
|
|
|
42
42
|
};
|
|
43
43
|
export declare type GetLabelProps = (props?: {
|
|
44
44
|
[key: string]: unknown;
|
|
45
|
-
sourceIndex?: number;
|
|
46
45
|
}) => {
|
|
47
46
|
htmlFor: string;
|
|
48
47
|
id: string;
|
|
@@ -81,7 +80,7 @@ export declare type GetPanelProps<TMouseEvent> = (props?: {
|
|
|
81
80
|
};
|
|
82
81
|
export declare type GetListProps = (props?: {
|
|
83
82
|
[key: string]: unknown;
|
|
84
|
-
|
|
83
|
+
source: InternalAutocompleteSource<any>;
|
|
85
84
|
}) => {
|
|
86
85
|
role: 'listbox';
|
|
87
86
|
'aria-labelledby': string;
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import * as ClientSearch from '@algolia/client-search';
|
|
2
2
|
import type * as AlgoliaSearch from 'algoliasearch/lite';
|
|
3
|
-
declare type AnyToUnknown<TSubject> = (
|
|
3
|
+
declare type AnyToUnknown<TSubject> = (0 extends 1 & TSubject ? true : false) extends true ? unknown : TSubject;
|
|
4
4
|
declare type SearchClientShape = {
|
|
5
5
|
search: unknown;
|
|
6
6
|
};
|
package/dist/esm/version.d.ts
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
export declare const version = "1.
|
|
1
|
+
export declare const version = "1.11.1";
|
package/dist/esm/version.js
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
export var version = '1.
|
|
1
|
+
export var version = '1.11.1';
|
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.
|
|
4
|
+
"version": "1.11.1",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"homepage": "https://github.com/algolia/autocomplete",
|
|
7
7
|
"repository": "algolia/autocomplete",
|