@appbaseio/reactivesearch-vue 3.0.0-rc.5.alpha.1 → 3.0.0-rc.5.alpha.3
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 +36340 -33139
- 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/{DropDown-b16418e9.js → CancelSvg-ab0f8b23.js} +0 -290
- package/dist/cjs/DropDown-e7125b72.js +299 -0
- package/dist/cjs/MultiDropdownList.js +2 -1
- package/dist/cjs/{install-7cdf6798.js → SearchBox.js} +21 -867
- package/dist/cjs/SingleDropdownList.js +2 -1
- package/dist/cjs/index.js +7 -5
- package/dist/cjs/install-3c4520bf.js +874 -0
- package/dist/cjs/install.js +4 -2
- package/dist/cjs/version.js +1 -1
- package/dist/es/CancelSvg-e7ae49e9.js +401 -0
- package/dist/es/DropDown-13afb4d2.js +295 -0
- package/dist/es/MultiDropdownList.js +2 -1
- package/dist/es/{install-0c7962bc.js → SearchBox.js} +10 -855
- package/dist/es/SingleDropdownList.js +2 -1
- package/dist/es/index.js +5 -3
- package/dist/es/install-ff8b0750.js +868 -0
- package/dist/es/install.js +4 -2
- package/dist/es/version.js +1 -1
- package/package.json +3 -3
- package/dist/es/DropDown-fc1fef02.js +0 -690
|
@@ -15,12 +15,13 @@ import { j as updateCustomQuery, u as updateDefaultQuery, i as isQueryIdentical,
|
|
|
15
15
|
import { C as ComponentWrapper } from './ComponentWrapper-8a3c388d.js';
|
|
16
16
|
import { P as PreferencesConsumer } from './PreferencesConsumer-b058d14e.js';
|
|
17
17
|
import { T as Title } from './Title-863dfa42.js';
|
|
18
|
-
import
|
|
18
|
+
import './CancelSvg-e7ae49e9.js';
|
|
19
19
|
import './Input-f7499ef8.js';
|
|
20
20
|
import 'compute-scroll-into-view';
|
|
21
21
|
import { C as Container } from './Container-d00219f7.js';
|
|
22
22
|
import '@appbaseio/reactivecore/lib/utils/suggestions';
|
|
23
23
|
import { g as getAggsQuery } from './utils-d7dd4f4e.js';
|
|
24
|
+
import { D as Dropdown } from './DropDown-13afb4d2.js';
|
|
24
25
|
|
|
25
26
|
function _isSlot(s) {
|
|
26
27
|
return typeof s === 'function' || Object.prototype.toString.call(s) === '[object Object]' && !isVNode(s);
|
package/dist/es/index.js
CHANGED
|
@@ -28,9 +28,8 @@ 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
|
-
|
|
32
|
-
|
|
33
|
-
import './DropDown-fc1fef02.js';
|
|
31
|
+
export { default as SearchBox } from './SearchBox.js';
|
|
32
|
+
import './CancelSvg-e7ae49e9.js';
|
|
34
33
|
import './Input-f7499ef8.js';
|
|
35
34
|
import 'compute-scroll-into-view';
|
|
36
35
|
import './Container-d00219f7.js';
|
|
@@ -41,6 +40,9 @@ import './utils-d7dd4f4e.js';
|
|
|
41
40
|
export { default as SingleList } from './SingleList.js';
|
|
42
41
|
export { default as MultiList } from './MultiList.js';
|
|
43
42
|
import '@appbaseio/reactivecore/lib/utils/types';
|
|
43
|
+
import { i as install } from './install-ff8b0750.js';
|
|
44
|
+
export { R as ReactiveComponentPrivate, T as TreeList, i as install } from './install-ff8b0750.js';
|
|
45
|
+
import './DropDown-13afb4d2.js';
|
|
44
46
|
export { default as SingleDropdownList } from './SingleDropdownList.js';
|
|
45
47
|
export { default as MultiDropdownList } from './MultiDropdownList.js';
|
|
46
48
|
export { default as ToggleButton } from './ToggleButton.js';
|