instantsearch.js 4.50.1 → 4.50.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.
- package/cjs/connectors/infinite-hits/connectInfiniteHits.js +8 -1
- package/cjs/lib/version.js +1 -1
- package/cjs/widgets/index/index.js +3 -0
- package/dist/instantsearch.development.d.ts +1 -0
- package/dist/instantsearch.development.js +13 -3
- package/dist/instantsearch.development.js.map +1 -1
- package/dist/instantsearch.production.d.ts +1 -0
- package/dist/instantsearch.production.min.d.ts +1 -0
- package/dist/instantsearch.production.min.js +2 -2
- package/dist/instantsearch.production.min.js.map +1 -1
- package/es/connectors/infinite-hits/connectInfiniteHits.js +8 -1
- package/es/lib/version.d.ts +1 -1
- package/es/lib/version.js +1 -1
- package/es/types/instantsearch.d.ts +1 -1
- package/es/widgets/index/index.d.ts +1 -0
- package/es/widgets/index/index.js +3 -0
- package/package.json +5 -5
|
@@ -2055,6 +2055,7 @@ declare type IndexWidget = Omit<Widget<IndexWidgetDescription & {
|
|
|
2055
2055
|
getIndexId(): string;
|
|
2056
2056
|
getHelper(): AlgoliaSearchHelper | null;
|
|
2057
2057
|
getResults(): SearchResults | null;
|
|
2058
|
+
getPreviousState(): SearchParameters | null;
|
|
2058
2059
|
getScopedResults(): ScopedResult[];
|
|
2059
2060
|
getParent(): IndexWidget | null;
|
|
2060
2061
|
getWidgets(): Array<Widget | IndexWidget>;
|
|
@@ -2055,6 +2055,7 @@ declare type IndexWidget = Omit<Widget<IndexWidgetDescription & {
|
|
|
2055
2055
|
getIndexId(): string;
|
|
2056
2056
|
getHelper(): AlgoliaSearchHelper | null;
|
|
2057
2057
|
getResults(): SearchResults | null;
|
|
2058
|
+
getPreviousState(): SearchParameters | null;
|
|
2058
2059
|
getScopedResults(): ScopedResult[];
|
|
2059
2060
|
getParent(): IndexWidget | null;
|
|
2060
2061
|
getWidgets(): Array<Widget | IndexWidget>;
|