@searchstax-inc/searchstudio-ux-js 4.2.2 → 4.2.10
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +8 -0
- package/README.md +2 -0
- package/dist/@searchstax-inc/searchstudio-ux-js.cjs +77 -74
- package/dist/@searchstax-inc/searchstudio-ux-js.d.mts +8 -1
- package/dist/@searchstax-inc/searchstudio-ux-js.d.ts +8 -1
- package/dist/@searchstax-inc/searchstudio-ux-js.iife.js +77 -74
- package/dist/@searchstax-inc/searchstudio-ux-js.mjs +57 -54
- package/dist/styles/mainTheme.css +47 -14
- package/dist/styles/mainTheme.css.map +1 -1
- package/dist/styles/scss/widgets/searchInput/style.scss +48 -13
- package/dist/templates.js +5 -3
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,6 +1,14 @@
|
|
|
1
1
|
# Change Log
|
|
2
2
|
|
|
3
3
|
All notable changes to the "searchstudio-ux-js" project will be documented in this file.
|
|
4
|
+
## [4.2.10]
|
|
5
|
+
### Features
|
|
6
|
+
- Added tracking of show more clicking and showing
|
|
7
|
+
- Add x icon to search bar for clearing input
|
|
8
|
+
|
|
9
|
+
### Bug Fixes
|
|
10
|
+
- Fixed package vulnerabilities
|
|
11
|
+
- Fixed search satisfaction tracking
|
|
4
12
|
|
|
5
13
|
## [4.2.2]
|
|
6
14
|
### Features
|
package/README.md
CHANGED
|
@@ -297,6 +297,8 @@ It receives the following props:
|
|
|
297
297
|
<div class="searchstax-search-input-container searchstax-search-input-container-new {{#locationEnabled}}searchstax-alternative-render{{/locationEnabled}}">
|
|
298
298
|
<div class="searchstax-search-input-wrapper">
|
|
299
299
|
<input type="text" id="searchstax-search-input" class="searchstax-search-input" placeholder="SEARCH FOR..." aria-label="Search" />
|
|
300
|
+
<button id="searchstax-clear-input-action-button" class="searchstax-cross-icon hidden" aria-label="clear input" role="button"></button>
|
|
301
|
+
<span id="searchstax-separator-icon" class="searchstax-separator hidden"></span>
|
|
300
302
|
</div>
|
|
301
303
|
<div id="searchstax-location-container" class="searchstax-location-container"></div>
|
|
302
304
|
<button class="searchstax-spinner-icon" id="searchstax-search-input-action-button" aria-label="search" role="button"></button>
|