@@ -367,12 +367,20 @@ search.addWidget(
367
367
* @param {String} options.facetName Name of the attribute for faceting
368
368
* @param {String} options.operator How to apply refinements. Possible values: `or`, `and`
369
369
* @param {String[]} [options.sortBy= [' count:desc' ] ] How to sort refinements. Possible values: `count|isRefined|name:asc|desc`
370
- * @param {String} [options.limit= 100 ] How much facet values to get.
371
- * @param {String|String[]} [options.rootClass= null ] CSS class(es) for the root `<ul>` element
372
- * @param {String|String[]} [options.itemClass= null ] CSS class(es) for the item `<li>` element
373
- * @param {String|Function} [options.template] Item template, provided with `name`, `count`, `isRefined`
370
+ * @param {String} [options.limit= 100 ] How much facet values to get
371
+ * @param {Object} [options.cssClasses] Css classes to add to the wrapping elements: root, list, item
372
+ * @param {String|String[]} [options.cssClasses.root]
373
+ * @param {String|String[]} [options.cssClasses.list]
374
+ * @param {String|String[]} [options.cssClasses.item]
375
+ * @param {Object} [options.templates] Templates to use for the widget
376
+ * @param {String|Function} [options.templates.header] Header template
377
+ * @param {String|Function} [options.templates.item =`<label>
378
+ <input type="checkbox" value="{{name}}" {{#isRefined}}checked{{/isRefined}} />{{name}} <span>{{count}}</span>
379
+ </label>`] Item template, provided with `name`, `count`, `isRefined`
380
+ * @param {String|Function} [options.templates.footer] Footer template
374
381
* @param {String|Function} [options.singleRefine= true ] Are multiple refinements allowed or only one at the same time. You can use this
375
- * to build radio based refinement lists for example.
382
+ * to build radio based refinement lists for example
383
+ * @param {boolean} [hideWhenNoResults= true ] Hide the container when no results match
376
384
* @return {Object}
377
385
*/
378
386
```
@@ -406,10 +414,16 @@ search.addWidget(
406
414
* @param {String|DOMElement} options.container Valid CSS Selector as a string or DOMElement
407
415
* @param {String} options.facetName Name of the attribute for faceting
408
416
* @param {String[]} [options.sortBy= [' count:desc' ] ] How to sort refinements. Possible values: `count|isRefined|name:asc|desc`
409
- * @param {String} [options.limit= 100 ] How much facet values to get.
410
- * @param {String|String[]} [options.rootClass= null ] CSS class(es) for the root `<ul>` element
411
- * @param {String|String[]} [options.itemClass= null ] CSS class(es) for the item `<li>` element
412
- * @param {String|Function} [options.template] Item template, provided with `name`, `count`, `isRefined`
417
+ * @param {String} [options.limit= 100 ] How much facet values to get
418
+ * @param {Object} [options.cssClasses] Css classes to add to the wrapping elements: root, list, item
419
+ * @param {String|String[]} [options.cssClasses.root]
420
+ * @param {String|String[]} [options.cssClasses.list]
421
+ * @param {String|String[]} [options.cssClasses.item]
422
+ * @param {Object} [options.templates] Templates to use for the widget
423
+ * @param {String|Function} [options.templates.header= ' ' ] Header template
424
+ * @param {String|Function} [options.templates.item= ' <a href="{{href}}">{{name}}</a> {{count}}' ] Item template, provided with `name`, `count`, `isRefined`
425
+ * @param {String|Function} [options.templates.footer= ' ' ] Footer template
426
+ * @param {boolean} [hideWhenNoResults= true ] Hide the container when no results match
413
427
* @return {Object}
414
428
*/
415
429
```
@@ -472,13 +486,13 @@ search.addWidget(
472
486
473
487
## Browser support
474
488
475
- We support IE9 + and all other modern browsers.
489
+ We support IE10 + and all other modern browsers.
476
490
477
- To get IE8 support, please insert this in the ` <head> ` :
491
+ To get < IE10 support, please insert this in the ` <head> ` :
478
492
479
493
``` html
480
494
<meta http-equiv =" X-UA-Compatible" content =" IE=Edge" >
481
- <!-- [if lte IE 8 ]>
495
+ <!-- [if lte IE 9 ]>
482
496
<script src="https://cdnjs.cloudflare.com/ajax/libs/aight/1.2.2/aight.min.js"></script>
483
497
<![endif]-->
484
498
```
0 commit comments