@appbaseio/reactivesearch-vue 1.28.0 → 1.29.0-preview.1
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 +1759 -371
- 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/{Button-11307285.js → Button-e0b7c1f6.js} +1 -1
- package/dist/cjs/DataSearch-eec21890.js +2171 -0
- package/dist/cjs/DataSearch.js +18 -2107
- package/dist/cjs/{DropDown-7aa3d0d2.js → DropDown-e4381fcc.js} +1 -1
- package/dist/cjs/{Input-3cc3fa59.js → Input-0d7b25ad.js} +1 -1
- package/dist/cjs/MultiDropdownList.js +3 -3
- package/dist/cjs/MultiList.js +1 -1
- package/dist/cjs/RangeInput.js +1 -1
- package/dist/cjs/ReactiveList.js +1 -1
- package/dist/cjs/SelectedFilters.js +1 -1
- package/dist/cjs/SingleDropdownList.js +3 -3
- package/dist/cjs/SingleList.js +1 -1
- package/dist/cjs/ToggleButton.js +1 -1
- package/dist/cjs/index.js +10 -9
- package/dist/cjs/install-b05fef06.js +1247 -0
- package/dist/cjs/install.js +24 -29
- package/dist/cjs/version.js +1 -1
- package/dist/es/{Button-91561391.js → Button-33de88e6.js} +1 -1
- package/dist/es/DataSearch-42f547cd.js +2158 -0
- package/dist/es/DataSearch.js +17 -2106
- package/dist/es/{DropDown-60a426a2.js → DropDown-ff6ad982.js} +1 -1
- package/dist/es/{Input-08bb1bcf.js → Input-e339e63a.js} +1 -1
- package/dist/es/MultiDropdownList.js +3 -3
- package/dist/es/MultiList.js +1 -1
- package/dist/es/RangeInput.js +1 -1
- package/dist/es/ReactiveList.js +1 -1
- package/dist/es/SelectedFilters.js +1 -1
- package/dist/es/SingleDropdownList.js +3 -3
- package/dist/es/SingleList.js +1 -1
- package/dist/es/ToggleButton.js +1 -1
- package/dist/es/index.js +6 -6
- package/dist/es/install-bd448c02.js +1240 -0
- package/dist/es/install.js +22 -31
- package/dist/es/version.js +1 -1
- package/package.json +3 -3
|
@@ -7,7 +7,7 @@ import { t as types } from './vueTypes-687b2304.js';
|
|
|
7
7
|
import { a as isFunction } from './index-78920565.js';
|
|
8
8
|
import _mergeJSXProps from '@vue/babel-helper-vue-jsx-merge-props';
|
|
9
9
|
import { D as Downshift, b as InputWrapper, a as IconGroup, I as IconWrapper, C as CancelSvg } from './CancelSvg-c2c03a35.js';
|
|
10
|
-
import { s as suggestionsContainer, a as suggestions, I as Input } from './Input-
|
|
10
|
+
import { s as suggestionsContainer, a as suggestions, I as Input } from './Input-e339e63a.js';
|
|
11
11
|
import { replaceDiacritics } from '@appbaseio/reactivecore/lib/utils/suggestions';
|
|
12
12
|
|
|
13
13
|
var _templateObject, _templateObject2, _templateObject3, _templateObject4;
|
|
@@ -59,7 +59,7 @@ var Input = styled('input')(_templateObject5 || (_templateObject5 = _taggedTempl
|
|
|
59
59
|
});
|
|
60
60
|
|
|
61
61
|
var suggestions = function suggestions(themePreset, theme) {
|
|
62
|
-
return css(_templateObject14 || (_templateObject14 = _taggedTemplateLiteralLoose(["\n\tdisplay: block;\n\twidth: 100%;\n\tborder: 1px solid #ccc;\n\tborder-top: none;\n\tbackground-color: #fff;\n\tfont-size: 0.9rem;\n\tz-index: 3;\n\tposition: absolute;\n\tmargin: 0;\n\tpadding: 0;\n\tlist-style: none;\n\tmax-height:
|
|
62
|
+
return css(_templateObject14 || (_templateObject14 = _taggedTemplateLiteralLoose(["\n\tdisplay: block;\n\twidth: 100%;\n\tborder: 1px solid #ccc;\n\tborder-top: none;\n\tbackground-color: #fff;\n\tfont-size: 0.9rem;\n\tz-index: 3;\n\tposition: absolute;\n\tmargin: 0;\n\tpadding: 0;\n\tlist-style: none;\n\tmax-height: min(100vh, 402px);\n\toverflow-y: auto;\n\n\t&.small {\n\t\ttop: 30px;\n\t}\n\n\tli {\n\t\tdisplay: flex;\n\t\tjustify-content: space-between;\n\t\tcursor: pointer;\n\t\tpadding: 10px;\n\t\tuser-select: none;\n\n\t\t& > .trim {\n\t\t\tdisplay: -webkit-box;\n\t\t\tdisplay: block;\n\t\t\twidth: 100%;\n\t\t\tmax-height: 2.3rem;\n\t\t\tline-height: 1.2rem;\n\t\t\t-webkit-line-clamp: 2;\n\t\t\t-webkit-box-orient: vertical;\n\t\t\toverflow: hidden;\n\t\t\ttext-overflow: ellipsis;\n\t\t\twhite-space: nowrap;\n\t\t}\n\n\t\t&:hover,\n\t\t&:focus {\n\t\t\tbackground-color: #eee;\n\t\t}\n\t}\n\n\t", ";\n"])), themePreset === 'dark' && theme && dark(theme));
|
|
63
63
|
};
|
|
64
64
|
|
|
65
65
|
var suggestionsContainer = css(_templateObject15 || (_templateObject15 = _taggedTemplateLiteralLoose(["\n\tposition: relative;\n\t.cancel-icon {\n\t\tcursor: pointer;\n\t}\n"])));
|
|
@@ -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 { l as loadMoreContainer, B as Button } from './Button-
|
|
8
|
+
import { l as loadMoreContainer, B as Button } from './Button-33de88e6.js';
|
|
9
9
|
import { t as types } from './vueTypes-687b2304.js';
|
|
10
10
|
import '@appbaseio/reactivecore/lib/utils/transform';
|
|
11
11
|
import 'redux';
|
|
@@ -14,12 +14,12 @@ import { C as ComponentWrapper } from './ComponentWrapper-0f3431d1.js';
|
|
|
14
14
|
import '@vue/babel-helper-vue-jsx-merge-props';
|
|
15
15
|
import { T as Title } from './Title-3522ff56.js';
|
|
16
16
|
import './CancelSvg-c2c03a35.js';
|
|
17
|
-
import './Input-
|
|
17
|
+
import './Input-e339e63a.js';
|
|
18
18
|
import 'compute-scroll-into-view';
|
|
19
19
|
import { C as Container } from './Container-18b03fde.js';
|
|
20
20
|
import '@appbaseio/reactivecore/lib/utils/suggestions';
|
|
21
21
|
import { g as getAggsQuery } from './utils-64a2e5f0.js';
|
|
22
|
-
import { D as Dropdown } from './DropDown-
|
|
22
|
+
import { D as Dropdown } from './DropDown-ff6ad982.js';
|
|
23
23
|
|
|
24
24
|
var updateQuery = Actions.updateQuery,
|
|
25
25
|
setQueryOptions = Actions.setQueryOptions,
|
package/dist/es/MultiList.js
CHANGED
|
@@ -11,7 +11,7 @@ import 'redux';
|
|
|
11
11
|
import { f as updateCustomQuery, u as updateDefaultQuery, i as isQueryIdentical, a as isFunction, n as isEvent, o as parseValueArray, g as getComponent, h as hasCustomRenderer, c as connect } from './index-78920565.js';
|
|
12
12
|
import { C as ComponentWrapper } from './ComponentWrapper-0f3431d1.js';
|
|
13
13
|
import { T as Title } from './Title-3522ff56.js';
|
|
14
|
-
import { I as Input } from './Input-
|
|
14
|
+
import { I as Input } from './Input-e339e63a.js';
|
|
15
15
|
import { C as Container } from './Container-18b03fde.js';
|
|
16
16
|
import { replaceDiacritics } from '@appbaseio/reactivecore/lib/utils/suggestions';
|
|
17
17
|
import { U as UL, C as Checkbox } from './FormControlList-704f8dee.js';
|
package/dist/es/RangeInput.js
CHANGED
|
@@ -12,7 +12,7 @@ import { c as connect } from './index-78920565.js';
|
|
|
12
12
|
import { C as ComponentWrapper } from './ComponentWrapper-0f3431d1.js';
|
|
13
13
|
import './Title-3522ff56.js';
|
|
14
14
|
import { F as Flex } from './Flex-8770345d.js';
|
|
15
|
-
import { I as Input } from './Input-
|
|
15
|
+
import { I as Input } from './Input-e339e63a.js';
|
|
16
16
|
import { C as Container } from './Container-18b03fde.js';
|
|
17
17
|
import 'vue-no-ssr';
|
|
18
18
|
import './ssr-a41dfea9.js';
|
package/dist/es/ReactiveList.js
CHANGED
|
@@ -6,7 +6,7 @@ import { withClickIds } from '@appbaseio/reactivecore/lib/utils/helper';
|
|
|
6
6
|
import { css } from 'emotion';
|
|
7
7
|
import styled from '@appbaseio/vue-emotion';
|
|
8
8
|
import 'polished';
|
|
9
|
-
import { p as pagination, B as Button } from './Button-
|
|
9
|
+
import { p as pagination, B as Button } from './Button-33de88e6.js';
|
|
10
10
|
import { t as types } from './vueTypes-687b2304.js';
|
|
11
11
|
import '@appbaseio/reactivecore/lib/utils/transform';
|
|
12
12
|
import 'redux';
|
|
@@ -5,7 +5,7 @@ import '@appbaseio/reactivecore/lib/utils/constants';
|
|
|
5
5
|
import 'emotion';
|
|
6
6
|
import '@appbaseio/vue-emotion';
|
|
7
7
|
import 'polished';
|
|
8
|
-
import { f as filters, B as Button } from './Button-
|
|
8
|
+
import { f as filters, B as Button } from './Button-33de88e6.js';
|
|
9
9
|
import { t as types } from './vueTypes-687b2304.js';
|
|
10
10
|
import 'redux';
|
|
11
11
|
import { c as connect } from './index-78920565.js';
|
|
@@ -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 { l as loadMoreContainer, B as Button } from './Button-
|
|
8
|
+
import { l as loadMoreContainer, B as Button } from './Button-33de88e6.js';
|
|
9
9
|
import { t as types } from './vueTypes-687b2304.js';
|
|
10
10
|
import '@appbaseio/reactivecore/lib/utils/transform';
|
|
11
11
|
import 'redux';
|
|
@@ -14,12 +14,12 @@ import { C as ComponentWrapper } from './ComponentWrapper-0f3431d1.js';
|
|
|
14
14
|
import '@vue/babel-helper-vue-jsx-merge-props';
|
|
15
15
|
import { T as Title } from './Title-3522ff56.js';
|
|
16
16
|
import './CancelSvg-c2c03a35.js';
|
|
17
|
-
import './Input-
|
|
17
|
+
import './Input-e339e63a.js';
|
|
18
18
|
import 'compute-scroll-into-view';
|
|
19
19
|
import { C as Container } from './Container-18b03fde.js';
|
|
20
20
|
import '@appbaseio/reactivecore/lib/utils/suggestions';
|
|
21
21
|
import { g as getAggsQuery } from './utils-64a2e5f0.js';
|
|
22
|
-
import { D as Dropdown } from './DropDown-
|
|
22
|
+
import { D as Dropdown } from './DropDown-ff6ad982.js';
|
|
23
23
|
|
|
24
24
|
var updateQuery = Actions.updateQuery,
|
|
25
25
|
setQueryOptions = Actions.setQueryOptions,
|
package/dist/es/SingleList.js
CHANGED
|
@@ -11,7 +11,7 @@ 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-78920565.js';
|
|
12
12
|
import { C as ComponentWrapper } from './ComponentWrapper-0f3431d1.js';
|
|
13
13
|
import { T as Title } from './Title-3522ff56.js';
|
|
14
|
-
import { I as Input } from './Input-
|
|
14
|
+
import { I as Input } from './Input-e339e63a.js';
|
|
15
15
|
import { C as Container } from './Container-18b03fde.js';
|
|
16
16
|
import { replaceDiacritics } from '@appbaseio/reactivecore/lib/utils/suggestions';
|
|
17
17
|
import { U as UL, R as Radio } from './FormControlList-704f8dee.js';
|
package/dist/es/ToggleButton.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 { B as Button, t as toggleButtons } from './Button-
|
|
8
|
+
import { B as Button, t as toggleButtons } from './Button-33de88e6.js';
|
|
9
9
|
import { t as types } from './vueTypes-687b2304.js';
|
|
10
10
|
import '@appbaseio/reactivecore/lib/utils/transform';
|
|
11
11
|
import 'redux';
|
package/dist/es/index.js
CHANGED
|
@@ -6,7 +6,7 @@ import '@appbaseio/reactivecore/lib/utils/helper';
|
|
|
6
6
|
import 'emotion';
|
|
7
7
|
import '@appbaseio/vue-emotion';
|
|
8
8
|
import 'polished';
|
|
9
|
-
import './Button-
|
|
9
|
+
import './Button-33de88e6.js';
|
|
10
10
|
import './vueTypes-687b2304.js';
|
|
11
11
|
export { default as ReactiveList } from './ReactiveList.js';
|
|
12
12
|
import '@appbaseio/reactivecore/lib/utils/transform';
|
|
@@ -23,18 +23,20 @@ import 'appbase-js';
|
|
|
23
23
|
import 'url-search-params-polyfill';
|
|
24
24
|
export { default as ReactiveBase } from './ReactiveBase.js';
|
|
25
25
|
import 'hotkeys-js';
|
|
26
|
-
export {
|
|
26
|
+
export { D as DataSearch } from './DataSearch-42f547cd.js';
|
|
27
27
|
import './CancelSvg-c2c03a35.js';
|
|
28
|
-
import './Input-
|
|
28
|
+
import './Input-e339e63a.js';
|
|
29
29
|
import 'compute-scroll-into-view';
|
|
30
30
|
import './Container-18b03fde.js';
|
|
31
31
|
import 'vue-highlight-words';
|
|
32
|
+
import { i as install } from './install-bd448c02.js';
|
|
33
|
+
export { S as SearchBox, i as install } from './install-bd448c02.js';
|
|
32
34
|
import '@appbaseio/reactivecore/lib/utils/suggestions';
|
|
33
35
|
import './FormControlList-704f8dee.js';
|
|
34
36
|
import './utils-64a2e5f0.js';
|
|
35
37
|
export { default as SingleList } from './SingleList.js';
|
|
36
38
|
export { default as MultiList } from './MultiList.js';
|
|
37
|
-
import './DropDown-
|
|
39
|
+
import './DropDown-ff6ad982.js';
|
|
38
40
|
export { default as SingleDropdownList } from './SingleDropdownList.js';
|
|
39
41
|
export { default as MultiDropdownList } from './MultiDropdownList.js';
|
|
40
42
|
export { default as ToggleButton } from './ToggleButton.js';
|
|
@@ -61,8 +63,6 @@ export { default as initReactivesearch } from './initReactivesearch.js';
|
|
|
61
63
|
import version from './version.js';
|
|
62
64
|
export { default as version } from './version.js';
|
|
63
65
|
export { default as RangeInput } from './RangeInput.js';
|
|
64
|
-
import install from './install.js';
|
|
65
|
-
export { default as install } from './install.js';
|
|
66
66
|
|
|
67
67
|
// Add polyfills to support in IE
|
|
68
68
|
|