@searchstax-inc/searchstudio-ux-vue 0.2.1 → 0.2.4
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/README.md +16 -0
- package/dist/@searchstax-inc/components/SearchstaxFacetsWidget.vue.d.ts +1688 -183
- package/dist/@searchstax-inc/components/SearchstaxPaginationWidget.vue.d.ts +1 -0
- package/dist/@searchstax-inc/components/SearchstaxPaginationWidget.vue.d.ts.map +1 -1
- package/dist/@searchstax-inc/components/SearchstaxResultWidget.vue.d.ts +1716 -195
- package/dist/@searchstax-inc/searchstudio-ux-vue.cjs +29 -12
- package/dist/@searchstax-inc/searchstudio-ux-vue.iife.js +29 -12
- package/dist/@searchstax-inc/searchstudio-ux-vue.mjs +752 -573
- package/dist/@searchstax-inc/stores/searchstaxStore.d.ts +1688 -183
- package/package.json +2 -2
package/README.md
CHANGED
|
@@ -206,6 +206,11 @@ example of results widget initialization with minimum options
|
|
|
206
206
|
<SearchstaxResultWidget :afterLinkClick="afterLinkClick"></SearchstaxResultWidget>
|
|
207
207
|
```
|
|
208
208
|
|
|
209
|
+
example of results widget initialization with infinite scroll behavior
|
|
210
|
+
```
|
|
211
|
+
<SearchstaxResultWidget :afterLinkClick="afterLinkClick" :resultsPerPage="3" :renderMethod="'infiniteScroll'"></SearchstaxResultWidget>
|
|
212
|
+
```
|
|
213
|
+
|
|
209
214
|
example of result widget initialization with template override
|
|
210
215
|
```
|
|
211
216
|
<SearchstaxResultWidget :afterLinkClick="afterLinkClick">
|
|
@@ -308,6 +313,17 @@ example of pagination widget initialization with various options
|
|
|
308
313
|
</div>
|
|
309
314
|
</template>
|
|
310
315
|
```
|
|
316
|
+
example of pagination widget initialization with infinite scroll template override
|
|
317
|
+
```
|
|
318
|
+
<template #infiniteScroll="{ nextPage }">
|
|
319
|
+
<div className="searchstax-pagination-container"
|
|
320
|
+
<a
|
|
321
|
+
class="searchstax-pagination-load-more"
|
|
322
|
+
@click="nextPage"
|
|
323
|
+
>Load More override</a>
|
|
324
|
+
</div>
|
|
325
|
+
</template>
|
|
326
|
+
```
|
|
311
327
|
|
|
312
328
|
### Facets Widget ###
|
|
313
329
|
|