instantsearch.js 4.72.1 → 4.72.2
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/README.md +0 -1
- package/cjs/lib/version.js +1 -1
- package/dist/instantsearch.development.d.ts +72 -1633
- package/dist/instantsearch.development.js +2 -2
- package/dist/instantsearch.development.js.map +1 -1
- package/dist/instantsearch.production.d.ts +72 -1633
- package/dist/instantsearch.production.min.d.ts +72 -1633
- package/dist/instantsearch.production.min.js +2 -2
- package/dist/instantsearch.production.min.js.map +1 -1
- package/es/connectors/frequently-bought-together/connectFrequentlyBoughtTogether.d.ts +7 -195
- package/es/connectors/geo-search/connectGeoSearch.d.ts +3 -3
- package/es/connectors/hits/connectHits.d.ts +2 -2
- package/es/connectors/hits/connectHitsWithInsights.d.ts +3 -75
- package/es/connectors/infinite-hits/connectInfiniteHits.d.ts +3 -3
- package/es/connectors/infinite-hits/connectInfiniteHitsWithInsights.d.ts +3 -75
- package/es/connectors/looking-similar/connectLookingSimilar.d.ts +7 -187
- package/es/connectors/related-products/connectRelatedProducts.d.ts +7 -187
- package/es/connectors/trending-items/connectTrendingItems.d.ts +7 -192
- package/es/lib/insights/client.d.ts +1 -1
- package/es/lib/utils/createConcurrentSafePromise.d.ts +1 -1
- package/es/lib/utils/render-args.d.ts +2 -222
- package/es/lib/utils/typedObject.d.ts +1 -1
- package/es/lib/version.d.ts +1 -1
- package/es/lib/version.js +1 -1
- package/es/widgets/frequently-bought-together/frequently-bought-together.d.ts +5 -115
- package/es/widgets/geo-search/createHTMLMarker.d.ts +0 -2
- package/es/widgets/geo-search/geo-search.d.ts +12 -96
- package/es/widgets/hits/defaultTemplates.d.ts +9 -9
- package/es/widgets/hits/hits.d.ts +2 -77
- package/es/widgets/infinite-hits/infinite-hits.d.ts +2 -79
- package/es/widgets/looking-similar/looking-similar.d.ts +5 -118
- package/es/widgets/related-products/related-products.d.ts +5 -115
- package/es/widgets/trending-items/trending-items.d.ts +7 -121
- package/package.json +2 -2
package/README.md
CHANGED
|
@@ -20,7 +20,6 @@ InstantSearch.js is a vanilla JavaScript library that lets you create an instant
|
|
|
20
20
|
<!-- START doctoc generated TOC please keep comment here to allow auto update -->
|
|
21
21
|
<!-- DON'T EDIT THIS SECTION, INSTEAD RE-RUN doctoc TO UPDATE -->
|
|
22
22
|
|
|
23
|
-
|
|
24
23
|
- [Why](#why)
|
|
25
24
|
- [Getting started](#getting-started)
|
|
26
25
|
- [Installation](#installation)
|
package/cjs/lib/version.js
CHANGED