All Versions
102
Latest Version
Avg Release Cycle
52 days
Latest Release
599 days ago

Changelog History
Page 9

  • v0.6.2 Changes

    February 09, 2016

    Notable Changes

    • ๐Ÿ›  Fix regression in RefinementListFilter not showing view more options
  • v0.6.1 Changes

    February 08, 2016

    Notable Changes

    • ๐Ÿ›  Fix pagination bug where last page was not clickable.
    • ๐Ÿ›  Fix documentation references for sourceFilter which lead to incomplete demo
  • v0.6.0 Changes

    February 08, 2016

    Notable Changes

    • ๐Ÿ‘ Hits now supports the sourceFilter prop, we strongly advise you to use this as it will speed up your search and reduce a lot of wasted bandwidth #20 jsx <Hits hitsPerPage={50} sourceFilter={["title", "poster", "imdbId"]} itemComponent={HitItem}/>
    • 0๏ธโƒฃ SortingSelector Component now supports defaultOption prop, and we have fixed issues in selection. #89
    • ๐Ÿ‘ RefinementListFilter, MenuFilter, HierarchicalMenuFilter all support sorting on intrinsic order fields via the the orderKey and orderDirection props. #46
    • ๐Ÿ‘ NoHits, ResetFilters now support customization via high order react components
    • ๐Ÿ‘ HitStats now supports customization via higher order react component, note if you previously extended HitStats, you will need to change your code to use the component prop
    • ๐Ÿ”ง ScrollToTop improvements, now configurable on Hits component and will scroll to top on any result changes, this is via the scrollTo prop. #48
    • ๐Ÿ”ง ErrorHandling, we now display a more meaningful message when an error in elastic or the http call occurs. The NoHits component displays this, and is also configurable via the errorComponent higher order component prop.#18
    • 0๏ธโƒฃ ResetFilters now ignores defaultQueries.#44
  • v0.5.1 Changes

    February 03, 2016
    • missing theme css
  • v0.5.0 Changes

    February 03, 2016

    Notable changes

    • โœ‚ remove lib from git. If you install package not via npm, you need to npm run-script build in root of project. #37

    ๐Ÿ†• New Features

    • ๐ŸŽ‰ InitialView component #34

    ๐Ÿ‘Œ Improvements

    • Avoid duplicate redundant searches #71
    • ๐Ÿ‘€ Discourage extending searchkit components, use itemComponent and component to override display with your own React components. The following components support this feature. See component docs for more information. #17

      • Hits
      • InitialLoader
      • Menu
      • Refinement List
      • Reset
      • Selected Filters
    • ๐Ÿ‘ Pagination supports showing links #40

    • Range Filter no filter applied if range min max equals component min and max #16

    • ๐Ÿ”ง Configurable search throttle time via prop on searchbox component #55

    ๐Ÿ› Bugs

    • No throttling of search query #35
    • componentWillUnmount not removing accessor #25
    • NumericRefinementListFilter does not add .is-disabled class when has no options #50
  • v0.4.0 Changes

    January 26, 2016
    • โšก๏ธ update to lodash 4.0 with individual function imports (smaller footprint)
    • ๐Ÿ’ฅ Breaking api change to internal query builder RangeQuery
    • โœ… Increased unit test coverage to 99%
    • โœ… Increase e2e test coverage
  • v0.3.5 Changes

    January 21, 2016
    • ๐Ÿ†• New RangeFilter slider component
    • ๐Ÿ— More QueryDSL builds
    • ๐Ÿ‘Œ Improved tsting
  • v0.3.2 Changes

    January 18, 2016
    • Correct Searchkit.version
  • v0.3.1 Changes

    January 18, 2016
    • ๐Ÿ‘ Better Documentation
  • v0.3.0 Changes

    January 18, 2016

    Overview

    • ๐Ÿ— Complete rewrite of query builder
    • โœ… More test coverage ( 92% coverage )

    ๐Ÿ‘Œ Improvements

    • ๐ŸŒ More comprehensive support for translations
    • ๐Ÿ‘ Better Documentation

    ๐Ÿ†• New

    • ๐Ÿ†• New NoHits Component

    ๐Ÿ’ฅ Breaking Changes

    • ๐Ÿšš No results blank state now handled by NoHits component, removed responsibility from Hits component. Please use NoHits component instead for this state.