instantsearch.js 4.46.2 → 4.46.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 +9 -0
- package/cjs/components/CurrentRefinements/CurrentRefinements.js +9 -2
- package/cjs/lib/version.js +1 -1
- package/cjs/widgets/current-refinements/current-refinements.js +7 -2
- package/dist/instantsearch.development.d.ts +4 -0
- package/dist/instantsearch.development.js +12 -6
- package/dist/instantsearch.development.js.map +1 -1
- package/dist/instantsearch.production.d.ts +4 -0
- package/dist/instantsearch.production.min.d.ts +4 -0
- package/dist/instantsearch.production.min.js +2 -2
- package/dist/instantsearch.production.min.js.map +1 -1
- package/es/components/CurrentRefinements/CurrentRefinements.d.ts +2 -1
- package/es/components/CurrentRefinements/CurrentRefinements.js +6 -2
- package/es/lib/version.d.ts +1 -1
- package/es/lib/version.js +1 -1
- package/es/widgets/current-refinements/current-refinements.d.ts +4 -0
- package/es/widgets/current-refinements/current-refinements.js +7 -2
- package/package.json +1 -1
|
@@ -1007,6 +1007,10 @@ declare type CurrentRefinementsCSSClasses = Partial<{
|
|
|
1007
1007
|
* CSS class to add to the root element.
|
|
1008
1008
|
*/
|
|
1009
1009
|
root: string | string[];
|
|
1010
|
+
/**
|
|
1011
|
+
* CSS class to add to the root element when no refinements.
|
|
1012
|
+
*/
|
|
1013
|
+
noRefinementRoot: string | string[];
|
|
1010
1014
|
/**
|
|
1011
1015
|
* CSS class to add to the list element.
|
|
1012
1016
|
*/
|
|
@@ -1007,6 +1007,10 @@ declare type CurrentRefinementsCSSClasses = Partial<{
|
|
|
1007
1007
|
* CSS class to add to the root element.
|
|
1008
1008
|
*/
|
|
1009
1009
|
root: string | string[];
|
|
1010
|
+
/**
|
|
1011
|
+
* CSS class to add to the root element when no refinements.
|
|
1012
|
+
*/
|
|
1013
|
+
noRefinementRoot: string | string[];
|
|
1010
1014
|
/**
|
|
1011
1015
|
* CSS class to add to the list element.
|
|
1012
1016
|
*/
|