@appbaseio/reactivesearch-vue 1.33.3 → 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 (51) hide show
  1. package/dist/@appbaseio/reactivesearch-vue.umd.js +273 -135
  2. package/dist/@appbaseio/reactivesearch-vue.umd.js.map +1 -1
  3. package/dist/@appbaseio/reactivesearch-vue.umd.min.js +7 -7
  4. package/dist/@appbaseio/reactivesearch-vue.umd.min.js.map +1 -1
  5. package/dist/cjs/{ComponentWrapper-9318cece.js → ComponentWrapper-b6d4660c.js} +13 -4
  6. package/dist/cjs/{DataSearch-e4822dbf.js → DataSearch-1c5c2202.js} +47 -38
  7. package/dist/cjs/DataSearch.js +2 -2
  8. package/dist/cjs/DynamicRangeSlider.js +5 -4
  9. package/dist/cjs/MultiDropdownList.js +6 -5
  10. package/dist/cjs/MultiList.js +6 -5
  11. package/dist/cjs/MultiRange.js +6 -5
  12. package/dist/cjs/RangeInput.js +6 -5
  13. package/dist/cjs/RangeSlider.js +6 -5
  14. package/dist/cjs/ReactiveBase.js +5 -2
  15. package/dist/cjs/{ReactiveComponent-b8efb0cf.js → ReactiveComponent-4e75c939.js} +14 -15
  16. package/dist/cjs/ReactiveComponent.js +3 -3
  17. package/dist/cjs/ReactiveGoogleMap.js +1 -1
  18. package/dist/cjs/ReactiveList.js +6 -5
  19. package/dist/cjs/SelectedFilters.js +4 -3
  20. package/dist/cjs/SingleDropdownList.js +6 -5
  21. package/dist/cjs/SingleList.js +6 -5
  22. package/dist/cjs/SingleRange.js +6 -5
  23. package/dist/cjs/StateProvider.js +4 -3
  24. package/dist/cjs/ToggleButton.js +8 -7
  25. package/dist/cjs/index.js +3 -3
  26. package/dist/cjs/install.js +3 -3
  27. package/dist/cjs/version.js +1 -1
  28. package/dist/es/{ComponentWrapper-240450cc.js → ComponentWrapper-8042aa35.js} +13 -4
  29. package/dist/es/{DataSearch-5ddfba23.js → DataSearch-5bb904c5.js} +47 -38
  30. package/dist/es/DataSearch.js +2 -2
  31. package/dist/es/DynamicRangeSlider.js +5 -4
  32. package/dist/es/MultiDropdownList.js +6 -5
  33. package/dist/es/MultiList.js +6 -5
  34. package/dist/es/MultiRange.js +6 -5
  35. package/dist/es/RangeInput.js +6 -5
  36. package/dist/es/RangeSlider.js +6 -5
  37. package/dist/es/ReactiveBase.js +5 -2
  38. package/dist/es/{ReactiveComponent-59107264.js → ReactiveComponent-09c183c8.js} +22 -23
  39. package/dist/es/ReactiveComponent.js +3 -3
  40. package/dist/es/ReactiveGoogleMap.js +1 -1
  41. package/dist/es/ReactiveList.js +6 -5
  42. package/dist/es/SelectedFilters.js +4 -3
  43. package/dist/es/SingleDropdownList.js +6 -5
  44. package/dist/es/SingleList.js +6 -5
  45. package/dist/es/SingleRange.js +6 -5
  46. package/dist/es/StateProvider.js +4 -3
  47. package/dist/es/ToggleButton.js +8 -7
  48. package/dist/es/index.js +3 -3
  49. package/dist/es/install.js +3 -3
  50. package/dist/es/version.js +1 -1
  51. package/package.json +2 -2
@@ -771,6 +771,8 @@
771
771
  var SET_GOOGLE_MAP_SCRIPT_LOADING = exports.SET_GOOGLE_MAP_SCRIPT_LOADING = 'SET_GOOGLE_MAP_SCRIPT_LOADING';
772
772
  var SET_GOOGLE_MAP_SCRIPT_LOADED = exports.SET_GOOGLE_MAP_SCRIPT_LOADED = 'SET_GOOGLE_MAP_SCRIPT_LOADED';
773
773
  var SET_GOOGLE_MAP_SCRIPT_ERROR = exports.SET_GOOGLE_MAP_SCRIPT_ERROR = 'SET_GOOGLE_MAP_SCRIPT_ERROR';
774
+ var SET_REGISTERED_COMPONENT_TIMESTAMP = exports.SET_REGISTERED_COMPONENT_TIMESTAMP = 'SET_REGISTERED_COMPONENT_TIMESTAMP';
775
+ var REMOVE_REGISTERED_COMPONENT_TIMESTAMP = exports.REMOVE_REGISTERED_COMPONENT_TIMESTAMP = 'REMOVE_REGISTERED_COMPONENT_TIMESTAMP';
774
776
  });
775
777
  unwrapExports(constants);
776
778
  var constants_1 = constants.ADD_COMPONENT;
@@ -826,6 +828,8 @@
826
828
  var constants_51 = constants.SET_GOOGLE_MAP_SCRIPT_LOADING;
827
829
  var constants_52 = constants.SET_GOOGLE_MAP_SCRIPT_LOADED;
828
830
  var constants_53 = constants.SET_GOOGLE_MAP_SCRIPT_ERROR;
831
+ var constants_54 = constants.SET_REGISTERED_COMPONENT_TIMESTAMP;
832
+ var constants_55 = constants.REMOVE_REGISTERED_COMPONENT_TIMESTAMP;
829
833
 
830
834
  var componentsReducer_1 = createCommonjsModule(function (module, exports) {
831
835
  Object.defineProperty(exports, "__esModule", {
@@ -2881,6 +2885,59 @@
2881
2885
  });
2882
2886
  unwrapExports(analyticsRefReducer_1);
2883
2887
 
2888
+ var registeredComponentReducer = createCommonjsModule(function (module, exports) {
2889
+ Object.defineProperty(exports, "__esModule", {
2890
+ value: true
2891
+ });
2892
+ var _extends = Object.assign || function (target) {
2893
+ for (var i = 1; i < arguments.length; i++) {
2894
+ var source = arguments[i];
2895
+ for (var key in source) {
2896
+ if (Object.prototype.hasOwnProperty.call(source, key)) {
2897
+ target[key] = source[key];
2898
+ }
2899
+ }
2900
+ }
2901
+ return target;
2902
+ };
2903
+ exports["default"] = timestampReducer;
2904
+ function _objectWithoutProperties(obj, keys) {
2905
+ var target = {};
2906
+ for (var i in obj) {
2907
+ if (keys.indexOf(i) >= 0) continue;
2908
+ if (!Object.prototype.hasOwnProperty.call(obj, i)) continue;
2909
+ target[i] = obj[i];
2910
+ }
2911
+ return target;
2912
+ }
2913
+ function _defineProperty(obj, key, value) {
2914
+ if (key in obj) {
2915
+ Object.defineProperty(obj, key, {
2916
+ value: value,
2917
+ enumerable: true,
2918
+ configurable: true,
2919
+ writable: true
2920
+ });
2921
+ } else {
2922
+ obj[key] = value;
2923
+ }
2924
+ return obj;
2925
+ }
2926
+ function timestampReducer() {
2927
+ var state = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : {};
2928
+ var action = arguments[1];
2929
+ if (action.type === constants.SET_REGISTERED_COMPONENT_TIMESTAMP) {
2930
+ return _extends({}, state, _defineProperty({}, action.component, action.timestamp));
2931
+ } else if (action.type === constants.REMOVE_REGISTERED_COMPONENT_TIMESTAMP) {
2932
+ var del = state[action.component],
2933
+ obj = _objectWithoutProperties(state, [action.component]);
2934
+ return obj;
2935
+ }
2936
+ return state;
2937
+ }
2938
+ });
2939
+ unwrapExports(registeredComponentReducer);
2940
+
2884
2941
  var reducers = createCommonjsModule(function (module, exports) {
2885
2942
  Object.defineProperty(exports, "__esModule", {
2886
2943
  value: true
@@ -2921,6 +2978,7 @@
2921
2978
  var _recentSearches2 = _interopRequireDefault(recentSearches);
2922
2979
  var _googleMapScriptReducer2 = _interopRequireDefault(googleMapScriptReducer_1);
2923
2980
  var _analyticsRefReducer2 = _interopRequireDefault(analyticsRefReducer_1);
2981
+ var _registeredComponentReducer2 = _interopRequireDefault(registeredComponentReducer);
2924
2982
  function _interopRequireDefault(obj) {
2925
2983
  return obj && obj.__esModule ? obj : {
2926
2984
  "default": obj
@@ -2966,7 +3024,8 @@
2966
3024
  return state;
2967
3025
  },
2968
3026
  googleMapScriptStatus: _googleMapScriptReducer2["default"],
2969
- lastUsedAppbaseQuery: _appbaseQueryReducer2["default"]
3027
+ lastUsedAppbaseQuery: _appbaseQueryReducer2["default"],
3028
+ registeredComponentsTimestamps: _registeredComponentReducer2["default"]
2970
3029
  });
2971
3030
  });
2972
3031
  unwrapExports(reducers);
@@ -6327,7 +6386,8 @@
6327
6386
  searchboxId: props.searchboxId
6328
6387
  } : {}) : {}, {
6329
6388
  calendarInterval: props.calendarInterval,
6330
- endpoint: endpoint
6389
+ endpoint: endpoint,
6390
+ range: props.range
6331
6391
  });
6332
6392
  }
6333
6393
  return null;
@@ -6358,6 +6418,7 @@
6358
6418
  var aggregations = componentProps.aggregations;
6359
6419
  var pagination = void 0;
6360
6420
  var from = componentProps.from;
6421
+ var range = void 0;
6361
6422
  if (queryType === constants$1.queryTypes.term) {
6362
6423
  if (componentProps.showLoadMore && hasPaginationSupport(componentProps.componentType)) {
6363
6424
  pagination = true;
@@ -6428,6 +6489,36 @@
6428
6489
  };
6429
6490
  }
6430
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
+ }
6431
6522
  }
6432
6523
  if (dateRangeComponents.includes(componentProps.componentType)) {
6433
6524
  if (value) {
@@ -6566,7 +6657,8 @@
6566
6657
  categoryValue: store.internalValues[component] ? store.internalValues[component].category : undefined,
6567
6658
  value: queryValue,
6568
6659
  pagination: pagination,
6569
- from: from
6660
+ from: from,
6661
+ range: range
6570
6662
  }, customOptions);
6571
6663
  };
6572
6664
  function flatReactProp(reactProp, componentID) {
@@ -7257,7 +7349,9 @@
7257
7349
  dispatch((0, misc.setSuggestionsSearchId)(searchId));
7258
7350
  } else {
7259
7351
  dispatch((0, misc.setSearchId)(searchId));
7260
- analyticsRef.queryID = searchId;
7352
+ if (analyticsRef) {
7353
+ analyticsRef.queryID = searchId;
7354
+ }
7261
7355
  }
7262
7356
  }
7263
7357
  orderOfQueries.forEach(function (component) {
@@ -7339,7 +7433,9 @@
7339
7433
  dispatch((0, misc.setSuggestionsSearchId)(searchId));
7340
7434
  } else {
7341
7435
  dispatch((0, misc.setSearchId)(searchId));
7342
- analyticsRef.queryID = searchId;
7436
+ if (analyticsRef) {
7437
+ analyticsRef.queryID = searchId;
7438
+ }
7343
7439
  }
7344
7440
  }
7345
7441
  var transformResponse = res;
@@ -8849,12 +8945,25 @@
8849
8945
  exports.addComponent = addComponent;
8850
8946
  exports.removeComponent = removeComponent;
8851
8947
  exports.watchComponent = watchComponent;
8852
- function addComponent(component) {
8948
+ function addComponentToList(component) {
8853
8949
  return {
8854
8950
  type: constants.ADD_COMPONENT,
8855
8951
  component: component
8856
8952
  };
8857
8953
  }
8954
+ function addComponentTimestamp(component, timestamp) {
8955
+ return {
8956
+ type: constants.SET_REGISTERED_COMPONENT_TIMESTAMP,
8957
+ component: component,
8958
+ timestamp: timestamp
8959
+ };
8960
+ }
8961
+ function addComponent(component) {
8962
+ return function (dispatch) {
8963
+ dispatch(addComponentToList(component));
8964
+ dispatch(addComponentTimestamp(component, new Date().getTime()));
8965
+ };
8966
+ }
8858
8967
  function removeComponent(component) {
8859
8968
  return {
8860
8969
  type: constants.REMOVE_COMPONENT,
@@ -9142,11 +9251,11 @@
9142
9251
  analyticsInstance = _getState3.analyticsRef;
9143
9252
  var app = config.app;
9144
9253
  var esURL = protocol + '://' + url;
9145
- if (config.analytics && (config.analyticsConfig === undefined || config.analyticsConfig.suggestionAnalytics === undefined || config.analyticsConfig.suggestionAnalytics) && searchPosition !== undefined && suggestionsSearchId) {
9254
+ if (config.analytics && (config.analyticsConfig === undefined || config.analyticsConfig.suggestionAnalytics === undefined || config.analyticsConfig.suggestionAnalytics)) {
9146
9255
  var parsedHeaders = headers;
9147
9256
  delete parsedHeaders['X-Search-Query'];
9148
9257
  var parsedURL = (esURL || '').replace(/\/+$/, '');
9149
- if (parsedURL.includes('scalr.api.appbase.io')) {
9258
+ if (parsedURL.includes('scalr.api.appbase.io') && searchPosition !== undefined && suggestionsSearchId) {
9150
9259
  fetch(parsedURL + '/' + app + '/_analytics', {
9151
9260
  method: 'POST',
9152
9261
  headers: _extends({}, parsedHeaders, {
@@ -9157,14 +9266,14 @@
9157
9266
  'X-Search-Suggestions-ClickPosition': searchPosition + 1
9158
9267
  })
9159
9268
  });
9269
+ } else if (searchPosition !== undefined) {
9270
+ recordClick({
9271
+ documentId: documentId,
9272
+ clickPosition: searchPosition,
9273
+ analyticsInstance: analyticsInstance,
9274
+ isSuggestionClick: true
9275
+ });
9160
9276
  }
9161
- } else if (searchPosition !== undefined) {
9162
- recordClick({
9163
- documentId: documentId,
9164
- clickPosition: searchPosition,
9165
- analyticsInstance: analyticsInstance,
9166
- isSuggestionClick: true
9167
- });
9168
9277
  }
9169
9278
  };
9170
9279
  }
@@ -9175,10 +9284,11 @@
9175
9284
  _getState4$appbaseRef = _getState4.appbaseRef,
9176
9285
  url = _getState4$appbaseRef.url,
9177
9286
  protocol = _getState4$appbaseRef.protocol,
9178
- analyticsInstance = _getState4.analyticsRef;
9287
+ analyticsInstance = _getState4.analyticsRef,
9288
+ config = _getState4.config;
9179
9289
  var esURL = protocol + '://' + url;
9180
9290
  var parsedURL = esURL.replace(/\/+$/, '');
9181
- if (!parsedURL.includes('scalr.api.appbase.io') && queryId && impressions.length) {
9291
+ if (config.analytics && !parsedURL.includes('scalr.api.appbase.io') && queryId && impressions.length) {
9182
9292
  analyticsInstance.search({
9183
9293
  queryID: analyticsInstance.getQueryID(),
9184
9294
  impressions: impressions
@@ -9564,14 +9674,9 @@
9564
9674
  };
9565
9675
  }
9566
9676
  function maybeInvokeDelegate(delegate, context) {
9567
- var method = delegate.iterator[context.method];
9568
- if (undefined === method) {
9569
- if (context.delegate = null, "throw" === context.method) {
9570
- if (delegate.iterator.return && (context.method = "return", context.arg = undefined, maybeInvokeDelegate(delegate, context), "throw" === context.method)) return ContinueSentinel;
9571
- context.method = "throw", context.arg = new TypeError("The iterator does not provide a 'throw' method");
9572
- }
9573
- return ContinueSentinel;
9574
- }
9677
+ var methodName = context.method,
9678
+ method = delegate.iterator[methodName];
9679
+ if (undefined === method) return context.delegate = null, "throw" === methodName && delegate.iterator.return && (context.method = "return", context.arg = undefined, maybeInvokeDelegate(delegate, context), "throw" === context.method) || "return" !== methodName && (context.method = "throw", context.arg = new TypeError("The iterator does not provide a '" + methodName + "' method")), ContinueSentinel;
9575
9680
  var record = tryCatch(method, delegate.iterator, context.arg);
9576
9681
  if ("throw" === record.type) return context.method = "throw", context.arg = record.arg, context.delegate = null, ContinueSentinel;
9577
9682
  var info = record.arg;
@@ -9771,7 +9876,7 @@
9771
9876
  descriptor.enumerable = descriptor.enumerable || false;
9772
9877
  descriptor.configurable = true;
9773
9878
  if ("value" in descriptor) descriptor.writable = true;
9774
- Object.defineProperty(target, descriptor.key, descriptor);
9879
+ Object.defineProperty(target, _toPropertyKey(descriptor.key), descriptor);
9775
9880
  }
9776
9881
  }
9777
9882
  function _createClass(Constructor, protoProps, staticProps) {
@@ -13134,8 +13239,9 @@
13134
13239
  }
13135
13240
  return {
13136
13241
  name: 'ComponentWrapper',
13242
+ $timestamp: null,
13137
13243
  props: {
13138
- destroyOnUnmount: VueTypes.bool.def(false)
13244
+ destroyOnUnmount: VueTypes.bool.def(true)
13139
13245
  },
13140
13246
  created: function created() {
13141
13247
  // clone the props for component it is needed because attrs gets changed on time
@@ -13148,6 +13254,7 @@
13148
13254
  this.componentProps = parsedProps;
13149
13255
  this.componentId = this.componentProps.componentId;
13150
13256
  this.react = this.componentProps.react;
13257
+ this.$timestamp = new Date().getTime();
13151
13258
  },
13152
13259
  beforeMount: function beforeMount() {
13153
13260
  var _this = this;
@@ -13194,10 +13301,17 @@
13194
13301
  },
13195
13302
  beforeDestroy: function beforeDestroy() {
13196
13303
  if (this.destroyOnUnmount) {
13304
+ var registeredComponentsTimestamps = {};
13305
+ if (this.$$store) {
13306
+ var _this$$$store$getStat2 = this.$$store.getState();
13307
+ registeredComponentsTimestamps = _this$$$store$getStat2.registeredComponentsTimestamps;
13308
+ }
13197
13309
  // Unregister components
13198
- this.removeComponent(this.componentId);
13199
- if (this.internalComponent) {
13200
- this.removeComponent(this.internalComponent);
13310
+ if (registeredComponentsTimestamps[this.componentId] === this.$timestamp) {
13311
+ this.removeComponent(this.componentId);
13312
+ if (this.internalComponent) {
13313
+ this.removeComponent(this.internalComponent);
13314
+ }
13201
13315
  }
13202
13316
  }
13203
13317
  },
@@ -14384,13 +14498,14 @@
14384
14498
  componentType: constants_1$1.reactiveList,
14385
14499
  internalComponent: ReactiveList.hasInternalComponent()
14386
14500
  }));
14387
- ReactiveList.install = function (Vue) {
14388
- Vue.component(ReactiveList.name, RLConnected);
14501
+ RLConnected.name = ReactiveList.name;
14502
+ RLConnected.install = function (Vue) {
14503
+ Vue.component(RLConnected.name, RLConnected);
14389
14504
  Vue.component(ResultListWrapper.name, ResultListWrapper);
14390
14505
  Vue.component(ResultCardsWrapper.name, ResultCardsWrapper);
14391
14506
  };
14392
14507
  // Add componentType for SSR
14393
- ReactiveList.componentType = constants_1$1.reactiveList;
14508
+ RLConnected.componentType = constants_1$1.reactiveList;
14394
14509
 
14395
14510
  function URL$1(url) {
14396
14511
  var pattern = RegExp("^(([^:/?#]*)?://)?(((.*)?@)?([^/?#]*)?)([^?#]*)(\\?([^#]*))?(#(.*))?");
@@ -15953,7 +16068,7 @@
15953
16068
  },
15954
16069
  analyticsRef: {
15955
16070
  type: Object,
15956
- required: true
16071
+ required: false
15957
16072
  }
15958
16073
  },
15959
16074
  provide: function provide() {
@@ -16428,7 +16543,10 @@
16428
16543
  console.error('Endpoint not set correctly for analytics');
16429
16544
  console.error(e);
16430
16545
  }
16431
- var analyticsRef = index$2.init(analyticsInitConfig);
16546
+ var analyticsRef = null;
16547
+ if (config.analytics) {
16548
+ analyticsRef = index$2.init(analyticsInitConfig);
16549
+ }
16432
16550
  var initialState = _extends({
16433
16551
  config: _extends({}, config, {
16434
16552
  initialQueriesSyncTime: props.initialQueriesSyncTime,
@@ -18907,6 +19025,7 @@
18907
19025
  }
18908
19026
  this.handleTextChange = debounce$1(this.handleText, this.$props.debounce);
18909
19027
  this.updateDefaultQueryHandlerDebounced = debounce$1(this.updateDefaultQueryHandler, this.$props.debounce);
19028
+ this.updateQueryHandlerDebounced = debounce$1(this.updateQueryHandler, this.$props.debounce);
18910
19029
  // Set custom and default queries in store
18911
19030
  updateCustomQuery(this.componentId, this.setCustomQuery, this.$props, this.currentValue);
18912
19031
  updateDefaultQuery(this.componentId, this.setDefaultQuery, this.$props, this.currentValue);
@@ -19090,7 +19209,7 @@
19090
19209
  if (this.isPending && this.$options.isTagsMode && Array.isArray(newVal)) {
19091
19210
  this.isPending = false;
19092
19211
  }
19093
- 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);
19094
19213
  }
19095
19214
  },
19096
19215
  defaultQuery: function defaultQuery(newVal, oldVal) {
@@ -19132,8 +19251,10 @@
19132
19251
  handleText: function handleText(value) {
19133
19252
  if (this.$props.autosuggest) {
19134
19253
  this.updateDefaultQueryHandlerDebounced(value, this.$props);
19135
- } else {
19136
- 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;
19137
19258
  }
19138
19259
  },
19139
19260
  validateDataField: function validateDataField() {
@@ -19278,10 +19399,10 @@
19278
19399
  } // in case of strict selection only SUGGESTION_SELECT should be able
19279
19400
  // to set the query otherwise the value should reset
19280
19401
 
19281
- if (props.strictSelection) {
19282
- 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) {
19283
19404
  _this.updateQueryHandler(props.componentId, queryHandlerValue, props);
19284
- } else {
19405
+ } else if (_this.currentValue !== '') {
19285
19406
  _this.setValue('', true);
19286
19407
  }
19287
19408
  } else {
@@ -19407,17 +19528,20 @@
19407
19528
  this.onValueSelectedHandler('', lib_7.CLEAR_VALUE);
19408
19529
  },
19409
19530
  handleKeyDown: function handleKeyDown(event, highlightedIndex) {
19410
- 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;
19411
19536
  if (value !== undefined) {
19412
19537
  this.isPending = true;
19413
19538
  }
19414
19539
 
19415
19540
  // if a suggestion was selected, delegate the handling to suggestion handler
19416
- if (event.key === 'Enter' && highlightedIndex === null) {
19417
- this.setValue(event.target.value, true, this.$props, this.$options.isTagsMode ? lib_7.SUGGESTION_SELECT : undefined // to handle tags
19418
- );
19419
-
19420
- 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);
19421
19545
  }
19422
19546
  // Need to review
19423
19547
  this.$emit('keyDown', event, this.triggerQuery);
@@ -19429,19 +19553,19 @@
19429
19553
  if (!this.$data.isOpen) {
19430
19554
  this.isOpen = true;
19431
19555
  }
19432
- var _this$$props2 = this.$props,
19433
- value = _this$$props2.value,
19434
- autosuggest = _this$$props2.autosuggest;
19556
+ var _this$$props3 = this.$props,
19557
+ value = _this$$props3.value,
19558
+ autosuggest = _this$$props3.autosuggest;
19435
19559
  if (value === undefined) {
19436
19560
  this.setValue(inputValue, false, this.$props, undefined, true, false);
19437
19561
  } else {
19438
19562
  this.isPending = true;
19563
+ this.currentValue = inputValue;
19439
19564
  this.$emit('change', inputValue, function (_temp2) {
19440
19565
  var _ref3 = _temp2 === void 0 ? {} : _temp2,
19441
19566
  _ref3$isOpen = _ref3.isOpen,
19442
19567
  isOpen = _ref3$isOpen === void 0 ? false : _ref3$isOpen;
19443
19568
  if (_this2.$options.isTagsMode && autosuggest) {
19444
- _this2.currentValue = value;
19445
19569
  _this2.isOpen = isOpen;
19446
19570
  _this2.updateDefaultQueryHandlerDebounced(_this2.currentValue, _this2.$props);
19447
19571
  return;
@@ -19529,9 +19653,9 @@
19529
19653
  finalSuggestionsList = [];
19530
19654
  }
19531
19655
  var h = this.$createElement;
19532
- var _this$$props3 = this.$props,
19533
- theme = _this$$props3.theme,
19534
- innerClass = _this$$props3.innerClass;
19656
+ var _this$$props4 = this.$props,
19657
+ theme = _this$$props4.theme,
19658
+ innerClass = _this$$props4.innerClass;
19535
19659
  var renderNoSuggestion = this.$scopedSlots.renderNoSuggestion || this.$props.renderNoSuggestion;
19536
19660
  var renderError = this.$scopedSlots.renderError || this.$props.renderError;
19537
19661
  var _this$$data = this.$data,
@@ -19635,13 +19759,13 @@
19635
19759
  },
19636
19760
  renderIcons: function renderIcons() {
19637
19761
  var h = this.$createElement;
19638
- var _this$$props4 = this.$props,
19639
- iconPosition = _this$$props4.iconPosition,
19640
- showClear = _this$$props4.showClear,
19641
- innerClass = _this$$props4.innerClass,
19642
- getMicInstance = _this$$props4.getMicInstance,
19643
- showVoiceSearch = _this$$props4.showVoiceSearch,
19644
- 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;
19645
19769
  var renderMic = this.$scopedSlots.renderMic || this.$props.renderMic;
19646
19770
  var currentValue = this.$data.currentValue;
19647
19771
  return h("div", [h(IconGroup, {
@@ -19725,11 +19849,11 @@
19725
19849
  render: function render() {
19726
19850
  var _this6 = this;
19727
19851
  var h = arguments[0];
19728
- var _this$$props5 = this.$props,
19729
- theme = _this$$props5.theme,
19730
- size = _this$$props5.size,
19731
- expandSuggestionsContainer = _this$$props5.expandSuggestionsContainer,
19732
- 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;
19733
19857
  var _this$$scopedSlots = this.$scopedSlots,
19734
19858
  recentSearchesIcon = _this$$scopedSlots.recentSearchesIcon,
19735
19859
  popularSearchesIcon = _this$$scopedSlots.popularSearchesIcon;
@@ -19891,7 +20015,7 @@
19891
20015
  }
19892
20016
  })),
19893
20017
  "domProps": _extends({}, getInputProps({
19894
- value: _this6.$data.currentValue === null ? '' : _this6.$data.currentValue
20018
+ value: _this6.$data.currentValue === null || typeof _this6.$data.currentValue !== 'string' ? '' : _this6.$data.currentValue
19895
20019
  }))
19896
20020
  }), _this6.renderIcons(), !expandSuggestionsContainer && renderSuggestionsContainer()]), ' ', _this6.renderInputAddonAfter()]), expandSuggestionsContainer && renderSuggestionsContainer(), _this6.renderTags()]);
19897
20021
  }
@@ -19933,7 +20057,7 @@
19933
20057
  value: this.$data.currentValue ? this.$data.currentValue : ''
19934
20058
  }),
19935
20059
  "ref": this.$props.innerRef
19936
- }), this.renderIcons()]), this.renderInputAddonAfter()])])]);
20060
+ }), this.renderIcons()]), this.renderInputAddonAfter()]), this.renderTags()])]);
19937
20061
  },
19938
20062
  destroyed: function destroyed() {
19939
20063
  document.removeEventListener('keydown', this.onKeyDown);
@@ -20108,11 +20232,14 @@
20108
20232
  componentType: constants_1$1.dataSearch,
20109
20233
  internalComponent: DataSearch.hasInternalComponent()
20110
20234
  }));
20111
- DataSearch.install = function (Vue) {
20112
- 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);
20113
20240
  };
20114
20241
  // Add componentType for SSR
20115
- DataSearch.componentType = constants_1$1.dataSearch;
20242
+ DSConnected.componentType = constants_1$1.dataSearch;
20116
20243
 
20117
20244
  var _templateObject$k;
20118
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"])));
@@ -20354,7 +20481,6 @@
20354
20481
  // selected value is cleared, call onValueSelected
20355
20482
  this.onValueSelectedHandler('', lib_7.CLEAR_VALUE);
20356
20483
  }
20357
- // if (this.$props.value === undefined) {
20358
20484
  if (this.$options.isTagsMode) {
20359
20485
  // handling reset of tags through SelectedFilters or URL
20360
20486
  this.selectedTags = [];
@@ -20364,7 +20490,6 @@
20364
20490
  cause = lib_7.SUGGESTION_SELECT;
20365
20491
  }
20366
20492
  this.setValue(newVal || '', true, this.$props, cause);
20367
- // }
20368
20493
  }
20369
20494
  },
20370
20495
  focusShortcuts: function focusShortcuts() {
@@ -20507,8 +20632,7 @@
20507
20632
  if (typeof value === 'string' && !!value) {
20508
20633
  _this.selectedTags.push(value);
20509
20634
  } else if (Array.isArray(value) && !isEqual$5(_this.selectedTags, value)) {
20510
- var mergedArray = Array.from(new Set([].concat(_this.selectedTags, value)));
20511
- _this.selectedTags = mergedArray;
20635
+ _this.selectedTags = value;
20512
20636
  }
20513
20637
  } else if (value) {
20514
20638
  _this.selectedTags = typeof value !== 'string' ? value : [].concat(value);
@@ -21332,11 +21456,12 @@
21332
21456
  componentType: constants_1$1.searchBox,
21333
21457
  internalComponent: true
21334
21458
  }));
21335
- SearchBox.install = function (Vue) {
21336
- Vue.component(SearchBox.name, SBConnected);
21459
+ SBConnected.name = SearchBox.name;
21460
+ SBConnected.install = function (Vue) {
21461
+ Vue.component(SBConnected.name, SBConnected);
21337
21462
  };
21338
21463
  // Add componentType for SSR
21339
- SearchBox.componentType = constants_1$1.searchBox;
21464
+ SBConnected.componentType = constants_1$1.searchBox;
21340
21465
 
21341
21466
  var _templateObject$l, _templateObject2$8, _templateObject3$6, _templateObject4$5, _templateObject5$3, _templateObject6$3;
21342
21467
  var item = {
@@ -21850,12 +21975,13 @@
21850
21975
  componentType: constants_1$1.singleList,
21851
21976
  internalComponent: SingleList.hasInternalComponent()
21852
21977
  }));
21853
- SingleList.install = function (Vue) {
21854
- Vue.component(SingleList.name, ListConnected);
21978
+ ListConnected.name = SingleList.name;
21979
+ ListConnected.install = function (Vue) {
21980
+ Vue.component(ListConnected.name, ListConnected);
21855
21981
  };
21856
21982
 
21857
21983
  // Add componentType for SSR
21858
- SingleList.componentType = constants_1$1.singleList;
21984
+ ListConnected.componentType = constants_1$1.singleList;
21859
21985
 
21860
21986
  var updateQuery$4 = lib_5.updateQuery,
21861
21987
  setQueryOptions$3 = lib_5.setQueryOptions,
@@ -22384,12 +22510,13 @@
22384
22510
  componentType: constants_1$1.multiList,
22385
22511
  internalComponent: MultiList.hasInternalComponent()
22386
22512
  }));
22387
- MultiList.install = function (Vue) {
22388
- 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);
22389
22516
  };
22390
22517
 
22391
22518
  // Add componentType for SSR
22392
- MultiList.componentType = constants_1$1.multiList;
22519
+ ListConnected$1.componentType = constants_1$1.multiList;
22393
22520
 
22394
22521
  var _templateObject$m, _templateObject2$9, _templateObject3$7, _templateObject4$6;
22395
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"])));
@@ -23090,12 +23217,13 @@
23090
23217
  componentType: constants_1$1.singleDropdownList,
23091
23218
  internalComponent: SingleDropdownList.hasInternalComponent()
23092
23219
  }));
23093
- SingleDropdownList.install = function (Vue) {
23094
- 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);
23095
23223
  };
23096
23224
 
23097
23225
  // Add componentType for SSR
23098
- SingleDropdownList.componentType = constants_1$1.singleDropdownList;
23226
+ ListConnected$2.componentType = constants_1$1.singleDropdownList;
23099
23227
 
23100
23228
  var updateQuery$6 = lib_5.updateQuery,
23101
23229
  setQueryOptions$5 = lib_5.setQueryOptions,
@@ -23604,12 +23732,13 @@
23604
23732
  componentType: constants_1$1.multiDropdownList,
23605
23733
  internalComponent: MultiDropdownList.hasInternalComponent()
23606
23734
  }));
23607
- MultiDropdownList.install = function (Vue) {
23608
- 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);
23609
23738
  };
23610
23739
 
23611
23740
  // Add componentType for SSR
23612
- MultiDropdownList.componentType = constants_1$1.multiDropdownList;
23741
+ ListConnected$3.componentType = constants_1$1.multiDropdownList;
23613
23742
 
23614
23743
  var updateQuery$7 = lib_5.updateQuery,
23615
23744
  setQueryOptions$6 = lib_5.setQueryOptions,
@@ -23896,14 +24025,15 @@
23896
24025
  setQueryOptions: setQueryOptions$6,
23897
24026
  setCustomQuery: setCustomQuery$6
23898
24027
  };
23899
- var ListConnected$4 = PreferencesConsumer(ComponentWrapper$1(connect(mapStateToProps$9, mapDispatchtoProps$6)(ToggleButton), {
24028
+ var TBConnected = PreferencesConsumer(ComponentWrapper$1(connect(mapStateToProps$9, mapDispatchtoProps$6)(ToggleButton), {
23900
24029
  componentType: constants_1$1.toggleButton
23901
24030
  }));
23902
- ToggleButton.install = function (Vue) {
23903
- Vue.component(ToggleButton.name, ListConnected$4);
24031
+ TBConnected.name = ToggleButton.name;
24032
+ TBConnected.install = function (Vue) {
24033
+ Vue.component(TBConnected.name, TBConnected);
23904
24034
  };
23905
24035
  // Add componentType for SSR
23906
- ToggleButton.componentType = constants_1$1.toggleButton;
24036
+ TBConnected.componentType = constants_1$1.toggleButton;
23907
24037
 
23908
24038
  /*!
23909
24039
  * vue-no-ssr v1.1.1
@@ -24383,12 +24513,13 @@
24383
24513
  updateComponentProps: updateComponentProps$2
24384
24514
  };
24385
24515
  var RangeConnected = PreferencesConsumer(connect(mapStateToProps$a, mapDispatchtoProps$7)(DynamicRangeSlider));
24386
- DynamicRangeSlider.install = function (Vue) {
24387
- Vue.component(DynamicRangeSlider.name, RangeConnected);
24516
+ RangeConnected.name = DynamicRangeSlider.name;
24517
+ RangeConnected.install = function (Vue) {
24518
+ Vue.component(RangeConnected.name, RangeConnected);
24388
24519
  };
24389
24520
 
24390
24521
  // Add componentType for SSR
24391
- DynamicRangeSlider.componentType = constants_1$1.dynamicRangeSlider;
24522
+ RangeConnected.componentType = constants_1$1.dynamicRangeSlider;
24392
24523
 
24393
24524
  var updateQuery$9 = lib_5.updateQuery,
24394
24525
  setQueryOptions$8 = lib_5.setQueryOptions,
@@ -24589,11 +24720,12 @@
24589
24720
  var RangeConnected$1 = PreferencesConsumer(ComponentWrapper$1(connect(mapStateToProps$b, mapDispatchtoProps$8)(SingleRange), {
24590
24721
  componentType: constants_1$1.singleRange
24591
24722
  }));
24592
- SingleRange.install = function (Vue) {
24593
- 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);
24594
24726
  };
24595
24727
  // Add componentType for SSR
24596
- SingleRange.componentType = constants_1$1.singleRange;
24728
+ RangeConnected$1.componentType = constants_1$1.singleRange;
24597
24729
 
24598
24730
  var updateQuery$a = lib_5.updateQuery,
24599
24731
  setQueryOptions$9 = lib_5.setQueryOptions,
@@ -24857,11 +24989,12 @@
24857
24989
  var RangeConnected$2 = PreferencesConsumer(ComponentWrapper$1(connect(mapStateToProps$c, mapDispatchtoProps$9)(MultiRange), {
24858
24990
  componentType: constants_1$1.multiRange
24859
24991
  }));
24860
- MultiRange.install = function (Vue) {
24861
- 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);
24862
24995
  };
24863
24996
  // Add componentType for SSR
24864
- MultiRange.componentType = constants_1$1.multiRange;
24997
+ RangeConnected$2.componentType = constants_1$1.multiRange;
24865
24998
 
24866
24999
  var updateQuery$b = lib_5.updateQuery,
24867
25000
  setQueryOptions$a = lib_5.setQueryOptions,
@@ -25108,12 +25241,13 @@
25108
25241
  var RangeConnected$3 = PreferencesConsumer(ComponentWrapper$1(connect(mapStateToProps$d, mapDispatchtoProps$a)(RangeSlider), {
25109
25242
  componentType: constants_1$1.rangeSlider
25110
25243
  }));
25111
- RangeSlider.install = function (Vue) {
25112
- 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);
25113
25247
  };
25114
25248
 
25115
25249
  // Add componentType for SSR
25116
- RangeSlider.componentType = constants_1$1.rangeSlider;
25250
+ RangeConnected$3.componentType = constants_1$1.rangeSlider;
25117
25251
 
25118
25252
  var _templateObject$p, _templateObject2$b;
25119
25253
  var alert = function alert(_ref) {
@@ -25410,12 +25544,13 @@
25410
25544
  var RangeConnected$4 = PreferencesConsumer(ComponentWrapper$1(connect(mapStateToProps$e, {})(RangeInput), {
25411
25545
  componentType: constants_1$1.rangeInput
25412
25546
  }));
25413
- RangeInput.install = function (Vue) {
25414
- 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);
25415
25550
  };
25416
25551
 
25417
25552
  // Add componentType for SSR
25418
- RangeInput.componentType = constants_1$1.rangeInput;
25553
+ RangeConnected$4.componentType = constants_1$1.rangeInput;
25419
25554
 
25420
25555
  var _excluded = ["options"];
25421
25556
  var updateQuery$c = lib_5.updateQuery,
@@ -25733,7 +25868,7 @@
25733
25868
  break;
25734
25869
  // basic components
25735
25870
  case constants_1$1.toggleButton:
25736
- component = ListConnected$4;
25871
+ component = TBConnected;
25737
25872
  break;
25738
25873
  // range components
25739
25874
  case constants_1$1.dynamicRangeSlider:
@@ -25760,12 +25895,13 @@
25760
25895
  });
25761
25896
  }
25762
25897
  });
25763
- ReactiveComponent.install = function (Vue) {
25764
- Vue.component(ReactiveComponent.name, RcConnected);
25898
+ RcConnected.name = ReactiveComponent.name;
25899
+ RcConnected.install = function (Vue) {
25900
+ Vue.component(RcConnected.name, RcConnected);
25765
25901
  };
25766
25902
 
25767
25903
  // Add componentType for SSR
25768
- ReactiveComponent.componentType = constants_1$1.reactiveComponent;
25904
+ RcConnected.componentType = constants_1$1.reactiveComponent;
25769
25905
 
25770
25906
  var setValue$2 = lib_5.setValue,
25771
25907
  clearValues = lib_5.clearValues,
@@ -25929,8 +26065,9 @@
25929
26065
  resetValuesToDefault: resetValuesToDefault
25930
26066
  };
25931
26067
  var RcConnected$1 = connect(mapStateToProps$g, mapDispatchtoProps$c)(SelectedFilters);
25932
- SelectedFilters.install = function (Vue) {
25933
- 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);
25934
26071
  };
25935
26072
 
25936
26073
  var ResultCardTitle = {
@@ -26376,8 +26513,9 @@
26376
26513
  setSearchStateFn: setSearchState
26377
26514
  };
26378
26515
  var StateProviderConnected = connect(mapStateToProps$h, mapDispatchtoProps$d)(StateProvider);
26379
- StateProvider.install = function (Vue) {
26380
- Vue.component(StateProvider.name, StateProviderConnected);
26516
+ StateProviderConnected.name = StateProvider.name;
26517
+ StateProviderConnected.install = function (Vue) {
26518
+ Vue.component(StateProviderConnected.name, StateProviderConnected);
26381
26519
  };
26382
26520
 
26383
26521
  function ownKeys$1(object, enumerableOnly) {
@@ -34959,9 +35097,9 @@
34959
35097
  });
34960
35098
  }
34961
35099
 
34962
- var version = "1.33.3";
35100
+ var version = "1.33.5";
34963
35101
 
34964
- 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];
34965
35103
  function install (Vue) {
34966
35104
  components$1.map(function (component) {
34967
35105
  Vue.use(component);
@@ -34978,26 +35116,26 @@
34978
35116
  install: install
34979
35117
  };
34980
35118
 
34981
- exports.DataSearch = DataSearch;
34982
- exports.DynamicRangeSlider = DynamicRangeSlider;
34983
- exports.MultiDropdownList = MultiDropdownList;
34984
- exports.MultiList = MultiList;
34985
- exports.MultiRange = MultiRange;
34986
- exports.RangeInput = RangeInput;
34987
- 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;
34988
35126
  exports.ReactiveBase = ReactiveBase;
34989
- exports.ReactiveComponent = ReactiveComponent;
35127
+ exports.ReactiveComponent = RcConnected;
34990
35128
  exports.ReactiveGoogleMap = ReactiveGoogleMap;
34991
- exports.ReactiveList = ReactiveList;
35129
+ exports.ReactiveList = RLConnected;
34992
35130
  exports.ResultCard = ResultCard;
34993
35131
  exports.ResultList = ResultList;
34994
- exports.SearchBox = SearchBox;
34995
- exports.SelectedFilters = SelectedFilters;
34996
- exports.SingleDropdownList = SingleDropdownList;
34997
- exports.SingleList = SingleList;
34998
- exports.SingleRange = SingleRange;
34999
- exports.StateProvider = StateProvider;
35000
- 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;
35001
35139
  exports.componentTypes = constants_1$1;
35002
35140
  exports.default = index$4;
35003
35141
  exports.initReactivesearch = initReactivesearch;