instantsearch.js 4.74.1 → 4.75.0
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/cjs/components/Breadcrumb/Breadcrumb.js +7 -0
- package/cjs/lib/infiniteHitsCache/sessionStorage.js +12 -10
- package/cjs/lib/version.js +1 -1
- package/dist/instantsearch.development.d.ts +7 -1
- package/dist/instantsearch.development.js +20 -12
- package/dist/instantsearch.development.js.map +1 -1
- package/dist/instantsearch.production.d.ts +7 -1
- package/dist/instantsearch.production.min.d.ts +7 -1
- package/dist/instantsearch.production.min.js +2 -2
- package/dist/instantsearch.production.min.js.map +1 -1
- package/es/components/Breadcrumb/Breadcrumb.js +7 -0
- package/es/lib/infiniteHitsCache/sessionStorage.d.ts +7 -1
- package/es/lib/infiniteHitsCache/sessionStorage.js +12 -10
- package/es/lib/version.d.ts +1 -1
- package/es/lib/version.js +1 -1
- package/package.json +5 -5
|
@@ -1204,7 +1204,13 @@ declare type CreateCarouselTemplateProps<TObject extends Record<string, unknown>
|
|
|
1204
1204
|
cssClasses?: Partial<CarouselProps<TObject>['classNames']>;
|
|
1205
1205
|
};
|
|
1206
1206
|
|
|
1207
|
-
declare function createInfiniteHitsSessionStorageCache(
|
|
1207
|
+
declare function createInfiniteHitsSessionStorageCache({ key, }?: {
|
|
1208
|
+
/**
|
|
1209
|
+
* If you display multiple instances of infiniteHits on the same page,
|
|
1210
|
+
* you must provide a unique key for each instance.
|
|
1211
|
+
*/
|
|
1212
|
+
key?: string;
|
|
1213
|
+
}): InfiniteHitsCache;
|
|
1208
1214
|
|
|
1209
1215
|
declare type CreateInsightsMiddleware = typeof createInsightsMiddleware;
|
|
1210
1216
|
|
|
@@ -1204,7 +1204,13 @@ declare type CreateCarouselTemplateProps<TObject extends Record<string, unknown>
|
|
|
1204
1204
|
cssClasses?: Partial<CarouselProps<TObject>['classNames']>;
|
|
1205
1205
|
};
|
|
1206
1206
|
|
|
1207
|
-
declare function createInfiniteHitsSessionStorageCache(
|
|
1207
|
+
declare function createInfiniteHitsSessionStorageCache({ key, }?: {
|
|
1208
|
+
/**
|
|
1209
|
+
* If you display multiple instances of infiniteHits on the same page,
|
|
1210
|
+
* you must provide a unique key for each instance.
|
|
1211
|
+
*/
|
|
1212
|
+
key?: string;
|
|
1213
|
+
}): InfiniteHitsCache;
|
|
1208
1214
|
|
|
1209
1215
|
declare type CreateInsightsMiddleware = typeof createInsightsMiddleware;
|
|
1210
1216
|
|