searchkit

Search UI for Elasticsearch & Opensearch. Compatible with Algolia's Instantsearch and Autocomplete components. React & Vue support

APACHE-2.0 License

Downloads
162K
Stars
4.7K
Committers
64

Bot releases are visible (Hide)

searchkit - add readme + findability changes

Published by github-actions[bot] almost 4 years ago

searchkit - RangeSlider fix: Level indications + flexible boundaries + Removing 0 min range filters

Published by github-actions[bot] almost 4 years ago

searchkit - fix(searchkit/cli): fix issue with cli not working

Published by github-actions[bot] almost 4 years ago

lib was not being built prior to publishing. issue was the build step wasn't scoped in

searchkit - Indexing guide

Published by github-actions[bot] almost 4 years ago

Provides a guide and a CLI to make setting up elasticsearch for searchkit easier.

You define fields via configuration and based on your fields requirements (whether its searchable, facet or stored) will create a elasticsearch mapping file for you and example searchkit config.

First step is via CLI and future step is a website to make it interactive.

searchkit - Search on load

Published by github-actions[bot] almost 4 years ago

searchkit - Https performance improvements

Published by github-actions[bot] almost 4 years ago

searchkit - Fix: combobox applying filters

Published by github-actions[bot] almost 4 years ago

searchkit - fix: fix apollo client cache issues

Published by github-actions[bot] almost 4 years ago

Changes

This release will fix some of the apollo caching issues that we have been having. There are a number of breaking changes that you will need to do for this release

Within the searchkit configuration for facets, you will need to rename the id property to identifier:

before

new RefinementSelectFacet({
  field: 'actors.raw',
  id: 'actors',  <--- THIS NEEDS TO BE RENAMED TO IDENTIFIER
  label: 'Actors'
})

After:

new RefinementSelectFacet({
  field: 'actors.raw',
  identifier: 'actors',
  label: 'Actors'
})

Then you will need to update the graphql query within facets node and appliedFilters node

   facets {
      identifier <--- this use to be id 
   }

#797

searchkit - Improve testing + fix total size issue when no results

Published by github-actions[bot] almost 4 years ago

searchkit - feat(#788) add custom query class

Published by github-actions[bot] almost 4 years ago

searchkit - Sorting Selector + Improvements to ComboBox

Published by github-actions[bot] almost 4 years ago

  • Sorting Configuration
  • Update Resolver to accept a sorting preference
  • Manage state of sort in @searchkit/client
  • Add sorting Selector to Searchkit UI
  • Documentation for @searchkit/client
  • Documentation for @searchkit/elastic-ui
  • Documentation for @searchkit/apollo-resolvers
  • Document release
searchkit - Searchkit/ client units + RC 12 bump

Published by github-actions[bot] almost 4 years ago

searchkit -

Published by joemcelroy almost 4 years ago

searchkit - 2.3.1-1

Published by joemcelroy about 6 years ago

  • auto deploying of versions via CI
  • react updates
  • typescript updates
searchkit - v2.3.0

Published by joemcelroy almost 7 years ago

searchkit - v2.3.0-9

Published by ssetem almost 7 years ago

  • standardise hierarchical components
searchkit - v2.3.0-8

Published by ssetem almost 7 years ago

  • detect which history to use depending on env (node/browser)
  • reset guid counter when SearchkitProvider is unmounted for react-routers and others
searchkit - v2.3.0-7

Published by ssetem almost 7 years ago

  • Splitout searchkit into monorepo with lerna
  • Fix umd bundling
searchkit - v2.3.0-6

Published by ssetem about 7 years ago

lib folder fixes

searchkit - v2.3.0-5

Published by ssetem about 7 years ago

fix lib references for main + typescript