@appbaseio/reactivesearch-vue 1.23.3 → 1.24.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/dist/@appbaseio/reactivesearch-vue.umd.js +281 -71
- package/dist/@appbaseio/reactivesearch-vue.umd.js.map +1 -1
- package/dist/@appbaseio/reactivesearch-vue.umd.min.js +5 -5
- package/dist/@appbaseio/reactivesearch-vue.umd.min.js.map +1 -1
- package/dist/cjs/DataSearch.js +2 -2
- package/dist/cjs/{DropDown-59a7971b.js → DropDown-6815b9b6.js} +1 -1
- package/dist/cjs/DynamicRangeSlider.js +1 -1
- package/dist/cjs/MultiDropdownList.js +2 -2
- package/dist/cjs/MultiList.js +1 -1
- package/dist/cjs/MultiRange.js +1 -1
- package/dist/cjs/RangeInput.js +1 -1
- package/dist/cjs/RangeSlider.js +1 -1
- package/dist/cjs/ReactiveBase.js +14 -8
- package/dist/cjs/ReactiveComponent.js +1 -1
- package/dist/cjs/ReactiveList.js +34 -36
- package/dist/cjs/ResultCard.js +1 -1
- package/dist/cjs/ResultList.js +1 -1
- package/dist/cjs/SelectedFilters.js +1 -1
- package/dist/cjs/SingleDropdownList.js +2 -2
- package/dist/cjs/SingleList.js +1 -1
- package/dist/cjs/SingleRange.js +1 -1
- package/dist/cjs/ToggleButton.js +1 -1
- package/dist/cjs/index.js +3 -3
- package/dist/cjs/initReactivesearch.js +1 -1
- package/dist/cjs/install.js +3 -3
- package/dist/cjs/version.js +1 -1
- package/dist/cjs/{vueTypes-22b4fd3a.js → vueTypes-4c19b4c8.js} +5 -1
- package/dist/es/DataSearch.js +2 -2
- package/dist/es/{DropDown-db7fe433.js → DropDown-035c804f.js} +1 -1
- package/dist/es/DynamicRangeSlider.js +1 -1
- package/dist/es/MultiDropdownList.js +2 -2
- package/dist/es/MultiList.js +1 -1
- package/dist/es/MultiRange.js +1 -1
- package/dist/es/RangeInput.js +1 -1
- package/dist/es/RangeSlider.js +1 -1
- package/dist/es/ReactiveBase.js +14 -8
- package/dist/es/ReactiveComponent.js +1 -1
- package/dist/es/ReactiveList.js +34 -36
- package/dist/es/ResultCard.js +1 -1
- package/dist/es/ResultList.js +1 -1
- package/dist/es/SelectedFilters.js +1 -1
- package/dist/es/SingleDropdownList.js +2 -2
- package/dist/es/SingleList.js +1 -1
- package/dist/es/SingleRange.js +1 -1
- package/dist/es/ToggleButton.js +1 -1
- package/dist/es/index.js +3 -3
- package/dist/es/initReactivesearch.js +1 -1
- package/dist/es/install.js +3 -3
- package/dist/es/version.js +1 -1
- package/dist/es/{vueTypes-e89c8a3c.js → vueTypes-fb61bb7b.js} +5 -1
- package/package.json +3 -3
package/dist/es/ReactiveBase.js
CHANGED
|
@@ -2,12 +2,12 @@ import configureStore, { Actions, helper } from '@appbaseio/reactivecore';
|
|
|
2
2
|
import { _ as _taggedTemplateLiteralLoose, a as _extends } from './_rollupPluginBabelHelpers-0f24d612.js';
|
|
3
3
|
import VueTypes from 'vue-types';
|
|
4
4
|
import '@appbaseio/reactivecore/lib/utils/constants';
|
|
5
|
+
import { isEqual as isEqual$1 } from '@appbaseio/reactivecore/lib/utils/helper';
|
|
5
6
|
import styled from '@appbaseio/vue-emotion';
|
|
6
|
-
import { t as types } from './vueTypes-
|
|
7
|
+
import { t as types } from './vueTypes-fb61bb7b.js';
|
|
7
8
|
import 'redux';
|
|
8
9
|
import { c as connect, e as composeThemeObject, X as X_SEARCH_CLIENT } from './index-cb1950b6.js';
|
|
9
10
|
import _mergeJSXProps from '@vue/babel-helper-vue-jsx-merge-props';
|
|
10
|
-
import { isEqual as isEqual$1 } from '@appbaseio/reactivecore/lib/utils/helper';
|
|
11
11
|
import { updateAnalyticsConfig } from '@appbaseio/reactivecore/lib/actions/analytics';
|
|
12
12
|
import Appbase from 'appbase-js';
|
|
13
13
|
import 'url-search-params-polyfill';
|
|
@@ -350,7 +350,7 @@ var ReactiveBase = {
|
|
|
350
350
|
}
|
|
351
351
|
},
|
|
352
352
|
props: {
|
|
353
|
-
app: types.
|
|
353
|
+
app: types.string,
|
|
354
354
|
analytics: VueTypes.bool,
|
|
355
355
|
analyticsConfig: types.analyticsConfig,
|
|
356
356
|
appbaseConfig: types.appbaseConfig,
|
|
@@ -370,7 +370,8 @@ var ReactiveBase = {
|
|
|
370
370
|
transformResponse: types.func,
|
|
371
371
|
as: VueTypes.string.def('div'),
|
|
372
372
|
getSearchParams: types.func,
|
|
373
|
-
setSearchParams: types.func
|
|
373
|
+
setSearchParams: types.func,
|
|
374
|
+
mongodb: types.mongodb
|
|
374
375
|
},
|
|
375
376
|
provide: function provide() {
|
|
376
377
|
return {
|
|
@@ -410,6 +411,9 @@ var ReactiveBase = {
|
|
|
410
411
|
this.store.dispatch(updateAnalyticsConfig(newVal));
|
|
411
412
|
}
|
|
412
413
|
}
|
|
414
|
+
},
|
|
415
|
+
mongodb: function mongodb() {
|
|
416
|
+
this.updateState(this.$props);
|
|
413
417
|
}
|
|
414
418
|
},
|
|
415
419
|
computed: {
|
|
@@ -417,12 +421,13 @@ var ReactiveBase = {
|
|
|
417
421
|
var _this$$props = this.$props,
|
|
418
422
|
enableAppbase = _this$$props.enableAppbase,
|
|
419
423
|
headers = _this$$props.headers,
|
|
420
|
-
appbaseConfig = _this$$props.appbaseConfig
|
|
424
|
+
appbaseConfig = _this$$props.appbaseConfig,
|
|
425
|
+
mongodb = _this$$props.mongodb;
|
|
421
426
|
|
|
422
427
|
var _ref = appbaseConfig || {},
|
|
423
428
|
enableTelemetry = _ref.enableTelemetry;
|
|
424
429
|
|
|
425
|
-
return _extends({}, enableAppbase && _extends({
|
|
430
|
+
return _extends({}, enableAppbase && !mongodb && _extends({
|
|
426
431
|
'X-Search-Client': X_SEARCH_CLIENT
|
|
427
432
|
}, enableTelemetry === false && {
|
|
428
433
|
'X-Enable-Telemetry': false
|
|
@@ -440,7 +445,7 @@ var ReactiveBase = {
|
|
|
440
445
|
var appbaseConfig = _extends({}, props.analyticsConfig, props.appbaseConfig);
|
|
441
446
|
|
|
442
447
|
var config = {
|
|
443
|
-
url: props.url && props.url.trim() !== '' ? props.url : '
|
|
448
|
+
url: props.url && props.url.trim() !== '' ? props.url : '',
|
|
444
449
|
app: props.app,
|
|
445
450
|
credentials: credentials,
|
|
446
451
|
type: props.type ? props.type : '*',
|
|
@@ -448,7 +453,8 @@ var ReactiveBase = {
|
|
|
448
453
|
transformResponse: props.transformResponse,
|
|
449
454
|
enableAppbase: props.enableAppbase,
|
|
450
455
|
analytics: props.appbaseConfig ? props.appbaseConfig.recordAnalytics : props.analytics,
|
|
451
|
-
analyticsConfig: appbaseConfig
|
|
456
|
+
analyticsConfig: appbaseConfig,
|
|
457
|
+
mongodb: props.mongodb
|
|
452
458
|
};
|
|
453
459
|
var queryParams = '';
|
|
454
460
|
|
|
@@ -2,7 +2,7 @@ import { Actions, helper } from '@appbaseio/reactivecore';
|
|
|
2
2
|
import { a as _extends, b as _objectWithoutPropertiesLoose } from './_rollupPluginBabelHelpers-0f24d612.js';
|
|
3
3
|
import VueTypes from 'vue-types';
|
|
4
4
|
import { componentTypes } from '@appbaseio/reactivecore/lib/utils/constants';
|
|
5
|
-
import { t as types } from './vueTypes-
|
|
5
|
+
import { t as types } from './vueTypes-fb61bb7b.js';
|
|
6
6
|
import '@appbaseio/reactivecore/lib/utils/transform';
|
|
7
7
|
import 'redux';
|
|
8
8
|
import { f as updateCustomQuery, u as updateDefaultQuery, i as isQueryIdentical, c as connect } from './index-cb1950b6.js';
|
package/dist/es/ReactiveList.js
CHANGED
|
@@ -2,11 +2,12 @@ import { helper, Actions } from '@appbaseio/reactivecore';
|
|
|
2
2
|
import { _ as _taggedTemplateLiteralLoose, a as _extends } from './_rollupPluginBabelHelpers-0f24d612.js';
|
|
3
3
|
import VueTypes from 'vue-types';
|
|
4
4
|
import { componentTypes } from '@appbaseio/reactivecore/lib/utils/constants';
|
|
5
|
+
import { withClickIds } from '@appbaseio/reactivecore/lib/utils/helper';
|
|
5
6
|
import { css } from 'emotion';
|
|
6
7
|
import styled from '@appbaseio/vue-emotion';
|
|
7
8
|
import 'polished';
|
|
8
9
|
import { p as pagination, B as Button } from './Button-91561391.js';
|
|
9
|
-
import { t as types } from './vueTypes-
|
|
10
|
+
import { t as types } from './vueTypes-fb61bb7b.js';
|
|
10
11
|
import '@appbaseio/reactivecore/lib/utils/transform';
|
|
11
12
|
import 'redux';
|
|
12
13
|
import { c as connect, h as hasCustomRenderer, i as isQueryIdentical, u as updateDefaultQuery, a as isFunction, g as getComponent } from './index-cb1950b6.js';
|
|
@@ -547,12 +548,9 @@ var ReactiveList = {
|
|
|
547
548
|
return this.$listeners && this.$listeners.resultStats;
|
|
548
549
|
},
|
|
549
550
|
stats: function stats() {
|
|
550
|
-
var _this$getAllData = this.getAllData(),
|
|
551
|
-
filteredResults = _this$getAllData.filteredResults;
|
|
552
|
-
|
|
553
551
|
return _extends({}, getResultStats(this), {
|
|
554
552
|
currentPage: this.currentPageState,
|
|
555
|
-
displayedResults:
|
|
553
|
+
displayedResults: this.data.length
|
|
556
554
|
});
|
|
557
555
|
},
|
|
558
556
|
hasCustomRender: function hasCustomRender() {
|
|
@@ -561,6 +559,27 @@ var ReactiveList = {
|
|
|
561
559
|
showInfiniteScroll: function showInfiniteScroll() {
|
|
562
560
|
// Pagination has higher priority then infinite scroll
|
|
563
561
|
return this.infiniteScroll && !this.shouldRenderPagination;
|
|
562
|
+
},
|
|
563
|
+
data: function data() {
|
|
564
|
+
var results = parseHits(this.hits) || [];
|
|
565
|
+
var parsedPromotedResults = parseHits(this.promotedResults) || [];
|
|
566
|
+
var filteredResults = results;
|
|
567
|
+
|
|
568
|
+
if (parsedPromotedResults.length) {
|
|
569
|
+
var ids = parsedPromotedResults.map(function (item) {
|
|
570
|
+
return item._id;
|
|
571
|
+
}).filter(Boolean);
|
|
572
|
+
|
|
573
|
+
if (ids) {
|
|
574
|
+
filteredResults = filteredResults.filter(function (item) {
|
|
575
|
+
return !ids.includes(item._id);
|
|
576
|
+
});
|
|
577
|
+
}
|
|
578
|
+
|
|
579
|
+
filteredResults = [].concat(parsedPromotedResults, filteredResults);
|
|
580
|
+
}
|
|
581
|
+
|
|
582
|
+
return withClickIds(filteredResults);
|
|
564
583
|
}
|
|
565
584
|
},
|
|
566
585
|
watch: {
|
|
@@ -642,7 +661,7 @@ var ReactiveList = {
|
|
|
642
661
|
}
|
|
643
662
|
},
|
|
644
663
|
hits: function hits(newVal, oldVal) {
|
|
645
|
-
this.$emit('data', this.
|
|
664
|
+
this.$emit('data', this.getData());
|
|
646
665
|
|
|
647
666
|
if (this.shouldRenderPagination) {
|
|
648
667
|
// called when page is changed
|
|
@@ -827,13 +846,10 @@ var ReactiveList = {
|
|
|
827
846
|
|
|
828
847
|
var h = this.$createElement;
|
|
829
848
|
var size = this.$props.size;
|
|
830
|
-
var hits = this.$data.hits;
|
|
831
|
-
var results = parseHits(hits) || [];
|
|
832
|
-
var filteredResults = results;
|
|
833
849
|
var renderItem = this.$scopedSlots.renderItem || this.$props.renderItem;
|
|
834
850
|
var element = this.hasCustomRender ? this.getComponent() : h("div", {
|
|
835
851
|
"class": this.$props.listClass + " " + getClassName$1(this.$props.innerClass, 'list')
|
|
836
|
-
}, [
|
|
852
|
+
}, [this.data.map(function (item, index) {
|
|
837
853
|
return renderItem({
|
|
838
854
|
item: item,
|
|
839
855
|
triggerClickAnalytics: function triggerClickAnalytics() {
|
|
@@ -844,7 +860,7 @@ var ReactiveList = {
|
|
|
844
860
|
|
|
845
861
|
return this.analytics ? h(ImpressionTracker$1, {
|
|
846
862
|
"attrs": {
|
|
847
|
-
"hits":
|
|
863
|
+
"hits": this.data
|
|
848
864
|
}
|
|
849
865
|
}, [element]) : element;
|
|
850
866
|
},
|
|
@@ -1024,8 +1040,8 @@ var ReactiveList = {
|
|
|
1024
1040
|
})]);
|
|
1025
1041
|
},
|
|
1026
1042
|
withClickIds: function withClickIds(results) {
|
|
1027
|
-
var _this$
|
|
1028
|
-
base = _this$
|
|
1043
|
+
var _this$getAllData = this.getAllData(),
|
|
1044
|
+
base = _this$getAllData.base;
|
|
1029
1045
|
|
|
1030
1046
|
return results.map(function (result, index) {
|
|
1031
1047
|
return _extends({}, result, {
|
|
@@ -1043,26 +1059,9 @@ var ReactiveList = {
|
|
|
1043
1059
|
hits = this.hits;
|
|
1044
1060
|
var results = parseHits(hits) || [];
|
|
1045
1061
|
var parsedPromotedResults = parseHits(promotedResults) || [];
|
|
1046
|
-
var filteredResults = results;
|
|
1047
1062
|
var base = currentPage * size;
|
|
1048
|
-
|
|
1049
|
-
if (parsedPromotedResults.length) {
|
|
1050
|
-
var ids = parsedPromotedResults.map(function (item) {
|
|
1051
|
-
return item._id;
|
|
1052
|
-
}).filter(Boolean);
|
|
1053
|
-
|
|
1054
|
-
if (ids) {
|
|
1055
|
-
filteredResults = filteredResults.filter(function (item) {
|
|
1056
|
-
return !ids.includes(item._id);
|
|
1057
|
-
});
|
|
1058
|
-
}
|
|
1059
|
-
|
|
1060
|
-
filteredResults = [].concat(parsedPromotedResults, filteredResults);
|
|
1061
|
-
}
|
|
1062
|
-
|
|
1063
1063
|
return {
|
|
1064
1064
|
results: results,
|
|
1065
|
-
filteredResults: filteredResults,
|
|
1066
1065
|
customData: customData || {},
|
|
1067
1066
|
promotedResults: parsedPromotedResults,
|
|
1068
1067
|
aggregationData: aggregationData,
|
|
@@ -1072,14 +1071,13 @@ var ReactiveList = {
|
|
|
1072
1071
|
};
|
|
1073
1072
|
},
|
|
1074
1073
|
getData: function getData() {
|
|
1075
|
-
var _this$
|
|
1076
|
-
|
|
1077
|
-
|
|
1078
|
-
|
|
1079
|
-
customData = _this$getAllData3.customData;
|
|
1074
|
+
var _this$getAllData2 = this.getAllData(),
|
|
1075
|
+
promotedResults = _this$getAllData2.promotedResults,
|
|
1076
|
+
aggregationData = _this$getAllData2.aggregationData,
|
|
1077
|
+
customData = _this$getAllData2.customData;
|
|
1080
1078
|
|
|
1081
1079
|
return {
|
|
1082
|
-
data: this.
|
|
1080
|
+
data: this.data,
|
|
1083
1081
|
aggregationData: this.withClickIds(aggregationData || []),
|
|
1084
1082
|
promotedData: this.withClickIds(promotedResults || []),
|
|
1085
1083
|
rawData: this.rawData,
|
package/dist/es/ResultCard.js
CHANGED
|
@@ -3,7 +3,7 @@ import VueTypes from 'vue-types';
|
|
|
3
3
|
import 'emotion';
|
|
4
4
|
import '@appbaseio/vue-emotion';
|
|
5
5
|
import 'polished';
|
|
6
|
-
import { t as types } from './vueTypes-
|
|
6
|
+
import { t as types } from './vueTypes-fb61bb7b.js';
|
|
7
7
|
import _mergeJSXProps from '@vue/babel-helper-vue-jsx-merge-props';
|
|
8
8
|
import { T as Title } from './Title-3522ff56.js';
|
|
9
9
|
import { I as Image, C as Card } from './Card-6446f1b7.js';
|
package/dist/es/ResultList.js
CHANGED
|
@@ -3,7 +3,7 @@ import VueTypes from 'vue-types';
|
|
|
3
3
|
import 'emotion';
|
|
4
4
|
import '@appbaseio/vue-emotion';
|
|
5
5
|
import 'polished';
|
|
6
|
-
import { t as types } from './vueTypes-
|
|
6
|
+
import { t as types } from './vueTypes-fb61bb7b.js';
|
|
7
7
|
import _mergeJSXProps from '@vue/babel-helper-vue-jsx-merge-props';
|
|
8
8
|
import { T as Title } from './Title-3522ff56.js';
|
|
9
9
|
import { I as Image, L as ListItem } from './ListItem-8e8fb535.js';
|
|
@@ -6,7 +6,7 @@ import 'emotion';
|
|
|
6
6
|
import '@appbaseio/vue-emotion';
|
|
7
7
|
import 'polished';
|
|
8
8
|
import { f as filters, B as Button } from './Button-91561391.js';
|
|
9
|
-
import { t as types } from './vueTypes-
|
|
9
|
+
import { t as types } from './vueTypes-fb61bb7b.js';
|
|
10
10
|
import 'redux';
|
|
11
11
|
import { c as connect } from './index-cb1950b6.js';
|
|
12
12
|
import { T as Title } from './Title-3522ff56.js';
|
|
@@ -6,7 +6,7 @@ import 'emotion';
|
|
|
6
6
|
import '@appbaseio/vue-emotion';
|
|
7
7
|
import 'polished';
|
|
8
8
|
import { l as loadMoreContainer, B as Button } from './Button-91561391.js';
|
|
9
|
-
import { t as types } from './vueTypes-
|
|
9
|
+
import { t as types } from './vueTypes-fb61bb7b.js';
|
|
10
10
|
import '@appbaseio/reactivecore/lib/utils/transform';
|
|
11
11
|
import 'redux';
|
|
12
12
|
import { f as updateCustomQuery, u as updateDefaultQuery, i as isQueryIdentical, a as isFunction, g as getComponent, h as hasCustomRenderer, c as connect } from './index-cb1950b6.js';
|
|
@@ -17,7 +17,7 @@ import 'compute-scroll-into-view';
|
|
|
17
17
|
import './DownShift-3558d402.js';
|
|
18
18
|
import { C as Container } from './Container-18b03fde.js';
|
|
19
19
|
import { g as getAggsQuery } from './utils-64a2e5f0.js';
|
|
20
|
-
import { D as Dropdown } from './DropDown-
|
|
20
|
+
import { D as Dropdown } from './DropDown-035c804f.js';
|
|
21
21
|
|
|
22
22
|
var updateQuery = Actions.updateQuery,
|
|
23
23
|
setQueryOptions = Actions.setQueryOptions,
|
package/dist/es/SingleList.js
CHANGED
|
@@ -5,7 +5,7 @@ import { componentTypes } from '@appbaseio/reactivecore/lib/utils/constants';
|
|
|
5
5
|
import 'emotion';
|
|
6
6
|
import '@appbaseio/vue-emotion';
|
|
7
7
|
import 'polished';
|
|
8
|
-
import { t as types } from './vueTypes-
|
|
8
|
+
import { t as types } from './vueTypes-fb61bb7b.js';
|
|
9
9
|
import '@appbaseio/reactivecore/lib/utils/transform';
|
|
10
10
|
import 'redux';
|
|
11
11
|
import { f as updateCustomQuery, u as updateDefaultQuery, i as isQueryIdentical, a as isFunction, g as getComponent, n as isEvent, h as hasCustomRenderer, c as connect } from './index-cb1950b6.js';
|
package/dist/es/SingleRange.js
CHANGED
|
@@ -5,7 +5,7 @@ import { componentTypes } from '@appbaseio/reactivecore/lib/utils/constants';
|
|
|
5
5
|
import 'emotion';
|
|
6
6
|
import '@appbaseio/vue-emotion';
|
|
7
7
|
import 'polished';
|
|
8
|
-
import { t as types } from './vueTypes-
|
|
8
|
+
import { t as types } from './vueTypes-fb61bb7b.js';
|
|
9
9
|
import '@appbaseio/reactivecore/lib/utils/transform';
|
|
10
10
|
import 'redux';
|
|
11
11
|
import { f as updateCustomQuery, i as isQueryIdentical, c as connect } from './index-cb1950b6.js';
|
package/dist/es/ToggleButton.js
CHANGED
|
@@ -6,7 +6,7 @@ import 'emotion';
|
|
|
6
6
|
import '@appbaseio/vue-emotion';
|
|
7
7
|
import 'polished';
|
|
8
8
|
import { B as Button, t as toggleButtons } from './Button-91561391.js';
|
|
9
|
-
import { t as types } from './vueTypes-
|
|
9
|
+
import { t as types } from './vueTypes-fb61bb7b.js';
|
|
10
10
|
import '@appbaseio/reactivecore/lib/utils/transform';
|
|
11
11
|
import 'redux';
|
|
12
12
|
import { f as updateCustomQuery, i as isQueryIdentical, c as connect } from './index-cb1950b6.js';
|
package/dist/es/index.js
CHANGED
|
@@ -2,11 +2,12 @@ import '@appbaseio/reactivecore';
|
|
|
2
2
|
import './_rollupPluginBabelHelpers-0f24d612.js';
|
|
3
3
|
import 'vue-types';
|
|
4
4
|
import '@appbaseio/reactivecore/lib/utils/constants';
|
|
5
|
+
import '@appbaseio/reactivecore/lib/utils/helper';
|
|
5
6
|
import 'emotion';
|
|
6
7
|
import '@appbaseio/vue-emotion';
|
|
7
8
|
import 'polished';
|
|
8
9
|
import './Button-91561391.js';
|
|
9
|
-
import './vueTypes-
|
|
10
|
+
import './vueTypes-fb61bb7b.js';
|
|
10
11
|
export { default as ReactiveList } from './ReactiveList.js';
|
|
11
12
|
import '@appbaseio/reactivecore/lib/utils/transform';
|
|
12
13
|
import 'redux';
|
|
@@ -17,7 +18,6 @@ import './Title-3522ff56.js';
|
|
|
17
18
|
import './ListItem-8e8fb535.js';
|
|
18
19
|
import './Card-6446f1b7.js';
|
|
19
20
|
import './Flex-8770345d.js';
|
|
20
|
-
import '@appbaseio/reactivecore/lib/utils/helper';
|
|
21
21
|
import '@appbaseio/reactivecore/lib/actions/analytics';
|
|
22
22
|
import 'appbase-js';
|
|
23
23
|
import 'url-search-params-polyfill';
|
|
@@ -33,7 +33,7 @@ import './FormControlList-704f8dee.js';
|
|
|
33
33
|
import './utils-64a2e5f0.js';
|
|
34
34
|
export { default as SingleList } from './SingleList.js';
|
|
35
35
|
export { default as MultiList } from './MultiList.js';
|
|
36
|
-
import './DropDown-
|
|
36
|
+
import './DropDown-035c804f.js';
|
|
37
37
|
export { default as SingleDropdownList } from './SingleDropdownList.js';
|
|
38
38
|
export { default as MultiDropdownList } from './MultiDropdownList.js';
|
|
39
39
|
export { default as ToggleButton } from './ToggleButton.js';
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { a as _extends, b as _objectWithoutPropertiesLoose } from './_rollupPluginBabelHelpers-0f24d612.js';
|
|
2
2
|
import { validProps, componentTypes } from '@appbaseio/reactivecore/lib/utils/constants';
|
|
3
|
-
import { getRSQuery, extractPropsFromState, getDependentQueries } from '@appbaseio/reactivecore/lib/utils/transform';
|
|
4
3
|
import { pushToAndClause, buildQuery } from '@appbaseio/reactivecore/lib/utils/helper';
|
|
4
|
+
import { getRSQuery, extractPropsFromState, getDependentQueries } from '@appbaseio/reactivecore/lib/utils/transform';
|
|
5
5
|
import Appbase from 'appbase-js';
|
|
6
6
|
import valueReducer from '@appbaseio/reactivecore/lib/reducers/valueReducer';
|
|
7
7
|
import queryReducer from '@appbaseio/reactivecore/lib/reducers/queryReducer';
|
package/dist/es/install.js
CHANGED
|
@@ -2,11 +2,12 @@ import '@appbaseio/reactivecore';
|
|
|
2
2
|
import './_rollupPluginBabelHelpers-0f24d612.js';
|
|
3
3
|
import 'vue-types';
|
|
4
4
|
import '@appbaseio/reactivecore/lib/utils/constants';
|
|
5
|
+
import '@appbaseio/reactivecore/lib/utils/helper';
|
|
5
6
|
import 'emotion';
|
|
6
7
|
import '@appbaseio/vue-emotion';
|
|
7
8
|
import 'polished';
|
|
8
9
|
import './Button-91561391.js';
|
|
9
|
-
import './vueTypes-
|
|
10
|
+
import './vueTypes-fb61bb7b.js';
|
|
10
11
|
import ReactiveList from './ReactiveList.js';
|
|
11
12
|
import '@appbaseio/reactivecore/lib/utils/transform';
|
|
12
13
|
import 'redux';
|
|
@@ -17,7 +18,6 @@ import './Title-3522ff56.js';
|
|
|
17
18
|
import './ListItem-8e8fb535.js';
|
|
18
19
|
import './Card-6446f1b7.js';
|
|
19
20
|
import './Flex-8770345d.js';
|
|
20
|
-
import '@appbaseio/reactivecore/lib/utils/helper';
|
|
21
21
|
import '@appbaseio/reactivecore/lib/actions/analytics';
|
|
22
22
|
import 'appbase-js';
|
|
23
23
|
import 'url-search-params-polyfill';
|
|
@@ -33,7 +33,7 @@ import './FormControlList-704f8dee.js';
|
|
|
33
33
|
import './utils-64a2e5f0.js';
|
|
34
34
|
import SingleList from './SingleList.js';
|
|
35
35
|
import MultiList from './MultiList.js';
|
|
36
|
-
import './DropDown-
|
|
36
|
+
import './DropDown-035c804f.js';
|
|
37
37
|
import SingleDropdownList from './SingleDropdownList.js';
|
|
38
38
|
import MultiDropdownList from './MultiDropdownList.js';
|
|
39
39
|
import ToggleButton from './ToggleButton.js';
|
package/dist/es/version.js
CHANGED
|
@@ -110,7 +110,11 @@ var types = {
|
|
|
110
110
|
userId: VueTypes.string,
|
|
111
111
|
customEvents: VueTypes.object,
|
|
112
112
|
enableTelemetry: VueTypes.bool.def(true)
|
|
113
|
-
}).def({})
|
|
113
|
+
}).def({}),
|
|
114
|
+
mongodb: VueTypes.shape({
|
|
115
|
+
db: VueTypes.string,
|
|
116
|
+
collection: VueTypes.string
|
|
117
|
+
})
|
|
114
118
|
};
|
|
115
119
|
|
|
116
120
|
export { types as t };
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@appbaseio/reactivesearch-vue",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.24.2",
|
|
4
4
|
"private": false,
|
|
5
5
|
"main": "dist/cjs/index.js",
|
|
6
6
|
"jsnext:main": "dist/es/index.js",
|
|
@@ -34,10 +34,10 @@
|
|
|
34
34
|
],
|
|
35
35
|
"sideEffects": false,
|
|
36
36
|
"dependencies": {
|
|
37
|
-
"@appbaseio/reactivecore": "9.
|
|
37
|
+
"@appbaseio/reactivecore": "9.13.0",
|
|
38
38
|
"@appbaseio/vue-emotion": "0.4.4",
|
|
39
39
|
"@vue/babel-helper-vue-jsx-merge-props": "^1.0.0",
|
|
40
|
-
"appbase-js": "^4.
|
|
40
|
+
"appbase-js": "^4.5.1",
|
|
41
41
|
"compute-scroll-into-view": "^1.0.11",
|
|
42
42
|
"emotion": "9.2.12",
|
|
43
43
|
"hotkeys-js": "^3.8.7",
|