@@ -21,7 +21,9 @@ var cx = require('classnames/dedupe');
2121 * @param {String|String[] } [options.cssClasses.header] CSS class to add to the header element
2222 * @param {String|String[] } [options.cssClasses.body] CSS class to add to the body element
2323 * @param {String|String[] } [options.cssClasses.footer] CSS class to add to the footer element
24+ * @param {String|String[] } [options.cssClasses.form] CSS class to add to the form element
2425 * @param {String|String[] } [options.cssClasses.range] CSS class to add to the range element
26+ * @param {String|String[] } [options.cssClasses.active] CSS class to add to the active range element
2527 * @param {String|String[] } [options.cssClasses.input] CSS class to add to the min/max input elements
2628 * @param {String|String[] } [options.cssClasses.button] CSS class to add to the button element
2729 * @param {Object } [options.templates] Templates to use for the widget
@@ -123,8 +125,9 @@ function priceRanges({
123125 body : cx ( bem ( 'body' ) , cssClasses . body ) ,
124126 footer : cx ( bem ( 'footer' ) , cssClasses . footer ) ,
125127 range : cx ( bem ( 'range' ) , cssClasses . range ) ,
128+ active : cx ( bem ( 'range' , 'active' ) , cssClasses . active ) ,
126129 input : cx ( bem ( 'input' ) , cssClasses . input ) ,
127- form : cx ( bem ( 'input-group ' ) , cssClasses . form ) ,
130+ form : cx ( bem ( 'form ' ) , cssClasses . form ) ,
128131 button : cx ( bem ( 'button' ) , cssClasses . button )
129132 } ;
130133
0 commit comments