@bridgeline-digital/hawksearch-handlebars-ui 6.3.0 → 6.3.2
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 +13 -0
- package/dist/hawksearch-handlebars-ui.cjs +2 -2
- package/dist/hawksearch-handlebars-ui.js +8 -4
- package/dist/hawksearch-handlebars-ui.min.js +4 -4
- package/dist/hawksearch-handlebars-ui.umd.cjs +2 -2
- package/dist/index.d.ts +8 -0
- package/docs/assets/search.js +1 -1
- package/docs/index.html +2 -2
- package/docs/interfaces/Configuration.SearchFieldComponentConfig.html +13 -0
- package/docs/interfaces/Configuration.SmartSearchFieldComponentConfig.html +2 -1
- package/docs/interfaces/Configuration.UnifiedSearchFieldComponentConfig.html +1 -1
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -1133,6 +1133,14 @@ declare interface SearchFieldComponentConfig extends BaseComponentConfig {
|
|
|
1133
1133
|
* `false`
|
|
1134
1134
|
*/
|
|
1135
1135
|
disableAutofill?: boolean;
|
|
1136
|
+
/**
|
|
1137
|
+
* Specifies the debounce value between fetching data and keypress (ms)
|
|
1138
|
+
*
|
|
1139
|
+
* #### Default Value
|
|
1140
|
+
* `250`
|
|
1141
|
+
* *For more information, see {@link Components}.*
|
|
1142
|
+
*/
|
|
1143
|
+
searchDebounceValue?: number;
|
|
1136
1144
|
}
|
|
1137
1145
|
|
|
1138
1146
|
/**
|