instantsearch.js 4.40.0 → 4.40.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/CHANGELOG.md +27 -0
- package/cjs/connectors/breadcrumb/connectBreadcrumb.js +1 -1
- package/cjs/connectors/hierarchical-menu/connectHierarchicalMenu.js +4 -3
- package/cjs/connectors/menu/connectMenu.js +3 -2
- package/cjs/connectors/refinement-list/connectRefinementList.js +7 -5
- package/cjs/lib/version.js +1 -1
- package/dist/instantsearch.development.d.ts +1 -3
- package/dist/instantsearch.development.js +66 -20
- package/dist/instantsearch.development.js.map +1 -1
- package/dist/instantsearch.production.d.ts +1 -3
- package/dist/instantsearch.production.min.d.ts +1 -3
- package/dist/instantsearch.production.min.js +2 -2
- package/dist/instantsearch.production.min.js.map +1 -1
- package/es/connectors/breadcrumb/connectBreadcrumb.js +1 -1
- package/es/connectors/current-refinements/connectCurrentRefinements.d.ts +1 -3
- package/es/connectors/hierarchical-menu/connectHierarchicalMenu.js +4 -3
- package/es/connectors/menu/connectMenu.js +3 -2
- package/es/connectors/refinement-list/connectRefinementList.js +7 -5
- package/es/lib/version.d.ts +1 -1
- package/es/lib/version.js +1 -1
- package/es/types/results.d.ts +2 -7
- package/package.json +2 -2
|
@@ -970,10 +970,8 @@ declare type CurrentRefinementsConnectorParamsRefinement = {
|
|
|
970
970
|
attribute: string;
|
|
971
971
|
/**
|
|
972
972
|
* The type of the refinement.
|
|
973
|
-
*
|
|
974
|
-
* It can be one of those: 'facet'|'exclude'|'disjunctive'|'hierarchical'|'numeric'|'query'|'tag'.
|
|
975
973
|
*/
|
|
976
|
-
type:
|
|
974
|
+
type: 'facet' | 'exclude' | 'disjunctive' | 'hierarchical' | 'numeric' | 'query' | 'tag';
|
|
977
975
|
/**
|
|
978
976
|
* The raw value of the refinement.
|
|
979
977
|
*/
|
|
@@ -970,10 +970,8 @@ declare type CurrentRefinementsConnectorParamsRefinement = {
|
|
|
970
970
|
attribute: string;
|
|
971
971
|
/**
|
|
972
972
|
* The type of the refinement.
|
|
973
|
-
*
|
|
974
|
-
* It can be one of those: 'facet'|'exclude'|'disjunctive'|'hierarchical'|'numeric'|'query'|'tag'.
|
|
975
973
|
*/
|
|
976
|
-
type:
|
|
974
|
+
type: 'facet' | 'exclude' | 'disjunctive' | 'hierarchical' | 'numeric' | 'query' | 'tag';
|
|
977
975
|
/**
|
|
978
976
|
* The raw value of the refinement.
|
|
979
977
|
*/
|