Releases: sajari/website-search-integration
Releases · sajari/website-search-integration
v1.4.11
v1.4.8
- Updated @sajari/sdk-react version to v2.8.6
v1.4.0
Changes
- Upgrade to new @sajari/sdk-react
- Adds localization
- Adds styling and theming to config object
- Adds inputMode member to config object, allows for
typeahead/InstantSearch to be enabled
v1.3.2
Additions
It is now possible to disable adding search queries to the address bar.
Config
{
project: "example",
collection: "example",
// ...
updateQueryStringParam: false // Setting this to false, disables updating the address bar
}
v1.3.1
Additions
Search queries are now added the the address bar to enable users to navigate back to a search results page. The query param used defaults to q
but is configurable via the top level config option urlQueryParam
.
Config
{
project: "example",
collection: "example",
// ...
urlQueryParam: "q"
}
Address bar after search for "example search"
example.com/?q=example+search
Changes
Upgraded dependencies
v1.3.0
Additions
Added two new integration types, search box and dynamic content. See readme for more info.
Changes
Upgraded dependencies
Renamed CSS classes
sj-search-input-holder-outer
->sj-search-holder-outer
sj-search-input-holder-innter
->sj-search-holder-inner
Changed event naming
Previously events could be subscribed to via their name only sjUI("sub", "search-sent", fn)
. Events now need to be prefixed with the pipeline they're associated with, eg search-sent
-> pipeline.search-sent
. See readme for details.