@appbaseio/reactivesearch-vue 3.1.0-rc.1 → 3.2.0
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 +44179 -23301
- package/dist/@appbaseio/reactivesearch-vue.umd.js.map +1 -1
- package/dist/@appbaseio/reactivesearch-vue.umd.min.js +32 -32
- package/dist/@appbaseio/reactivesearch-vue.umd.min.js.map +1 -1
- package/dist/cjs/{Button-d4da7470.js → Button-f96a0570.js} +14 -7
- package/dist/cjs/{ComponentWrapper-b5c78446.js → ComponentWrapper-0334c14b.js} +3 -0
- package/dist/cjs/{DropDown-ec31bd3f.js → DropDown-ebe20e81.js} +18 -7
- package/dist/cjs/DynamicRangeSlider.js +6 -2
- package/dist/cjs/Input-cee51a53.js +97 -0
- package/dist/cjs/MultiDropdownList.js +7 -5
- package/dist/cjs/MultiList.js +4 -3
- package/dist/cjs/MultiRange.js +3 -2
- package/dist/cjs/{Pagination-b953a80a.js → Pagination-c53a18ab.js} +2 -2
- package/dist/cjs/RangeInput.js +7 -3
- package/dist/cjs/RangeSlider.js +7 -3
- package/dist/cjs/ReactiveBase.js +4 -4
- package/dist/cjs/ReactiveComponent.js +3 -2
- package/dist/cjs/ReactiveGoogleMap.js +8 -4
- package/dist/cjs/ReactiveList.js +5 -4
- package/dist/cjs/ResultCard.js +1 -1
- package/dist/cjs/ResultList.js +1 -1
- package/dist/cjs/SelectedFilters.js +3 -2
- package/dist/cjs/SingleDropdownList.js +7 -5
- package/dist/cjs/SingleList.js +4 -3
- package/dist/cjs/SingleRange.js +3 -2
- package/dist/cjs/ToggleButton.js +5 -3
- package/dist/cjs/index.js +14 -7
- package/dist/cjs/{install-fd2155c7.js → install-a3c5b872.js} +2062 -229
- package/dist/cjs/install.js +13 -7
- package/dist/cjs/version.js +1 -1
- package/dist/cjs/{vueTypes-1bf00978.js → vueTypes-289a891a.js} +19 -0
- package/dist/components/ReactiveBase/ReactiveBase.d.ts +33 -0
- package/dist/components/basic/ReactiveComponent.d.ts +30 -0
- package/dist/components/basic/ReactiveComponentPrivate.d.ts +10 -0
- package/dist/components/basic/SelectedFilters.d.ts +24 -0
- package/dist/components/basic/StateProvider.d.ts +12 -0
- package/dist/components/list/MultiDropdownList.d.ts +49 -0
- package/dist/components/list/MultiList.d.ts +47 -0
- package/dist/components/list/SingleDropdownList.d.ts +47 -0
- package/dist/components/list/SingleList.d.ts +47 -0
- package/dist/components/list/ToggleButton.d.ts +33 -0
- package/dist/components/list/TreeList.d.ts +48 -0
- package/dist/components/range/DynamicRangeSlider.d.ts +38 -0
- package/dist/components/range/MultiRange.d.ts +30 -0
- package/dist/components/range/RangeInput.d.ts +30 -0
- package/dist/components/range/RangeSlider.d.ts +40 -0
- package/dist/components/range/SingleRange.d.ts +28 -0
- package/dist/components/result/ReactiveList.d.ts +55 -0
- package/dist/components/result/ResultCard.d.ts +10 -0
- package/dist/components/result/ResultList.d.ts +11 -0
- package/dist/components/search/AIAnswer.d.ts +44 -0
- package/dist/components/search/SearchBox.d.ts +111 -0
- package/dist/es/{Button-fd869491.js → Button-5c2cf399.js} +14 -7
- package/dist/es/{ComponentWrapper-e91c9d43.js → ComponentWrapper-46d04344.js} +3 -0
- package/dist/es/{DropDown-74c20431.js → DropDown-36fa9ac5.js} +18 -8
- package/dist/es/DynamicRangeSlider.js +7 -3
- package/dist/es/Input-437ae439.js +89 -0
- package/dist/es/MultiDropdownList.js +7 -5
- package/dist/es/MultiList.js +4 -3
- package/dist/es/MultiRange.js +3 -2
- package/dist/es/{Pagination-c2745bec.js → Pagination-591fdb79.js} +2 -2
- package/dist/es/RangeInput.js +7 -3
- package/dist/es/RangeSlider.js +8 -4
- package/dist/es/ReactiveBase.js +4 -4
- package/dist/es/ReactiveComponent.js +3 -2
- package/dist/es/ReactiveGoogleMap.js +8 -4
- package/dist/es/ReactiveList.js +5 -4
- package/dist/es/ResultCard.js +1 -1
- package/dist/es/ResultList.js +1 -1
- package/dist/es/SelectedFilters.js +3 -2
- package/dist/es/SingleDropdownList.js +7 -5
- package/dist/es/SingleList.js +4 -3
- package/dist/es/SingleRange.js +3 -2
- package/dist/es/ToggleButton.js +5 -3
- package/dist/es/index.js +14 -8
- package/dist/es/{install-db7d6387.js → install-3c9a9694.js} +2067 -235
- package/dist/es/install.js +13 -7
- package/dist/es/version.js +1 -1
- package/dist/es/{vueTypes-f1923c72.js → vueTypes-f503e267.js} +19 -0
- package/dist/index.d.ts +40 -0
- package/dist/types.ts +238 -0
- package/package.json +91 -88
- package/dist/cjs/Input-497be42a.js +0 -74
- package/dist/es/Input-f7499ef8.js +0 -69
package/dist/es/RangeSlider.js
CHANGED
|
@@ -1,17 +1,20 @@
|
|
|
1
1
|
import { Actions, helper } from '@appbaseio/reactivecore';
|
|
2
2
|
import { componentTypes } from '@appbaseio/reactivecore/lib/utils/constants';
|
|
3
3
|
import './_rollupPluginBabelHelpers-ded08042.js';
|
|
4
|
-
import { createVNode,
|
|
4
|
+
import { createVNode, mergeProps } from 'vue';
|
|
5
5
|
import VueTypes from 'vue-types';
|
|
6
6
|
import '@appbaseio/vue-emotion';
|
|
7
|
-
import { t as types } from './vueTypes-
|
|
7
|
+
import { t as types } from './vueTypes-f503e267.js';
|
|
8
8
|
import '@appbaseio/reactivecore/lib/utils/transform';
|
|
9
9
|
import 'redux';
|
|
10
10
|
import { j as updateCustomQuery, i as isQueryIdentical, c as connect } from './index-104f1dfb.js';
|
|
11
|
-
import { C as ComponentWrapper } from './ComponentWrapper-
|
|
11
|
+
import { C as ComponentWrapper } from './ComponentWrapper-46d04344.js';
|
|
12
12
|
import { P as PreferencesConsumer } from './PreferencesConsumer-0856ed43.js';
|
|
13
13
|
import { T as Title } from './Title-863dfa42.js';
|
|
14
14
|
import { C as Container } from './Container-d00219f7.js';
|
|
15
|
+
import VueSlider from 'vue-slider-component/dist-css/vue-slider-component.umd.min.js';
|
|
16
|
+
import 'vue-slider-component/dist-css/vue-slider-component.css';
|
|
17
|
+
import 'vue-slider-component/theme/default.css';
|
|
15
18
|
import { g as getComponents, N as NoSSR, S as Slider } from './ssr-c630ccb9.js';
|
|
16
19
|
|
|
17
20
|
var updateQuery = Actions.updateQuery,
|
|
@@ -45,6 +48,7 @@ var RangeSlider = {
|
|
|
45
48
|
}),
|
|
46
49
|
rangeLabels: types.rangeLabels,
|
|
47
50
|
componentId: types.stringRequired,
|
|
51
|
+
compoundClause: types.compoundClause,
|
|
48
52
|
customQuery: types.func,
|
|
49
53
|
data: types.data,
|
|
50
54
|
dataField: types.stringRequired,
|
|
@@ -191,7 +195,7 @@ var RangeSlider = {
|
|
|
191
195
|
"class": getClassName(_this2.$props.innerClass, 'slider')
|
|
192
196
|
}, {
|
|
193
197
|
"default": function _default() {
|
|
194
|
-
return [createVNode(
|
|
198
|
+
return [createVNode(VueSlider, mergeProps({
|
|
195
199
|
"ref": "slider",
|
|
196
200
|
"modelValue": _this2.currentValue,
|
|
197
201
|
"min": _this2.$props.range.start,
|
package/dist/es/ReactiveBase.js
CHANGED
|
@@ -5,7 +5,7 @@ import { h, createVNode, isVNode } from 'vue';
|
|
|
5
5
|
import VueTypes from 'vue-types';
|
|
6
6
|
import { isEqual as isEqual$1, transformRequestUsingEndpoint } from '@appbaseio/reactivecore/lib/utils/helper';
|
|
7
7
|
import { styled, createCache } from '@appbaseio/vue-emotion';
|
|
8
|
-
import { t as types } from './vueTypes-
|
|
8
|
+
import { t as types } from './vueTypes-f503e267.js';
|
|
9
9
|
import 'redux';
|
|
10
10
|
import { c as connect, e as composeThemeObject, X as X_SEARCH_CLIENT } from './index-104f1dfb.js';
|
|
11
11
|
import configureStore, { Actions as Actions$1 } from '@appbaseio/reactivecore/lib';
|
|
@@ -308,11 +308,11 @@ var light = {
|
|
|
308
308
|
var dark = {
|
|
309
309
|
typography: typography,
|
|
310
310
|
colors: {
|
|
311
|
-
textColor: '#
|
|
311
|
+
textColor: '#ffffffcf',
|
|
312
312
|
backgroundColor: '#212121',
|
|
313
|
-
primaryTextColor: '#
|
|
313
|
+
primaryTextColor: '#ffffffcf',
|
|
314
314
|
primaryColor: '#2196F3',
|
|
315
|
-
titleColor: '#
|
|
315
|
+
titleColor: '#ffffffcf',
|
|
316
316
|
alertColor: '#d9534f',
|
|
317
317
|
borderColor: '#666'
|
|
318
318
|
}
|
|
@@ -3,11 +3,11 @@ import { componentTypes } from '@appbaseio/reactivecore/lib/utils/constants';
|
|
|
3
3
|
import { a as _extends, b as _objectWithoutPropertiesLoose } from './_rollupPluginBabelHelpers-ded08042.js';
|
|
4
4
|
import { createVNode, h } from 'vue';
|
|
5
5
|
import VueTypes from 'vue-types';
|
|
6
|
-
import { t as types } from './vueTypes-
|
|
6
|
+
import { t as types } from './vueTypes-f503e267.js';
|
|
7
7
|
import '@appbaseio/reactivecore/lib/utils/transform';
|
|
8
8
|
import 'redux';
|
|
9
9
|
import { j as updateCustomQuery, u as updateDefaultQuery, i as isQueryIdentical, c as connect } from './index-104f1dfb.js';
|
|
10
|
-
import { C as ComponentWrapper } from './ComponentWrapper-
|
|
10
|
+
import { C as ComponentWrapper } from './ComponentWrapper-46d04344.js';
|
|
11
11
|
import { P as PreferencesConsumer } from './PreferencesConsumer-0856ed43.js';
|
|
12
12
|
|
|
13
13
|
var _excluded = ["options"];
|
|
@@ -25,6 +25,7 @@ var ReactiveComponent = {
|
|
|
25
25
|
name: 'ReactiveComponent',
|
|
26
26
|
props: {
|
|
27
27
|
componentId: types.stringRequired,
|
|
28
|
+
compoundClause: types.compoundClause,
|
|
28
29
|
aggregationField: types.string,
|
|
29
30
|
aggregationSize: VueTypes.number,
|
|
30
31
|
size: VueTypes.number,
|
|
@@ -4,16 +4,17 @@ import _transformOn from '@vue/babel-helper-vue-transform-on';
|
|
|
4
4
|
import { a as _extends, b as _objectWithoutPropertiesLoose, c as _toPropertyKey, d as _inheritsLoose, _ as _taggedTemplateLiteralLoose } from './_rollupPluginBabelHelpers-ded08042.js';
|
|
5
5
|
import { createVNode, mergeProps } from 'vue';
|
|
6
6
|
import VueTypes from 'vue-types';
|
|
7
|
+
import '@appbaseio/reactivecore/lib/utils/helper';
|
|
7
8
|
import { styled } from '@appbaseio/vue-emotion';
|
|
8
9
|
import { css } from '@emotion/css';
|
|
9
10
|
import 'polished';
|
|
10
|
-
import './Button-
|
|
11
|
-
import { t as types } from './vueTypes-
|
|
12
|
-
import { P as Pagination } from './Pagination-
|
|
11
|
+
import './Button-5c2cf399.js';
|
|
12
|
+
import { t as types } from './vueTypes-f503e267.js';
|
|
13
|
+
import { P as Pagination } from './Pagination-591fdb79.js';
|
|
13
14
|
import '@appbaseio/reactivecore/lib/utils/transform';
|
|
14
15
|
import 'redux';
|
|
15
16
|
import { h as hasCustomRenderer, i as isQueryIdentical, g as getComponent, a as isFunction, c as connect } from './index-104f1dfb.js';
|
|
16
|
-
import { C as ComponentWrapper } from './ComponentWrapper-
|
|
17
|
+
import { C as ComponentWrapper } from './ComponentWrapper-46d04344.js';
|
|
17
18
|
import { P as PreferencesConsumer } from './PreferencesConsumer-0856ed43.js';
|
|
18
19
|
import { C as Checkbox } from './FormControlList-fe6eaee4.js';
|
|
19
20
|
import VueGoogleMaps, { InfoWindow, MapElementMixin, Marker, GMapCluster, Map } from 'vue-google-maps-community-fork';
|
|
@@ -101,6 +102,7 @@ var ReactiveMap = {
|
|
|
101
102
|
props: {
|
|
102
103
|
className: types.string,
|
|
103
104
|
componentId: types.stringRequired,
|
|
105
|
+
compoundClause: types.compoundClause,
|
|
104
106
|
dataField: types.stringRequired,
|
|
105
107
|
react: types.react,
|
|
106
108
|
size: types.number,
|
|
@@ -1959,6 +1961,7 @@ var ReactiveGoogleMap = {
|
|
|
1959
1961
|
props: {
|
|
1960
1962
|
className: types.string,
|
|
1961
1963
|
componentId: types.stringRequired,
|
|
1964
|
+
compoundClause: types.compoundClause,
|
|
1962
1965
|
dataField: types.stringRequired,
|
|
1963
1966
|
defaultQuery: VueTypes.func,
|
|
1964
1967
|
loader: types.title,
|
|
@@ -2097,6 +2100,7 @@ var ReactiveGoogleMap = {
|
|
|
2097
2100
|
"getMapRef": this.getMapRef,
|
|
2098
2101
|
"renderMap": this.renderMap,
|
|
2099
2102
|
"componentId": this.componentId,
|
|
2103
|
+
"compoundClause": this.compoundClause,
|
|
2100
2104
|
"className": this.className,
|
|
2101
2105
|
"dataField": this.dataField,
|
|
2102
2106
|
"defaultZoom": this.defaultZoom,
|
package/dist/es/ReactiveList.js
CHANGED
|
@@ -8,13 +8,13 @@ import { withClickIds } from '@appbaseio/reactivecore/lib/utils/helper';
|
|
|
8
8
|
import { styled } from '@appbaseio/vue-emotion';
|
|
9
9
|
import { css } from '@emotion/css';
|
|
10
10
|
import 'polished';
|
|
11
|
-
import './Button-
|
|
12
|
-
import { t as types } from './vueTypes-
|
|
13
|
-
import { P as Pagination } from './Pagination-
|
|
11
|
+
import './Button-5c2cf399.js';
|
|
12
|
+
import { t as types } from './vueTypes-f503e267.js';
|
|
13
|
+
import { P as Pagination } from './Pagination-591fdb79.js';
|
|
14
14
|
import '@appbaseio/reactivecore/lib/utils/transform';
|
|
15
15
|
import 'redux';
|
|
16
16
|
import { c as connect, h as hasCustomRenderer, i as isQueryIdentical, u as updateDefaultQuery, a as isFunction, g as getComponent } from './index-104f1dfb.js';
|
|
17
|
-
import { C as ComponentWrapper } from './ComponentWrapper-
|
|
17
|
+
import { C as ComponentWrapper } from './ComponentWrapper-46d04344.js';
|
|
18
18
|
import { P as PreferencesConsumer } from './PreferencesConsumer-0856ed43.js';
|
|
19
19
|
import './Title-863dfa42.js';
|
|
20
20
|
import { c as container } from './ListItem-e3c6acf4.js';
|
|
@@ -295,6 +295,7 @@ var ReactiveList = {
|
|
|
295
295
|
// component props
|
|
296
296
|
className: types.string,
|
|
297
297
|
componentId: types.stringRequired,
|
|
298
|
+
compoundClause: types.compoundClause,
|
|
298
299
|
dataField: types.stringRequired,
|
|
299
300
|
aggregationField: types.string,
|
|
300
301
|
aggregationSize: VueTypes.number,
|
package/dist/es/ResultCard.js
CHANGED
|
@@ -4,7 +4,7 @@ import VueTypes from 'vue-types';
|
|
|
4
4
|
import '@appbaseio/vue-emotion';
|
|
5
5
|
import '@emotion/css';
|
|
6
6
|
import 'polished';
|
|
7
|
-
import { t as types } from './vueTypes-
|
|
7
|
+
import { t as types } from './vueTypes-f503e267.js';
|
|
8
8
|
import { T as Title } from './Title-863dfa42.js';
|
|
9
9
|
import { I as Image, C as Card } from './Card-54b9e7a0.js';
|
|
10
10
|
|
package/dist/es/ResultList.js
CHANGED
|
@@ -4,7 +4,7 @@ import VueTypes from 'vue-types';
|
|
|
4
4
|
import '@appbaseio/vue-emotion';
|
|
5
5
|
import '@emotion/css';
|
|
6
6
|
import 'polished';
|
|
7
|
-
import { t as types } from './vueTypes-
|
|
7
|
+
import { t as types } from './vueTypes-f503e267.js';
|
|
8
8
|
import { T as Title } from './Title-863dfa42.js';
|
|
9
9
|
import { I as Image, L as ListItem } from './ListItem-e3c6acf4.js';
|
|
10
10
|
|
|
@@ -4,11 +4,12 @@ import _transformOn from '@vue/babel-helper-vue-transform-on';
|
|
|
4
4
|
import './_rollupPluginBabelHelpers-ded08042.js';
|
|
5
5
|
import { createVNode, mergeProps, createTextVNode } from 'vue';
|
|
6
6
|
import VueTypes from 'vue-types';
|
|
7
|
+
import '@appbaseio/reactivecore/lib/utils/helper';
|
|
7
8
|
import '@appbaseio/vue-emotion';
|
|
8
9
|
import '@emotion/css';
|
|
9
10
|
import 'polished';
|
|
10
|
-
import { f as filters, B as Button } from './Button-
|
|
11
|
-
import { t as types } from './vueTypes-
|
|
11
|
+
import { f as filters, B as Button } from './Button-5c2cf399.js';
|
|
12
|
+
import { t as types } from './vueTypes-f503e267.js';
|
|
12
13
|
import 'redux';
|
|
13
14
|
import { f as decodeHtml, c as connect } from './index-104f1dfb.js';
|
|
14
15
|
import { T as Title } from './Title-863dfa42.js';
|
|
@@ -4,19 +4,20 @@ import '@vue/babel-helper-vue-transform-on';
|
|
|
4
4
|
import { a as _extends } from './_rollupPluginBabelHelpers-ded08042.js';
|
|
5
5
|
import { createVNode, isVNode } from 'vue';
|
|
6
6
|
import VueTypes from 'vue-types';
|
|
7
|
+
import '@appbaseio/reactivecore/lib/utils/helper';
|
|
7
8
|
import '@appbaseio/vue-emotion';
|
|
8
9
|
import '@emotion/css';
|
|
9
10
|
import 'polished';
|
|
10
|
-
import { l as loadMoreContainer, B as Button } from './Button-
|
|
11
|
-
import { t as types } from './vueTypes-
|
|
11
|
+
import { l as loadMoreContainer, B as Button } from './Button-5c2cf399.js';
|
|
12
|
+
import { t as types } from './vueTypes-f503e267.js';
|
|
12
13
|
import '@appbaseio/reactivecore/lib/utils/transform';
|
|
13
14
|
import 'redux';
|
|
14
15
|
import { j as updateCustomQuery, u as updateDefaultQuery, i as isQueryIdentical, a as isFunction, g as getComponent, h as hasCustomRenderer, c as connect } from './index-104f1dfb.js';
|
|
15
|
-
import { C as ComponentWrapper } from './ComponentWrapper-
|
|
16
|
+
import { C as ComponentWrapper } from './ComponentWrapper-46d04344.js';
|
|
16
17
|
import { P as PreferencesConsumer } from './PreferencesConsumer-0856ed43.js';
|
|
17
18
|
import { T as Title } from './Title-863dfa42.js';
|
|
18
|
-
import { c as Dropdown } from './DropDown-
|
|
19
|
-
import './Input-
|
|
19
|
+
import { c as Dropdown } from './DropDown-36fa9ac5.js';
|
|
20
|
+
import './Input-437ae439.js';
|
|
20
21
|
import 'compute-scroll-into-view';
|
|
21
22
|
import { C as Container } from './Container-d00219f7.js';
|
|
22
23
|
import '@appbaseio/reactivecore/lib/utils/suggestions';
|
|
@@ -55,6 +56,7 @@ var SingleDropdownList = {
|
|
|
55
56
|
beforeValueChange: types.func,
|
|
56
57
|
className: VueTypes.string.def(''),
|
|
57
58
|
componentId: types.stringRequired,
|
|
59
|
+
compoundClause: types.compoundClause,
|
|
58
60
|
customQuery: types.func,
|
|
59
61
|
dataField: types.stringRequired,
|
|
60
62
|
defaultQuery: types.func,
|
package/dist/es/SingleList.js
CHANGED
|
@@ -6,14 +6,14 @@ import VueTypes from 'vue-types';
|
|
|
6
6
|
import '@appbaseio/vue-emotion';
|
|
7
7
|
import '@emotion/css';
|
|
8
8
|
import 'polished';
|
|
9
|
-
import { t as types } from './vueTypes-
|
|
9
|
+
import { t as types } from './vueTypes-f503e267.js';
|
|
10
10
|
import '@appbaseio/reactivecore/lib/utils/transform';
|
|
11
11
|
import 'redux';
|
|
12
12
|
import { j as updateCustomQuery, u as updateDefaultQuery, i as isQueryIdentical, a as isFunction, g as getComponent, m as isEvent, h as hasCustomRenderer, c as connect } from './index-104f1dfb.js';
|
|
13
|
-
import { C as ComponentWrapper } from './ComponentWrapper-
|
|
13
|
+
import { C as ComponentWrapper } from './ComponentWrapper-46d04344.js';
|
|
14
14
|
import { P as PreferencesConsumer } from './PreferencesConsumer-0856ed43.js';
|
|
15
15
|
import { T as Title } from './Title-863dfa42.js';
|
|
16
|
-
import { I as Input } from './Input-
|
|
16
|
+
import { I as Input } from './Input-437ae439.js';
|
|
17
17
|
import { C as Container } from './Container-d00219f7.js';
|
|
18
18
|
import { replaceDiacritics } from '@appbaseio/reactivecore/lib/utils/suggestions';
|
|
19
19
|
import { U as UL, R as Radio } from './FormControlList-fe6eaee4.js';
|
|
@@ -35,6 +35,7 @@ var SingleList = {
|
|
|
35
35
|
beforeValueChange: types.func,
|
|
36
36
|
className: VueTypes.string.def(''),
|
|
37
37
|
componentId: types.stringRequired,
|
|
38
|
+
compoundClause: types.compoundClause,
|
|
38
39
|
customQuery: types.func,
|
|
39
40
|
dataField: types.stringRequired,
|
|
40
41
|
defaultValue: types.string,
|
package/dist/es/SingleRange.js
CHANGED
|
@@ -6,11 +6,11 @@ import { createVNode, mergeProps, isVNode } from 'vue';
|
|
|
6
6
|
import VueTypes from 'vue-types';
|
|
7
7
|
import '@appbaseio/vue-emotion';
|
|
8
8
|
import 'polished';
|
|
9
|
-
import { t as types } from './vueTypes-
|
|
9
|
+
import { t as types } from './vueTypes-f503e267.js';
|
|
10
10
|
import '@appbaseio/reactivecore/lib/utils/transform';
|
|
11
11
|
import 'redux';
|
|
12
12
|
import { j as updateCustomQuery, i as isQueryIdentical, c as connect } from './index-104f1dfb.js';
|
|
13
|
-
import { C as ComponentWrapper } from './ComponentWrapper-
|
|
13
|
+
import { C as ComponentWrapper } from './ComponentWrapper-46d04344.js';
|
|
14
14
|
import { P as PreferencesConsumer } from './PreferencesConsumer-0856ed43.js';
|
|
15
15
|
import { T as Title } from './Title-863dfa42.js';
|
|
16
16
|
import { C as Container } from './Container-d00219f7.js';
|
|
@@ -39,6 +39,7 @@ var SingleRange = {
|
|
|
39
39
|
beforeValueChange: types.func,
|
|
40
40
|
className: VueTypes.string.def(''),
|
|
41
41
|
componentId: types.stringRequired,
|
|
42
|
+
compoundClause: types.compoundClause,
|
|
42
43
|
customQuery: types.func,
|
|
43
44
|
data: types.data,
|
|
44
45
|
dataField: types.stringRequired,
|
package/dist/es/ToggleButton.js
CHANGED
|
@@ -3,15 +3,16 @@ import { componentTypes } from '@appbaseio/reactivecore/lib/utils/constants';
|
|
|
3
3
|
import './_rollupPluginBabelHelpers-ded08042.js';
|
|
4
4
|
import { createVNode } from 'vue';
|
|
5
5
|
import VueTypes from 'vue-types';
|
|
6
|
+
import '@appbaseio/reactivecore/lib/utils/helper';
|
|
6
7
|
import '@appbaseio/vue-emotion';
|
|
7
8
|
import '@emotion/css';
|
|
8
9
|
import 'polished';
|
|
9
|
-
import { B as Button, t as toggleButtons } from './Button-
|
|
10
|
-
import { t as types } from './vueTypes-
|
|
10
|
+
import { B as Button, t as toggleButtons } from './Button-5c2cf399.js';
|
|
11
|
+
import { t as types } from './vueTypes-f503e267.js';
|
|
11
12
|
import '@appbaseio/reactivecore/lib/utils/transform';
|
|
12
13
|
import 'redux';
|
|
13
14
|
import { j as updateCustomQuery, i as isQueryIdentical, c as connect } from './index-104f1dfb.js';
|
|
14
|
-
import { C as ComponentWrapper } from './ComponentWrapper-
|
|
15
|
+
import { C as ComponentWrapper } from './ComponentWrapper-46d04344.js';
|
|
15
16
|
import { P as PreferencesConsumer } from './PreferencesConsumer-0856ed43.js';
|
|
16
17
|
import { T as Title } from './Title-863dfa42.js';
|
|
17
18
|
import { C as Container } from './Container-d00219f7.js';
|
|
@@ -28,6 +29,7 @@ var ToggleButton = {
|
|
|
28
29
|
name: 'ToggleButton',
|
|
29
30
|
props: {
|
|
30
31
|
componentId: types.stringRequired,
|
|
32
|
+
compoundClause: types.compoundClause,
|
|
31
33
|
customQuery: types.func,
|
|
32
34
|
data: types.data,
|
|
33
35
|
dataField: types.stringRequired,
|
package/dist/es/index.js
CHANGED
|
@@ -8,14 +8,14 @@ import '@appbaseio/reactivecore/lib/utils/helper';
|
|
|
8
8
|
import '@appbaseio/vue-emotion';
|
|
9
9
|
import '@emotion/css';
|
|
10
10
|
import 'polished';
|
|
11
|
-
import './Button-
|
|
12
|
-
import './vueTypes-
|
|
13
|
-
import './Pagination-
|
|
11
|
+
import './Button-5c2cf399.js';
|
|
12
|
+
import './vueTypes-f503e267.js';
|
|
13
|
+
import './Pagination-591fdb79.js';
|
|
14
14
|
export { default as ReactiveList } from './ReactiveList.js';
|
|
15
15
|
import '@appbaseio/reactivecore/lib/utils/transform';
|
|
16
16
|
import 'redux';
|
|
17
17
|
import './index-104f1dfb.js';
|
|
18
|
-
import './ComponentWrapper-
|
|
18
|
+
import './ComponentWrapper-46d04344.js';
|
|
19
19
|
import './PreferencesConsumer-0856ed43.js';
|
|
20
20
|
import './Title-863dfa42.js';
|
|
21
21
|
import './ListItem-e3c6acf4.js';
|
|
@@ -28,13 +28,16 @@ import '@appbaseio/analytics';
|
|
|
28
28
|
import 'url-search-params-polyfill';
|
|
29
29
|
export { default as ReactiveBase } from './ReactiveBase.js';
|
|
30
30
|
import 'hotkeys-js';
|
|
31
|
-
import
|
|
32
|
-
|
|
33
|
-
import './
|
|
34
|
-
|
|
31
|
+
import 'xss';
|
|
32
|
+
import 'remarkable';
|
|
33
|
+
import { i as install } from './install-3c9a9694.js';
|
|
34
|
+
export { A as AIAnswer, R as ReactiveComponentPrivate, S as SearchBox, T as TreeList, i as install } from './install-3c9a9694.js';
|
|
35
|
+
import './DropDown-36fa9ac5.js';
|
|
36
|
+
import './Input-437ae439.js';
|
|
35
37
|
import 'compute-scroll-into-view';
|
|
36
38
|
import './Container-d00219f7.js';
|
|
37
39
|
import 'vue-highlight-words';
|
|
40
|
+
import '@appbaseio/reactivecore/lib/actions/query';
|
|
38
41
|
import '@appbaseio/reactivecore/lib/utils/suggestions';
|
|
39
42
|
import './FormControlList-fe6eaee4.js';
|
|
40
43
|
import './utils-d7dd4f4e.js';
|
|
@@ -45,6 +48,9 @@ export { default as SingleDropdownList } from './SingleDropdownList.js';
|
|
|
45
48
|
export { default as MultiDropdownList } from './MultiDropdownList.js';
|
|
46
49
|
export { default as ToggleButton } from './ToggleButton.js';
|
|
47
50
|
export { default as ReactiveComponent } from './ReactiveComponent.js';
|
|
51
|
+
import 'vue-slider-component/dist-css/vue-slider-component.umd.min.js';
|
|
52
|
+
import 'vue-slider-component/dist-css/vue-slider-component.css';
|
|
53
|
+
import 'vue-slider-component/theme/default.css';
|
|
48
54
|
import './ssr-c630ccb9.js';
|
|
49
55
|
export { default as DynamicRangeSlider } from './DynamicRangeSlider.js';
|
|
50
56
|
export { default as SingleRange } from './SingleRange.js';
|