@appbaseio/reactivesearch-vue 1.33.4 → 1.33.5

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.
Files changed (45) hide show
  1. package/dist/@appbaseio/reactivesearch-vue.umd.js +159 -105
  2. package/dist/@appbaseio/reactivesearch-vue.umd.js.map +1 -1
  3. package/dist/@appbaseio/reactivesearch-vue.umd.min.js +5 -5
  4. package/dist/@appbaseio/reactivesearch-vue.umd.min.js.map +1 -1
  5. package/dist/cjs/{DataSearch-2b5740ea.js → DataSearch-1c5c2202.js} +46 -37
  6. package/dist/cjs/DataSearch.js +1 -1
  7. package/dist/cjs/DynamicRangeSlider.js +5 -4
  8. package/dist/cjs/MultiDropdownList.js +5 -4
  9. package/dist/cjs/MultiList.js +5 -4
  10. package/dist/cjs/MultiRange.js +5 -4
  11. package/dist/cjs/RangeInput.js +5 -4
  12. package/dist/cjs/RangeSlider.js +5 -4
  13. package/dist/cjs/{ReactiveComponent-fd8d7403.js → ReactiveComponent-4e75c939.js} +13 -14
  14. package/dist/cjs/ReactiveComponent.js +2 -2
  15. package/dist/cjs/ReactiveList.js +5 -4
  16. package/dist/cjs/SelectedFilters.js +4 -3
  17. package/dist/cjs/SingleDropdownList.js +5 -4
  18. package/dist/cjs/SingleList.js +5 -4
  19. package/dist/cjs/SingleRange.js +5 -4
  20. package/dist/cjs/StateProvider.js +4 -3
  21. package/dist/cjs/ToggleButton.js +7 -6
  22. package/dist/cjs/index.js +2 -2
  23. package/dist/cjs/install.js +2 -2
  24. package/dist/cjs/version.js +1 -1
  25. package/dist/es/{DataSearch-68d2a78c.js → DataSearch-5bb904c5.js} +46 -37
  26. package/dist/es/DataSearch.js +1 -1
  27. package/dist/es/DynamicRangeSlider.js +5 -4
  28. package/dist/es/MultiDropdownList.js +5 -4
  29. package/dist/es/MultiList.js +5 -4
  30. package/dist/es/MultiRange.js +5 -4
  31. package/dist/es/RangeInput.js +5 -4
  32. package/dist/es/RangeSlider.js +5 -4
  33. package/dist/es/{ReactiveComponent-62fa87e0.js → ReactiveComponent-09c183c8.js} +21 -22
  34. package/dist/es/ReactiveComponent.js +2 -2
  35. package/dist/es/ReactiveList.js +5 -4
  36. package/dist/es/SelectedFilters.js +4 -3
  37. package/dist/es/SingleDropdownList.js +5 -4
  38. package/dist/es/SingleList.js +5 -4
  39. package/dist/es/SingleRange.js +5 -4
  40. package/dist/es/StateProvider.js +4 -3
  41. package/dist/es/ToggleButton.js +7 -6
  42. package/dist/es/index.js +2 -2
  43. package/dist/es/install.js +2 -2
  44. package/dist/es/version.js +1 -1
  45. package/package.json +2 -2
@@ -6386,7 +6386,8 @@
6386
6386
  searchboxId: props.searchboxId
6387
6387
  } : {}) : {}, {
6388
6388
  calendarInterval: props.calendarInterval,
6389
- endpoint: endpoint
6389
+ endpoint: endpoint,
6390
+ range: props.range
6390
6391
  });
6391
6392
  }
6392
6393
  return null;
@@ -6417,6 +6418,7 @@
6417
6418
  var aggregations = componentProps.aggregations;
6418
6419
  var pagination = void 0;
6419
6420
  var from = componentProps.from;
6421
+ var range = void 0;
6420
6422
  if (queryType === constants$1.queryTypes.term) {
6421
6423
  if (componentProps.showLoadMore && hasPaginationSupport(componentProps.componentType)) {
6422
6424
  pagination = true;
@@ -6487,6 +6489,36 @@
6487
6489
  };
6488
6490
  }
6489
6491
  }
6492
+ var rangeValue = void 0;
6493
+ if (componentProps.componentType === constants$1.componentTypes.dynamicRangeSlider) {
6494
+ rangeValue = store.aggregations[component + '__range__internal'];
6495
+ if (componentProps.nestedField) {
6496
+ rangeValue = rangeValue && store.aggregations[component + '__range__internal'][componentProps.nestedField].min ? {
6497
+ start: store.aggregations[component + '__range__internal'][componentProps.nestedField].min.value,
6498
+ end: store.aggregations[component + '__range__internal'][componentProps.nestedField].max.value
6499
+ } : null;
6500
+ } else {
6501
+ rangeValue = rangeValue && store.aggregations[component + '__range__internal'].min ? {
6502
+ start: store.aggregations[component + '__range__internal'].min.value,
6503
+ end: store.aggregations[component + '__range__internal'].max.value
6504
+ } : null;
6505
+ }
6506
+ } else {
6507
+ rangeValue = componentProps.range;
6508
+ }
6509
+ if (rangeValue) {
6510
+ if ((0, helper.isValidDateRangeQueryFormat)(componentProps.queryFormat)) {
6511
+ range = {
6512
+ start: (0, helper.formatDate)(new _xdate2["default"](rangeValue.start), componentProps),
6513
+ end: (0, helper.formatDate)(new _xdate2["default"](rangeValue.end), componentProps)
6514
+ };
6515
+ } else {
6516
+ range = {
6517
+ start: parseFloat(rangeValue.start),
6518
+ end: parseFloat(rangeValue.end)
6519
+ };
6520
+ }
6521
+ }
6490
6522
  }
6491
6523
  if (dateRangeComponents.includes(componentProps.componentType)) {
6492
6524
  if (value) {
@@ -6625,7 +6657,8 @@
6625
6657
  categoryValue: store.internalValues[component] ? store.internalValues[component].category : undefined,
6626
6658
  value: queryValue,
6627
6659
  pagination: pagination,
6628
- from: from
6660
+ from: from,
6661
+ range: range
6629
6662
  }, customOptions);
6630
6663
  };
6631
6664
  function flatReactProp(reactProp, componentID) {
@@ -14465,13 +14498,14 @@
14465
14498
  componentType: constants_1$1.reactiveList,
14466
14499
  internalComponent: ReactiveList.hasInternalComponent()
14467
14500
  }));
14468
- ReactiveList.install = function (Vue) {
14469
- Vue.component(ReactiveList.name, RLConnected);
14501
+ RLConnected.name = ReactiveList.name;
14502
+ RLConnected.install = function (Vue) {
14503
+ Vue.component(RLConnected.name, RLConnected);
14470
14504
  Vue.component(ResultListWrapper.name, ResultListWrapper);
14471
14505
  Vue.component(ResultCardsWrapper.name, ResultCardsWrapper);
14472
14506
  };
14473
14507
  // Add componentType for SSR
14474
- ReactiveList.componentType = constants_1$1.reactiveList;
14508
+ RLConnected.componentType = constants_1$1.reactiveList;
14475
14509
 
14476
14510
  function URL$1(url) {
14477
14511
  var pattern = RegExp("^(([^:/?#]*)?://)?(((.*)?@)?([^/?#]*)?)([^?#]*)(\\?([^#]*))?(#(.*))?");
@@ -18991,6 +19025,7 @@
18991
19025
  }
18992
19026
  this.handleTextChange = debounce$1(this.handleText, this.$props.debounce);
18993
19027
  this.updateDefaultQueryHandlerDebounced = debounce$1(this.updateDefaultQueryHandler, this.$props.debounce);
19028
+ this.updateQueryHandlerDebounced = debounce$1(this.updateQueryHandler, this.$props.debounce);
18994
19029
  // Set custom and default queries in store
18995
19030
  updateCustomQuery(this.componentId, this.setCustomQuery, this.$props, this.currentValue);
18996
19031
  updateDefaultQuery(this.componentId, this.setDefaultQuery, this.$props, this.currentValue);
@@ -19174,7 +19209,7 @@
19174
19209
  if (this.isPending && this.$options.isTagsMode && Array.isArray(newVal)) {
19175
19210
  this.isPending = false;
19176
19211
  }
19177
- this.setValue(newVal, true, this.$props, undefined, false, typeof newVal !== 'string' && this.$options.isTagsMode);
19212
+ this.setValue(newVal, true, this.$props, newVal === '' ? lib_7.CLEAR_VALUE : undefined, false, typeof newVal !== 'string' && this.$options.isTagsMode);
19178
19213
  }
19179
19214
  },
19180
19215
  defaultQuery: function defaultQuery(newVal, oldVal) {
@@ -19216,8 +19251,10 @@
19216
19251
  handleText: function handleText(value) {
19217
19252
  if (this.$props.autosuggest) {
19218
19253
  this.updateDefaultQueryHandlerDebounced(value, this.$props);
19219
- } else {
19220
- this.updateDefaultQueryHandlerDebounced(this.$props.componentId, value, this.$props);
19254
+ } else if (!this.$options.isTagsMode) {
19255
+ this.updateQueryHandlerDebounced(this.$props.componentId, value, this.$props);
19256
+ } else if (this.$options.isTagsMode) {
19257
+ this.$data.currentValue = value;
19221
19258
  }
19222
19259
  },
19223
19260
  validateDataField: function validateDataField() {
@@ -19362,10 +19399,10 @@
19362
19399
  } // in case of strict selection only SUGGESTION_SELECT should be able
19363
19400
  // to set the query otherwise the value should reset
19364
19401
 
19365
- if (props.strictSelection) {
19366
- if (cause === lib_7.SUGGESTION_SELECT || (_this.$options.isTagsMode ? _this.selectedTags.length === 0 : value === '')) {
19402
+ if (props.strictSelection && props.autosuggest) {
19403
+ if (cause === lib_7.SUGGESTION_SELECT || props.value !== undefined) {
19367
19404
  _this.updateQueryHandler(props.componentId, queryHandlerValue, props);
19368
- } else {
19405
+ } else if (_this.currentValue !== '') {
19369
19406
  _this.setValue('', true);
19370
19407
  }
19371
19408
  } else {
@@ -19491,17 +19528,20 @@
19491
19528
  this.onValueSelectedHandler('', lib_7.CLEAR_VALUE);
19492
19529
  },
19493
19530
  handleKeyDown: function handleKeyDown(event, highlightedIndex) {
19494
- var value = this.$props.value;
19531
+ var targetValue = event.target.value;
19532
+ var _this$$props2 = this.$props,
19533
+ value = _this$$props2.value,
19534
+ strictSelection = _this$$props2.strictSelection,
19535
+ size = _this$$props2.size;
19495
19536
  if (value !== undefined) {
19496
19537
  this.isPending = true;
19497
19538
  }
19498
19539
 
19499
19540
  // if a suggestion was selected, delegate the handling to suggestion handler
19500
- if (event.key === 'Enter' && highlightedIndex === null) {
19501
- this.setValue(event.target.value, true, this.$props, this.$options.isTagsMode ? lib_7.SUGGESTION_SELECT : undefined // to handle tags
19502
- );
19503
-
19504
- this.onValueSelectedHandler(event.target.value, lib_7.ENTER_PRESS);
19541
+ if (event.key === 'Enter' && (highlightedIndex === null || highlightedIndex < 0 || highlightedIndex === [].concat([].concat(this.suggestionsList).slice(0, size || 10), this.defaultSearchSuggestions, this.topSuggestions).length)) {
19542
+ this.isPending = false;
19543
+ this.setValue(this.$options.isTagsMode && strictSelection ? '' : targetValue, true, this.$props, undefined, false);
19544
+ this.onValueSelectedHandler(targetValue, lib_7.ENTER_PRESS);
19505
19545
  }
19506
19546
  // Need to review
19507
19547
  this.$emit('keyDown', event, this.triggerQuery);
@@ -19513,19 +19553,19 @@
19513
19553
  if (!this.$data.isOpen) {
19514
19554
  this.isOpen = true;
19515
19555
  }
19516
- var _this$$props2 = this.$props,
19517
- value = _this$$props2.value,
19518
- autosuggest = _this$$props2.autosuggest;
19556
+ var _this$$props3 = this.$props,
19557
+ value = _this$$props3.value,
19558
+ autosuggest = _this$$props3.autosuggest;
19519
19559
  if (value === undefined) {
19520
19560
  this.setValue(inputValue, false, this.$props, undefined, true, false);
19521
19561
  } else {
19522
19562
  this.isPending = true;
19563
+ this.currentValue = inputValue;
19523
19564
  this.$emit('change', inputValue, function (_temp2) {
19524
19565
  var _ref3 = _temp2 === void 0 ? {} : _temp2,
19525
19566
  _ref3$isOpen = _ref3.isOpen,
19526
19567
  isOpen = _ref3$isOpen === void 0 ? false : _ref3$isOpen;
19527
19568
  if (_this2.$options.isTagsMode && autosuggest) {
19528
- _this2.currentValue = value;
19529
19569
  _this2.isOpen = isOpen;
19530
19570
  _this2.updateDefaultQueryHandlerDebounced(_this2.currentValue, _this2.$props);
19531
19571
  return;
@@ -19613,9 +19653,9 @@
19613
19653
  finalSuggestionsList = [];
19614
19654
  }
19615
19655
  var h = this.$createElement;
19616
- var _this$$props3 = this.$props,
19617
- theme = _this$$props3.theme,
19618
- innerClass = _this$$props3.innerClass;
19656
+ var _this$$props4 = this.$props,
19657
+ theme = _this$$props4.theme,
19658
+ innerClass = _this$$props4.innerClass;
19619
19659
  var renderNoSuggestion = this.$scopedSlots.renderNoSuggestion || this.$props.renderNoSuggestion;
19620
19660
  var renderError = this.$scopedSlots.renderError || this.$props.renderError;
19621
19661
  var _this$$data = this.$data,
@@ -19719,13 +19759,13 @@
19719
19759
  },
19720
19760
  renderIcons: function renderIcons() {
19721
19761
  var h = this.$createElement;
19722
- var _this$$props4 = this.$props,
19723
- iconPosition = _this$$props4.iconPosition,
19724
- showClear = _this$$props4.showClear,
19725
- innerClass = _this$$props4.innerClass,
19726
- getMicInstance = _this$$props4.getMicInstance,
19727
- showVoiceSearch = _this$$props4.showVoiceSearch,
19728
- showIcon = _this$$props4.showIcon;
19762
+ var _this$$props5 = this.$props,
19763
+ iconPosition = _this$$props5.iconPosition,
19764
+ showClear = _this$$props5.showClear,
19765
+ innerClass = _this$$props5.innerClass,
19766
+ getMicInstance = _this$$props5.getMicInstance,
19767
+ showVoiceSearch = _this$$props5.showVoiceSearch,
19768
+ showIcon = _this$$props5.showIcon;
19729
19769
  var renderMic = this.$scopedSlots.renderMic || this.$props.renderMic;
19730
19770
  var currentValue = this.$data.currentValue;
19731
19771
  return h("div", [h(IconGroup, {
@@ -19809,11 +19849,11 @@
19809
19849
  render: function render() {
19810
19850
  var _this6 = this;
19811
19851
  var h = arguments[0];
19812
- var _this$$props5 = this.$props,
19813
- theme = _this$$props5.theme,
19814
- size = _this$$props5.size,
19815
- expandSuggestionsContainer = _this$$props5.expandSuggestionsContainer,
19816
- enableDefaultSuggestions = _this$$props5.enableDefaultSuggestions;
19852
+ var _this$$props6 = this.$props,
19853
+ theme = _this$$props6.theme,
19854
+ size = _this$$props6.size,
19855
+ expandSuggestionsContainer = _this$$props6.expandSuggestionsContainer,
19856
+ enableDefaultSuggestions = _this$$props6.enableDefaultSuggestions;
19817
19857
  var _this$$scopedSlots = this.$scopedSlots,
19818
19858
  recentSearchesIcon = _this$$scopedSlots.recentSearchesIcon,
19819
19859
  popularSearchesIcon = _this$$scopedSlots.popularSearchesIcon;
@@ -19975,7 +20015,7 @@
19975
20015
  }
19976
20016
  })),
19977
20017
  "domProps": _extends({}, getInputProps({
19978
- value: _this6.$data.currentValue === null ? '' : _this6.$data.currentValue
20018
+ value: _this6.$data.currentValue === null || typeof _this6.$data.currentValue !== 'string' ? '' : _this6.$data.currentValue
19979
20019
  }))
19980
20020
  }), _this6.renderIcons(), !expandSuggestionsContainer && renderSuggestionsContainer()]), ' ', _this6.renderInputAddonAfter()]), expandSuggestionsContainer && renderSuggestionsContainer(), _this6.renderTags()]);
19981
20021
  }
@@ -20017,7 +20057,7 @@
20017
20057
  value: this.$data.currentValue ? this.$data.currentValue : ''
20018
20058
  }),
20019
20059
  "ref": this.$props.innerRef
20020
- }), this.renderIcons()]), this.renderInputAddonAfter()])])]);
20060
+ }), this.renderIcons()]), this.renderInputAddonAfter()]), this.renderTags()])]);
20021
20061
  },
20022
20062
  destroyed: function destroyed() {
20023
20063
  document.removeEventListener('keydown', this.onKeyDown);
@@ -20192,11 +20232,14 @@
20192
20232
  componentType: constants_1$1.dataSearch,
20193
20233
  internalComponent: DataSearch.hasInternalComponent()
20194
20234
  }));
20195
- DataSearch.install = function (Vue) {
20196
- Vue.component(DataSearch.name, DSConnected);
20235
+ DSConnected.name = DataSearch.name;
20236
+
20237
+ // plugins usage
20238
+ DSConnected.install = function (Vue) {
20239
+ Vue.component(DSConnected.name, DSConnected);
20197
20240
  };
20198
20241
  // Add componentType for SSR
20199
- DataSearch.componentType = constants_1$1.dataSearch;
20242
+ DSConnected.componentType = constants_1$1.dataSearch;
20200
20243
 
20201
20244
  var _templateObject$k;
20202
20245
  var AutofillSvgIcon = index$1('button')(_templateObject$k || (_templateObject$k = _taggedTemplateLiteralLoose(["\n\tdisplay: flex;\n\tmargin-left: auto;\n\tposition: relative;\n\tright: -3px;\n\tborder: none;\n\toutline: none;\n\tbackground: transparent;\n\tpadding: 0;\n\tz-index: 111000;\n\n\tsvg {\n\t\tcursor: pointer;\n\t\tfill: #707070;\n\t\theight: 20px;\n\t}\n\n\t&:hover {\n\t\tsvg {\n\t\t\tfill: #1c1a1a;\n\t\t}\n\t}\n"])));
@@ -20438,7 +20481,6 @@
20438
20481
  // selected value is cleared, call onValueSelected
20439
20482
  this.onValueSelectedHandler('', lib_7.CLEAR_VALUE);
20440
20483
  }
20441
- // if (this.$props.value === undefined) {
20442
20484
  if (this.$options.isTagsMode) {
20443
20485
  // handling reset of tags through SelectedFilters or URL
20444
20486
  this.selectedTags = [];
@@ -20448,7 +20490,6 @@
20448
20490
  cause = lib_7.SUGGESTION_SELECT;
20449
20491
  }
20450
20492
  this.setValue(newVal || '', true, this.$props, cause);
20451
- // }
20452
20493
  }
20453
20494
  },
20454
20495
  focusShortcuts: function focusShortcuts() {
@@ -20591,8 +20632,7 @@
20591
20632
  if (typeof value === 'string' && !!value) {
20592
20633
  _this.selectedTags.push(value);
20593
20634
  } else if (Array.isArray(value) && !isEqual$5(_this.selectedTags, value)) {
20594
- var mergedArray = Array.from(new Set([].concat(_this.selectedTags, value)));
20595
- _this.selectedTags = mergedArray;
20635
+ _this.selectedTags = value;
20596
20636
  }
20597
20637
  } else if (value) {
20598
20638
  _this.selectedTags = typeof value !== 'string' ? value : [].concat(value);
@@ -21416,11 +21456,12 @@
21416
21456
  componentType: constants_1$1.searchBox,
21417
21457
  internalComponent: true
21418
21458
  }));
21419
- SearchBox.install = function (Vue) {
21420
- Vue.component(SearchBox.name, SBConnected);
21459
+ SBConnected.name = SearchBox.name;
21460
+ SBConnected.install = function (Vue) {
21461
+ Vue.component(SBConnected.name, SBConnected);
21421
21462
  };
21422
21463
  // Add componentType for SSR
21423
- SearchBox.componentType = constants_1$1.searchBox;
21464
+ SBConnected.componentType = constants_1$1.searchBox;
21424
21465
 
21425
21466
  var _templateObject$l, _templateObject2$8, _templateObject3$6, _templateObject4$5, _templateObject5$3, _templateObject6$3;
21426
21467
  var item = {
@@ -21934,12 +21975,13 @@
21934
21975
  componentType: constants_1$1.singleList,
21935
21976
  internalComponent: SingleList.hasInternalComponent()
21936
21977
  }));
21937
- SingleList.install = function (Vue) {
21938
- Vue.component(SingleList.name, ListConnected);
21978
+ ListConnected.name = SingleList.name;
21979
+ ListConnected.install = function (Vue) {
21980
+ Vue.component(ListConnected.name, ListConnected);
21939
21981
  };
21940
21982
 
21941
21983
  // Add componentType for SSR
21942
- SingleList.componentType = constants_1$1.singleList;
21984
+ ListConnected.componentType = constants_1$1.singleList;
21943
21985
 
21944
21986
  var updateQuery$4 = lib_5.updateQuery,
21945
21987
  setQueryOptions$3 = lib_5.setQueryOptions,
@@ -22468,12 +22510,13 @@
22468
22510
  componentType: constants_1$1.multiList,
22469
22511
  internalComponent: MultiList.hasInternalComponent()
22470
22512
  }));
22471
- MultiList.install = function (Vue) {
22472
- Vue.component(MultiList.name, ListConnected$1);
22513
+ ListConnected$1.name = MultiList.name;
22514
+ ListConnected$1.install = function (Vue) {
22515
+ Vue.component(ListConnected$1.name, ListConnected$1);
22473
22516
  };
22474
22517
 
22475
22518
  // Add componentType for SSR
22476
- MultiList.componentType = constants_1$1.multiList;
22519
+ ListConnected$1.componentType = constants_1$1.multiList;
22477
22520
 
22478
22521
  var _templateObject$m, _templateObject2$9, _templateObject3$7, _templateObject4$6;
22479
22522
  var small = css(_templateObject$m || (_templateObject$m = _taggedTemplateLiteralLoose(["\n\tmin-height: 0;\n\theight: 30px;\n\tborder: 0;\n\tbox-shadow: rgba(0, 0, 0, 0.3) 0px 1px 4px -1px;\n\tborder-radius: 2px;\n"])));
@@ -23174,12 +23217,13 @@
23174
23217
  componentType: constants_1$1.singleDropdownList,
23175
23218
  internalComponent: SingleDropdownList.hasInternalComponent()
23176
23219
  }));
23177
- SingleDropdownList.install = function (Vue) {
23178
- Vue.component(SingleDropdownList.name, ListConnected$2);
23220
+ ListConnected$2.name = SingleDropdownList.name;
23221
+ ListConnected$2.install = function (Vue) {
23222
+ Vue.component(ListConnected$2.name, ListConnected$2);
23179
23223
  };
23180
23224
 
23181
23225
  // Add componentType for SSR
23182
- SingleDropdownList.componentType = constants_1$1.singleDropdownList;
23226
+ ListConnected$2.componentType = constants_1$1.singleDropdownList;
23183
23227
 
23184
23228
  var updateQuery$6 = lib_5.updateQuery,
23185
23229
  setQueryOptions$5 = lib_5.setQueryOptions,
@@ -23688,12 +23732,13 @@
23688
23732
  componentType: constants_1$1.multiDropdownList,
23689
23733
  internalComponent: MultiDropdownList.hasInternalComponent()
23690
23734
  }));
23691
- MultiDropdownList.install = function (Vue) {
23692
- Vue.component(MultiDropdownList.name, ListConnected$3);
23735
+ ListConnected$3.name = MultiDropdownList.name;
23736
+ ListConnected$3.install = function (Vue) {
23737
+ Vue.component(ListConnected$3.name, ListConnected$3);
23693
23738
  };
23694
23739
 
23695
23740
  // Add componentType for SSR
23696
- MultiDropdownList.componentType = constants_1$1.multiDropdownList;
23741
+ ListConnected$3.componentType = constants_1$1.multiDropdownList;
23697
23742
 
23698
23743
  var updateQuery$7 = lib_5.updateQuery,
23699
23744
  setQueryOptions$6 = lib_5.setQueryOptions,
@@ -23980,14 +24025,15 @@
23980
24025
  setQueryOptions: setQueryOptions$6,
23981
24026
  setCustomQuery: setCustomQuery$6
23982
24027
  };
23983
- var ListConnected$4 = PreferencesConsumer(ComponentWrapper$1(connect(mapStateToProps$9, mapDispatchtoProps$6)(ToggleButton), {
24028
+ var TBConnected = PreferencesConsumer(ComponentWrapper$1(connect(mapStateToProps$9, mapDispatchtoProps$6)(ToggleButton), {
23984
24029
  componentType: constants_1$1.toggleButton
23985
24030
  }));
23986
- ToggleButton.install = function (Vue) {
23987
- Vue.component(ToggleButton.name, ListConnected$4);
24031
+ TBConnected.name = ToggleButton.name;
24032
+ TBConnected.install = function (Vue) {
24033
+ Vue.component(TBConnected.name, TBConnected);
23988
24034
  };
23989
24035
  // Add componentType for SSR
23990
- ToggleButton.componentType = constants_1$1.toggleButton;
24036
+ TBConnected.componentType = constants_1$1.toggleButton;
23991
24037
 
23992
24038
  /*!
23993
24039
  * vue-no-ssr v1.1.1
@@ -24467,12 +24513,13 @@
24467
24513
  updateComponentProps: updateComponentProps$2
24468
24514
  };
24469
24515
  var RangeConnected = PreferencesConsumer(connect(mapStateToProps$a, mapDispatchtoProps$7)(DynamicRangeSlider));
24470
- DynamicRangeSlider.install = function (Vue) {
24471
- Vue.component(DynamicRangeSlider.name, RangeConnected);
24516
+ RangeConnected.name = DynamicRangeSlider.name;
24517
+ RangeConnected.install = function (Vue) {
24518
+ Vue.component(RangeConnected.name, RangeConnected);
24472
24519
  };
24473
24520
 
24474
24521
  // Add componentType for SSR
24475
- DynamicRangeSlider.componentType = constants_1$1.dynamicRangeSlider;
24522
+ RangeConnected.componentType = constants_1$1.dynamicRangeSlider;
24476
24523
 
24477
24524
  var updateQuery$9 = lib_5.updateQuery,
24478
24525
  setQueryOptions$8 = lib_5.setQueryOptions,
@@ -24673,11 +24720,12 @@
24673
24720
  var RangeConnected$1 = PreferencesConsumer(ComponentWrapper$1(connect(mapStateToProps$b, mapDispatchtoProps$8)(SingleRange), {
24674
24721
  componentType: constants_1$1.singleRange
24675
24722
  }));
24676
- SingleRange.install = function (Vue) {
24677
- Vue.component(SingleRange.name, RangeConnected$1);
24723
+ RangeConnected$1.name = SingleRange.name;
24724
+ RangeConnected$1.install = function (Vue) {
24725
+ Vue.component(RangeConnected$1.name, RangeConnected$1);
24678
24726
  };
24679
24727
  // Add componentType for SSR
24680
- SingleRange.componentType = constants_1$1.singleRange;
24728
+ RangeConnected$1.componentType = constants_1$1.singleRange;
24681
24729
 
24682
24730
  var updateQuery$a = lib_5.updateQuery,
24683
24731
  setQueryOptions$9 = lib_5.setQueryOptions,
@@ -24941,11 +24989,12 @@
24941
24989
  var RangeConnected$2 = PreferencesConsumer(ComponentWrapper$1(connect(mapStateToProps$c, mapDispatchtoProps$9)(MultiRange), {
24942
24990
  componentType: constants_1$1.multiRange
24943
24991
  }));
24944
- MultiRange.install = function (Vue) {
24945
- Vue.component(MultiRange.name, RangeConnected$2);
24992
+ RangeConnected$2.name = MultiRange.name;
24993
+ RangeConnected$2.install = function (Vue) {
24994
+ Vue.component(RangeConnected$2.name, RangeConnected$2);
24946
24995
  };
24947
24996
  // Add componentType for SSR
24948
- MultiRange.componentType = constants_1$1.multiRange;
24997
+ RangeConnected$2.componentType = constants_1$1.multiRange;
24949
24998
 
24950
24999
  var updateQuery$b = lib_5.updateQuery,
24951
25000
  setQueryOptions$a = lib_5.setQueryOptions,
@@ -25192,12 +25241,13 @@
25192
25241
  var RangeConnected$3 = PreferencesConsumer(ComponentWrapper$1(connect(mapStateToProps$d, mapDispatchtoProps$a)(RangeSlider), {
25193
25242
  componentType: constants_1$1.rangeSlider
25194
25243
  }));
25195
- RangeSlider.install = function (Vue) {
25196
- Vue.component(RangeSlider.name, RangeConnected$3);
25244
+ RangeConnected$3.name = RangeSlider.name;
25245
+ RangeConnected$3.install = function (Vue) {
25246
+ Vue.component(RangeConnected$3.name, RangeConnected$3);
25197
25247
  };
25198
25248
 
25199
25249
  // Add componentType for SSR
25200
- RangeSlider.componentType = constants_1$1.rangeSlider;
25250
+ RangeConnected$3.componentType = constants_1$1.rangeSlider;
25201
25251
 
25202
25252
  var _templateObject$p, _templateObject2$b;
25203
25253
  var alert = function alert(_ref) {
@@ -25494,12 +25544,13 @@
25494
25544
  var RangeConnected$4 = PreferencesConsumer(ComponentWrapper$1(connect(mapStateToProps$e, {})(RangeInput), {
25495
25545
  componentType: constants_1$1.rangeInput
25496
25546
  }));
25497
- RangeInput.install = function (Vue) {
25498
- Vue.component(RangeInput.name, RangeConnected$4);
25547
+ RangeConnected$4.name = RangeInput.name;
25548
+ RangeConnected$4.install = function (Vue) {
25549
+ Vue.component(RangeConnected$4.name, RangeConnected$4);
25499
25550
  };
25500
25551
 
25501
25552
  // Add componentType for SSR
25502
- RangeInput.componentType = constants_1$1.rangeInput;
25553
+ RangeConnected$4.componentType = constants_1$1.rangeInput;
25503
25554
 
25504
25555
  var _excluded = ["options"];
25505
25556
  var updateQuery$c = lib_5.updateQuery,
@@ -25817,7 +25868,7 @@
25817
25868
  break;
25818
25869
  // basic components
25819
25870
  case constants_1$1.toggleButton:
25820
- component = ListConnected$4;
25871
+ component = TBConnected;
25821
25872
  break;
25822
25873
  // range components
25823
25874
  case constants_1$1.dynamicRangeSlider:
@@ -25844,12 +25895,13 @@
25844
25895
  });
25845
25896
  }
25846
25897
  });
25847
- ReactiveComponent.install = function (Vue) {
25848
- Vue.component(ReactiveComponent.name, RcConnected);
25898
+ RcConnected.name = ReactiveComponent.name;
25899
+ RcConnected.install = function (Vue) {
25900
+ Vue.component(RcConnected.name, RcConnected);
25849
25901
  };
25850
25902
 
25851
25903
  // Add componentType for SSR
25852
- ReactiveComponent.componentType = constants_1$1.reactiveComponent;
25904
+ RcConnected.componentType = constants_1$1.reactiveComponent;
25853
25905
 
25854
25906
  var setValue$2 = lib_5.setValue,
25855
25907
  clearValues = lib_5.clearValues,
@@ -26013,8 +26065,9 @@
26013
26065
  resetValuesToDefault: resetValuesToDefault
26014
26066
  };
26015
26067
  var RcConnected$1 = connect(mapStateToProps$g, mapDispatchtoProps$c)(SelectedFilters);
26016
- SelectedFilters.install = function (Vue) {
26017
- Vue.component(SelectedFilters.name, RcConnected$1);
26068
+ RcConnected$1.name = SelectedFilters.name;
26069
+ RcConnected$1.install = function (Vue) {
26070
+ Vue.component(RcConnected$1.name, RcConnected$1);
26018
26071
  };
26019
26072
 
26020
26073
  var ResultCardTitle = {
@@ -26460,8 +26513,9 @@
26460
26513
  setSearchStateFn: setSearchState
26461
26514
  };
26462
26515
  var StateProviderConnected = connect(mapStateToProps$h, mapDispatchtoProps$d)(StateProvider);
26463
- StateProvider.install = function (Vue) {
26464
- Vue.component(StateProvider.name, StateProviderConnected);
26516
+ StateProviderConnected.name = StateProvider.name;
26517
+ StateProviderConnected.install = function (Vue) {
26518
+ Vue.component(StateProviderConnected.name, StateProviderConnected);
26465
26519
  };
26466
26520
 
26467
26521
  function ownKeys$1(object, enumerableOnly) {
@@ -35043,9 +35097,9 @@
35043
35097
  });
35044
35098
  }
35045
35099
 
35046
- var version = "1.33.4";
35100
+ var version = "1.33.5";
35047
35101
 
35048
- var components$1 = [ReactiveList, ResultCard, ResultList, ReactiveBase, DataSearch, SearchBox, SingleList, MultiList, SingleRange, MultiRange, RangeSlider, DynamicRangeSlider, ReactiveComponent, SelectedFilters, ToggleButton, SingleDropdownList, MultiDropdownList, StateProvider, RangeInput];
35102
+ var components$1 = [RLConnected, ResultCard, ResultList, ReactiveBase, DSConnected, SBConnected, ListConnected, ListConnected$1, RangeConnected$1, RangeConnected$2, RangeConnected$3, RangeConnected, RcConnected, RcConnected$1, TBConnected, ListConnected$2, ListConnected$3, StateProviderConnected, RangeConnected$4];
35049
35103
  function install (Vue) {
35050
35104
  components$1.map(function (component) {
35051
35105
  Vue.use(component);
@@ -35062,26 +35116,26 @@
35062
35116
  install: install
35063
35117
  };
35064
35118
 
35065
- exports.DataSearch = DataSearch;
35066
- exports.DynamicRangeSlider = DynamicRangeSlider;
35067
- exports.MultiDropdownList = MultiDropdownList;
35068
- exports.MultiList = MultiList;
35069
- exports.MultiRange = MultiRange;
35070
- exports.RangeInput = RangeInput;
35071
- exports.RangeSlider = RangeSlider;
35119
+ exports.DataSearch = DSConnected;
35120
+ exports.DynamicRangeSlider = RangeConnected;
35121
+ exports.MultiDropdownList = ListConnected$3;
35122
+ exports.MultiList = ListConnected$1;
35123
+ exports.MultiRange = RangeConnected$2;
35124
+ exports.RangeInput = RangeConnected$4;
35125
+ exports.RangeSlider = RangeConnected$3;
35072
35126
  exports.ReactiveBase = ReactiveBase;
35073
- exports.ReactiveComponent = ReactiveComponent;
35127
+ exports.ReactiveComponent = RcConnected;
35074
35128
  exports.ReactiveGoogleMap = ReactiveGoogleMap;
35075
- exports.ReactiveList = ReactiveList;
35129
+ exports.ReactiveList = RLConnected;
35076
35130
  exports.ResultCard = ResultCard;
35077
35131
  exports.ResultList = ResultList;
35078
- exports.SearchBox = SearchBox;
35079
- exports.SelectedFilters = SelectedFilters;
35080
- exports.SingleDropdownList = SingleDropdownList;
35081
- exports.SingleList = SingleList;
35082
- exports.SingleRange = SingleRange;
35083
- exports.StateProvider = StateProvider;
35084
- exports.ToggleButton = ToggleButton;
35132
+ exports.SearchBox = SBConnected;
35133
+ exports.SelectedFilters = RcConnected$1;
35134
+ exports.SingleDropdownList = ListConnected$2;
35135
+ exports.SingleList = ListConnected;
35136
+ exports.SingleRange = RangeConnected$1;
35137
+ exports.StateProvider = StateProviderConnected;
35138
+ exports.ToggleButton = TBConnected;
35085
35139
  exports.componentTypes = constants_1$1;
35086
35140
  exports.default = index$4;
35087
35141
  exports.initReactivesearch = initReactivesearch;