instantsearch.js 4.77.0 → 4.77.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.
Files changed (27) hide show
  1. package/cjs/components/RefinementList/RefinementList.js +2 -2
  2. package/cjs/lib/utils/getAppIdAndApiKey.js +3 -3
  3. package/cjs/lib/version.js +1 -1
  4. package/cjs/widgets/frequently-bought-together/frequently-bought-together.js +8 -2
  5. package/cjs/widgets/looking-similar/looking-similar.js +8 -2
  6. package/cjs/widgets/related-products/related-products.js +8 -2
  7. package/cjs/widgets/trending-items/trending-items.js +8 -2
  8. package/dist/instantsearch.development.d.ts +4 -4
  9. package/dist/instantsearch.development.js +68 -22
  10. package/dist/instantsearch.development.js.map +1 -1
  11. package/dist/instantsearch.production.d.ts +4 -4
  12. package/dist/instantsearch.production.min.d.ts +4 -4
  13. package/dist/instantsearch.production.min.js +2 -2
  14. package/dist/instantsearch.production.min.js.map +1 -1
  15. package/es/components/RefinementList/RefinementList.js +2 -2
  16. package/es/lib/utils/getAppIdAndApiKey.js +3 -3
  17. package/es/lib/version.d.ts +1 -1
  18. package/es/lib/version.js +1 -1
  19. package/es/widgets/frequently-bought-together/frequently-bought-together.d.ts +2 -2
  20. package/es/widgets/frequently-bought-together/frequently-bought-together.js +8 -2
  21. package/es/widgets/looking-similar/looking-similar.d.ts +2 -2
  22. package/es/widgets/looking-similar/looking-similar.js +8 -2
  23. package/es/widgets/related-products/related-products.d.ts +2 -2
  24. package/es/widgets/related-products/related-products.js +8 -2
  25. package/es/widgets/trending-items/trending-items.d.ts +2 -2
  26. package/es/widgets/trending-items/trending-items.js +8 -2
  27. package/package.json +7 -7
@@ -3878,7 +3878,7 @@ declare type FrequentlyBoughtTogetherTemplates<THit extends NonNullable<object>
3878
3878
  /**
3879
3879
  * Template to use for each result. This template will receive an object containing a single record.
3880
3880
  */
3881
- item: Template<AlgoliaHit<THit>>;
3881
+ item: TemplateWithBindEvent<AlgoliaHit<THit>>;
3882
3882
  /**
3883
3883
  * Template to use to wrap all items.
3884
3884
  */
@@ -5405,7 +5405,7 @@ declare type LookingSimilarTemplates<THit extends NonNullable<object> = BaseHit>
5405
5405
  /**
5406
5406
  * Template to use for each result. This template will receive an object containing a single record.
5407
5407
  */
5408
- item: Template<AlgoliaHit<THit>>;
5408
+ item: TemplateWithBindEvent<AlgoliaHit<THit>>;
5409
5409
  /**
5410
5410
  * Template to use to wrap all items.
5411
5411
  */
@@ -7220,7 +7220,7 @@ declare type RelatedProductsTemplates<THit extends NonNullable<object> = BaseHit
7220
7220
  /**
7221
7221
  * Template to use for each result. This template will receive an object containing a single record.
7222
7222
  */
7223
- item: Template<AlgoliaHit<THit>>;
7223
+ item: TemplateWithBindEvent<AlgoliaHit<THit>>;
7224
7224
  /**
7225
7225
  * Template to use to wrap all items.
7226
7226
  */
@@ -8388,7 +8388,7 @@ declare type TrendingItemsTemplates<THit extends NonNullable<object> = BaseHit>
8388
8388
  /**
8389
8389
  * Template to use for each result. This template will receive an object containing a single record.
8390
8390
  */
8391
- item: Template<AlgoliaHit<THit>>;
8391
+ item: TemplateWithBindEvent<AlgoliaHit<THit>>;
8392
8392
  /**
8393
8393
  * Template to use to wrap all items.
8394
8394
  */
@@ -3878,7 +3878,7 @@ declare type FrequentlyBoughtTogetherTemplates<THit extends NonNullable<object>
3878
3878
  /**
3879
3879
  * Template to use for each result. This template will receive an object containing a single record.
3880
3880
  */
3881
- item: Template<AlgoliaHit<THit>>;
3881
+ item: TemplateWithBindEvent<AlgoliaHit<THit>>;
3882
3882
  /**
3883
3883
  * Template to use to wrap all items.
3884
3884
  */
@@ -5405,7 +5405,7 @@ declare type LookingSimilarTemplates<THit extends NonNullable<object> = BaseHit>
5405
5405
  /**
5406
5406
  * Template to use for each result. This template will receive an object containing a single record.
5407
5407
  */
5408
- item: Template<AlgoliaHit<THit>>;
5408
+ item: TemplateWithBindEvent<AlgoliaHit<THit>>;
5409
5409
  /**
5410
5410
  * Template to use to wrap all items.
5411
5411
  */
@@ -7220,7 +7220,7 @@ declare type RelatedProductsTemplates<THit extends NonNullable<object> = BaseHit
7220
7220
  /**
7221
7221
  * Template to use for each result. This template will receive an object containing a single record.
7222
7222
  */
7223
- item: Template<AlgoliaHit<THit>>;
7223
+ item: TemplateWithBindEvent<AlgoliaHit<THit>>;
7224
7224
  /**
7225
7225
  * Template to use to wrap all items.
7226
7226
  */
@@ -8388,7 +8388,7 @@ declare type TrendingItemsTemplates<THit extends NonNullable<object> = BaseHit>
8388
8388
  /**
8389
8389
  * Template to use for each result. This template will receive an object containing a single record.
8390
8390
  */
8391
- item: Template<AlgoliaHit<THit>>;
8391
+ item: TemplateWithBindEvent<AlgoliaHit<THit>>;
8392
8392
  /**
8393
8393
  * Template to use to wrap all items.
8394
8394
  */