@appbaseio/reactivesearch-vue 3.0.0-rc.6.4 → 3.0.0-rc.6.6
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 +2080 -197
- 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/{DropDown-aef75c14.js → DropDown-dcdaf54f.js} +12 -4
- package/dist/cjs/{Input-56eba499.js → Input-df30e5fc.js} +23 -16
- package/dist/cjs/MultiDropdownList.js +2 -2
- package/dist/cjs/MultiList.js +1 -1
- package/dist/cjs/RangeInput.js +1 -1
- package/dist/cjs/SingleDropdownList.js +2 -2
- package/dist/cjs/SingleList.js +1 -1
- package/dist/cjs/index.js +4 -3
- package/dist/cjs/{install-65eec53a.js → install-3821345b.js} +371 -125
- package/dist/cjs/install.js +4 -3
- package/dist/cjs/version.js +1 -1
- package/dist/es/{DropDown-39fedff8.js → DropDown-bede2a41.js} +12 -5
- package/dist/es/{Input-11d211d2.js → Input-4376ac1f.js} +23 -17
- package/dist/es/MultiDropdownList.js +2 -2
- package/dist/es/MultiList.js +1 -1
- package/dist/es/RangeInput.js +1 -1
- package/dist/es/SingleDropdownList.js +2 -2
- package/dist/es/SingleList.js +1 -1
- package/dist/es/index.js +5 -4
- package/dist/es/{install-cb6c5753.js → install-af4c53c4.js} +373 -127
- package/dist/es/install.js +4 -3
- package/dist/es/version.js +1 -1
- package/package.json +90 -89
package/dist/cjs/install.js
CHANGED
|
@@ -32,10 +32,11 @@ require('@appbaseio/analytics');
|
|
|
32
32
|
require('url-search-params-polyfill');
|
|
33
33
|
require('./ReactiveBase.js');
|
|
34
34
|
require('hotkeys-js');
|
|
35
|
+
require('xss');
|
|
35
36
|
require('remarkable');
|
|
36
|
-
var install = require('./install-
|
|
37
|
-
require('./DropDown-
|
|
38
|
-
require('./Input-
|
|
37
|
+
var install = require('./install-3821345b.js');
|
|
38
|
+
require('./DropDown-dcdaf54f.js');
|
|
39
|
+
require('./Input-df30e5fc.js');
|
|
39
40
|
require('compute-scroll-into-view');
|
|
40
41
|
require('./Container-29f049b2.js');
|
|
41
42
|
require('vue-highlight-words');
|
package/dist/cjs/version.js
CHANGED
|
@@ -6,7 +6,7 @@ import VueTypes from 'vue-types';
|
|
|
6
6
|
import { styled } from '@appbaseio/vue-emotion';
|
|
7
7
|
import { t as types } from './vueTypes-09cab4d3.js';
|
|
8
8
|
import { a as isFunction } from './index-882489e1.js';
|
|
9
|
-
import { s as suggestionsContainer, a as suggestions, I as Input } from './Input-
|
|
9
|
+
import { s as suggestionsContainer, a as suggestions, I as Input } from './Input-4376ac1f.js';
|
|
10
10
|
import computeScrollIntoView from 'compute-scroll-into-view';
|
|
11
11
|
import { replaceDiacritics } from '@appbaseio/reactivecore/lib/utils/suggestions';
|
|
12
12
|
|
|
@@ -28,7 +28,7 @@ var IconGroup = styled('div')(_templateObject$1 || (_templateObject$1 = _taggedT
|
|
|
28
28
|
return enableAI ? "\n\t\ttop: 0%;\n\t transform: translateY(0);\n \theight: 42px;\n\t" : '';
|
|
29
29
|
});
|
|
30
30
|
|
|
31
|
-
var _templateObject$2;
|
|
31
|
+
var _templateObject$2, _templateObject2;
|
|
32
32
|
var IconWrapper = styled('div')(_templateObject$2 || (_templateObject$2 = _taggedTemplateLiteralLoose(["\n\tdisplay: flex;\n\talign-items: center;\n\tjustify-content: center;\n\tmax-width: 23px;\n\twidth: max-content;\n\tcursor: pointer;\n\theight: 100%;\n\tmin-width: 20px;\n\n\tsvg.search-icon {\n\t\tfill: ", ";\n\t\ttransform: scale(1.5);\n\t}\n\n\tsvg.cancel-icon {\n\t\tfill: ", ";\n\t}\n"])), function (_ref) {
|
|
33
33
|
var _ref$theme = _ref.theme,
|
|
34
34
|
theme = _ref$theme === void 0 ? {} : _ref$theme;
|
|
@@ -38,6 +38,13 @@ var IconWrapper = styled('div')(_templateObject$2 || (_templateObject$2 = _tagge
|
|
|
38
38
|
theme = _ref2$theme === void 0 ? {} : _ref2$theme;
|
|
39
39
|
return theme.colors ? theme.colors.borderColor : '#000';
|
|
40
40
|
});
|
|
41
|
+
var ButtonIconWrapper = styled(IconWrapper)(_templateObject2 || (_templateObject2 = _taggedTemplateLiteralLoose(["\n\tborder-radius: 4px;\n\tvertical-align: middle;\n\theight: 25px;\n\tfont-size: 12px;\n\tborder: 1px solid ", ";\n\tcolor: ", ";\n\tmax-width: unset;\n\tpadding: 5px;\n"])), function (_ref3) {
|
|
42
|
+
var theme = _ref3.theme;
|
|
43
|
+
return theme.colors ? theme.colors.primaryColor : '#000';
|
|
44
|
+
}, function (_ref4) {
|
|
45
|
+
var theme = _ref4.theme;
|
|
46
|
+
return theme.colors ? theme.colors.primaryColor : '#000';
|
|
47
|
+
});
|
|
41
48
|
|
|
42
49
|
/**
|
|
43
50
|
* Scroll node into view if necessary
|
|
@@ -408,7 +415,7 @@ var CancelSvg = (function () {
|
|
|
408
415
|
}, null)]);
|
|
409
416
|
});
|
|
410
417
|
|
|
411
|
-
var _templateObject$3, _templateObject2;
|
|
418
|
+
var _templateObject$3, _templateObject2$1;
|
|
412
419
|
var small = "\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";
|
|
413
420
|
var dark = function dark(_ref) {
|
|
414
421
|
var theme = _ref.theme;
|
|
@@ -420,7 +427,7 @@ var Select = styled('button')(_templateObject$3 || (_templateObject$3 = _taggedT
|
|
|
420
427
|
var themePreset = _ref2.themePreset;
|
|
421
428
|
return themePreset === 'dark' && dark;
|
|
422
429
|
});
|
|
423
|
-
var Tick = styled('span')(_templateObject2 || (_templateObject2 = _taggedTemplateLiteralLoose(["\n\twidth: 16px;\n\theight: 16px;\n\tdisplay: inline-block;\n\tposition: relative;\n\tuser-select: none;\n\talign-items: center;\n\n\t&::after {\n\t\tbox-sizing: content-box;\n\t\tcontent: '';\n\t\tposition: absolute;\n\t\tbackground-color: transparent;\n\t\ttop: 50%;\n\t\tleft: 0;\n\t\twidth: 8px;\n\t\theight: 4px;\n\t\tmargin-top: -4px;\n\t\tborder-style: solid;\n\t\tborder-color: ", ";\n\t\tborder-width: 0 0 2px 2px;\n\t\tborder-radius: 0;\n\t\tborder-image: none;\n\t\ttransform: rotate(-45deg) scale(1);\n\t\ttransition: all 200ms ease-out;\n\t}\n"])), function (_ref3) {
|
|
430
|
+
var Tick = styled('span')(_templateObject2$1 || (_templateObject2$1 = _taggedTemplateLiteralLoose(["\n\twidth: 16px;\n\theight: 16px;\n\tdisplay: inline-block;\n\tposition: relative;\n\tuser-select: none;\n\talign-items: center;\n\n\t&::after {\n\t\tbox-sizing: content-box;\n\t\tcontent: '';\n\t\tposition: absolute;\n\t\tbackground-color: transparent;\n\t\ttop: 50%;\n\t\tleft: 0;\n\t\twidth: 8px;\n\t\theight: 4px;\n\t\tmargin-top: -4px;\n\t\tborder-style: solid;\n\t\tborder-color: ", ";\n\t\tborder-width: 0 0 2px 2px;\n\t\tborder-radius: 0;\n\t\tborder-image: none;\n\t\ttransform: rotate(-45deg) scale(1);\n\t\ttransition: all 200ms ease-out;\n\t}\n"])), function (_ref3) {
|
|
424
431
|
var theme = _ref3.theme;
|
|
425
432
|
return theme.colors.primaryColor;
|
|
426
433
|
});
|
|
@@ -690,4 +697,4 @@ var Dropdown = {
|
|
|
690
697
|
}
|
|
691
698
|
};
|
|
692
699
|
|
|
693
|
-
export { CancelSvg as C, Downshift as D, IconWrapper as I, IconGroup as a, InputWrapper as b, Dropdown as c };
|
|
700
|
+
export { ButtonIconWrapper as B, CancelSvg as C, Downshift as D, IconWrapper as I, IconGroup as a, InputWrapper as b, Dropdown as c };
|
|
@@ -2,12 +2,14 @@ import { _ as _taggedTemplateLiteralLoose } from './_rollupPluginBabelHelpers-de
|
|
|
2
2
|
import { styled } from '@appbaseio/vue-emotion';
|
|
3
3
|
import { css } from '@emotion/css';
|
|
4
4
|
|
|
5
|
-
var _templateObject, _templateObject2, _templateObject3, _templateObject4, _templateObject5, _templateObject6;
|
|
5
|
+
var _templateObject, _templateObject2, _templateObject3, _templateObject4, _templateObject5, _templateObject6, _templateObject7, _templateObject8, _templateObject9;
|
|
6
6
|
var alertBorder = function alertBorder(_ref) {
|
|
7
7
|
var theme = _ref.theme;
|
|
8
8
|
return "\n\tborder: 1px solid " + theme.colors.alertColor + ";\n";
|
|
9
9
|
};
|
|
10
|
-
var input =
|
|
10
|
+
var input = function input(searchBox) {
|
|
11
|
+
return "\nwidth: 100%;\nline-height: 1.5;\nmin-height: 42px;\npadding: 8px 12px;\nborder: 1px solid #ccc;\nbackground-color: #fafafa;\nfont-size: 0.9rem;\noutline: none;\n&:focus {\n\tbackground-color: #fff;\n}\n" + (searchBox && "\n\tpadding: 8px 12px 9px;\n\tborder: 1px solid transparent;\n\tborder-radius: 6px;\n") + ";\n";
|
|
12
|
+
};
|
|
11
13
|
var dark = function dark(theme) {
|
|
12
14
|
return "\n\tborder-color: " + theme.colors.borderColor + ";\n";
|
|
13
15
|
};
|
|
@@ -15,12 +17,11 @@ var darkInput = function darkInput(_ref2) {
|
|
|
15
17
|
var theme = _ref2.theme;
|
|
16
18
|
return "\n\tbackground-color: " + theme.colors.backgroundColor + ";\n\tcolor: " + theme.colors.textColor + ";\n\t" + dark(theme) + ";\n\n\t&:focus {\n\t\tbackground-color: " + theme.colors.backgroundColor + ";\n\t}\n";
|
|
17
19
|
};
|
|
18
|
-
var Input = styled('input')(_templateObject || (_templateObject = _taggedTemplateLiteralLoose(["\n\t", ";\n\
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
});
|
|
20
|
+
var Input = styled('input')(_templateObject || (_templateObject = _taggedTemplateLiteralLoose(["\n\t", ";\n\t", ";\n\n\t", ";\n\n\t", ";\n\n\t", ";\n\t", ";\n\t", ";\n\t", ";\n\t", ";\n\t", ";\n\n\t", ";\n\n\t", ";\n\n\t&[type='search']::-webkit-search-decoration,\n\t&[type='search']::-webkit-search-cancel-button,\n\t&[type='search']::-webkit-search-results-button,\n\t&[type='search']::-webkit-search-results-decoration {\n\t\tdisplay: none;\n\t}\n"])), function (props) {
|
|
21
|
+
return input(props.searchBox);
|
|
22
|
+
}, function (_ref3) {
|
|
23
|
+
var themePreset = _ref3.themePreset;
|
|
24
|
+
return themePreset === 'dark' && darkInput;
|
|
24
25
|
}, function (props) {
|
|
25
26
|
return props.showIcon && props.iconPosition === 'left' && "\n\t\t\tpadding-left: 36px;\n\t\t";
|
|
26
27
|
}, function (props) {
|
|
@@ -42,13 +43,13 @@ var Input = styled('input')(_templateObject || (_templateObject = _taggedTemplat
|
|
|
42
43
|
);
|
|
43
44
|
}, function (props) {
|
|
44
45
|
return (
|
|
45
|
-
// for voice search icon with
|
|
46
|
-
props.showVoiceSearch && props.showIcon &&
|
|
46
|
+
// for voice search icon with clear icon
|
|
47
|
+
props.showVoiceSearch && props.showIcon && "\n\t\t\tpadding-right: 66px;\n\t\t"
|
|
47
48
|
);
|
|
48
49
|
}, function (props) {
|
|
49
50
|
return (
|
|
50
|
-
// for voice search icon with
|
|
51
|
-
props.showVoiceSearch && props.showIcon && "\n\t\t\tpadding-right: 66px;\n\t\t"
|
|
51
|
+
// for voice search icon with search icon
|
|
52
|
+
props.showVoiceSearch && props.showIcon && props.iconPosition === 'right' && "\n\t\t\tpadding-right: 66px;\n\t\t"
|
|
52
53
|
);
|
|
53
54
|
}, function (props) {
|
|
54
55
|
return (
|
|
@@ -57,15 +58,20 @@ var Input = styled('input')(_templateObject || (_templateObject = _taggedTemplat
|
|
|
57
58
|
);
|
|
58
59
|
}, function (props) {
|
|
59
60
|
return props.alert && alertBorder;
|
|
61
|
+
}, function (props) {
|
|
62
|
+
return props.isOpen && "\n\t\t\tborder-bottom-left-radius: 0;\n\t\t\tborder-bottom-right-radius: 0;\n\t\t";
|
|
60
63
|
});
|
|
61
64
|
var suggestions = function suggestions(themePreset, theme) {
|
|
62
65
|
return css(_templateObject2 || (_templateObject2 = _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: flex;\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
66
|
};
|
|
64
|
-
var
|
|
67
|
+
var searchboxSuggestions = function searchboxSuggestions(themePreset, theme) {
|
|
68
|
+
return css(_templateObject3 || (_templateObject3 = _taggedTemplateLiteralLoose(["\n\t", ";\n\n\tmax-height: min(100vh, 401px);\n\tborder: none;\n\tborder-radius: 6px;\n\tborder-top-left-radius: 0;\n\tborder-top-right-radius: 0;\n\tbox-shadow: rgb(0 0 0 / 20%) 0px 10px 15px;\n\tborder-top: 1px solid #f2f0f0;\n\tli {\n\t\ttransition: all 0.3s ease-in;\n\t\tposition: relative;\n\t\t&:hover,\n\t\t&:focus {\n\t\t\tbackground-color: unset;\n\t\t}\n\t\t.trim {\n\t\t\tline-height: 20px;\n\t\t}\n\t\t&.li-item {\n\t\t\tbackground-color: ", ";\n\n\t\t\t", "\n\t\t}\n\t\t&.active-li-item {\n\t\t\tbackground-color: ", ";\n\t\t\tcolor: #fff;\n\t\t\tsvg {\n\t\t\t\ttransition: fill 0.3s ease-in;\n\t\t\t\tfill: #fff !important;\n\t\t\t}\n\t\t}\n\t}\n\n\t.section-container {\n\t\tpadding-bottom: 5px;\n\t\tborder-bottom: 1px solid #f2f0f0;\n\t\t", ";\n\t\t.section-header {\n\t\t\tpadding: 10px;\n\t\t\tfont-size: 12px;\n\t\t\tcolor: #7f7c7c;\n\t\t\tbackground: #f9f9f9;\n\t\t\t", ";\n\t\t}\n\n\t\t.section-list {\n\t\t\tpadding-left: 0;\n\t\t}\n\t\t.section-list-item {\n\t\t\t&__label,\n\t\t\t&__description {\n\t\t\t\toverflow: hidden;\n\t\t\t\ttext-overflow: ellipsis;\n\t\t\t\twhite-space: nowrap;\n\n\t\t\t\t* {\n\t\t\t\t\tmargin: 0;\n\t\t\t\t\tpadding: 0;\n\t\t\t\t}\n\t\t\t}\n\n\t\t\t&__label {\n\t\t\t}\n\t\t\t&__description {\n\t\t\t\tmargin-top: 5px;\n\t\t\t\topacity: 0.7;\n\t\t\t\tfont-size: 12px;\n\t\t\t}\n\t\t}\n\t}\n"])), suggestions(themePreset, theme), themePreset === 'dark' ? '#424242' : '#fff', themePreset && theme && "svg {\n\t\t\t\tfill: " + (theme.colors ? theme.colors.primaryColor : '#707070') + ";\n\t\t\t}", themePreset === 'dark' ? '#555' : '#2d84f6', themePreset === 'dark' && css(_templateObject4 || (_templateObject4 = _taggedTemplateLiteralLoose(["\n\t\t\tbackground: #161616;\n\t\t"]))), themePreset === 'dark' && css(_templateObject5 || (_templateObject5 = _taggedTemplateLiteralLoose(["\n\t\t\t\tcolor: #218fe7;\n\t\t\t\tbackground: #161616;\n\t\t\t"]))));
|
|
69
|
+
};
|
|
70
|
+
var suggestionsContainer = css(_templateObject6 || (_templateObject6 = _taggedTemplateLiteralLoose(["\n\tposition: relative;\n\t.cancel-icon {\n\t\tcursor: pointer;\n\t}\n"])));
|
|
65
71
|
var noSuggestions = function noSuggestions(themePreset, theme) {
|
|
66
|
-
return css(
|
|
72
|
+
return css(_templateObject7 || (_templateObject7 = _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: 260px;\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\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\t}\n\n\t", "\n"])), themePreset === 'dark' && theme && dark(theme));
|
|
67
73
|
};
|
|
68
|
-
var TextArea = styled('textarea')(
|
|
74
|
+
var TextArea = styled('textarea')(_templateObject8 || (_templateObject8 = _taggedTemplateLiteralLoose(["\n\t", ";\n\n\t&:focus {\n\t\tbackground-color: #fff;\n\t}\n\t", ";\n\n\t", ";\n\n\t", ";\n\n\t", ";\n\t", ";\n\t", ";\n\t", ";\n\n\t", ";\n\t", ";\n\t", ";\n\t", ";\n\t", ";\n\n\t", ";\n\t", ";\n\t", ";\n\n\t", ";\n\t", ";\n\t&::-webkit-search-decoration,\n\t&::-webkit-search-cancel-button,\n\t&::-webkit-search-results-button,\n\t&::-webkit-search-results-decoration {\n\t\tdisplay: none;\n\t}\n\tresize: none;\n\toverflow: hidden;\n\theight: 42px;\n"])), input, function (_ref4) {
|
|
69
75
|
var themePreset = _ref4.themePreset,
|
|
70
76
|
theme = _ref4.theme;
|
|
71
77
|
return themePreset === 'dark' && darkInput({
|
|
@@ -132,7 +138,7 @@ var TextArea = styled('textarea')(_templateObject5 || (_templateObject5 = _tagge
|
|
|
132
138
|
}, function (props) {
|
|
133
139
|
return props.alert && alertBorder;
|
|
134
140
|
}, function (props) {
|
|
135
|
-
return props.isOpen && css(
|
|
141
|
+
return props.isOpen && css(_templateObject9 || (_templateObject9 = _taggedTemplateLiteralLoose(["\n\t\t\tborder-bottom-left-radius: 0;\n\t\t\tborder-bottom-right-radius: 0;\n\t\t"])));
|
|
136
142
|
});
|
|
137
143
|
|
|
138
|
-
export { Input as I, TextArea as T, suggestions as a, noSuggestions as n, suggestionsContainer as s };
|
|
144
|
+
export { Input as I, TextArea as T, suggestions as a, searchboxSuggestions as b, noSuggestions as n, suggestionsContainer as s };
|
|
@@ -16,8 +16,8 @@ import { j as updateCustomQuery, u as updateDefaultQuery, i as isQueryIdentical,
|
|
|
16
16
|
import { C as ComponentWrapper } from './ComponentWrapper-a2635cfc.js';
|
|
17
17
|
import { P as PreferencesConsumer } from './PreferencesConsumer-b058d14e.js';
|
|
18
18
|
import { T as Title } from './Title-863dfa42.js';
|
|
19
|
-
import { c as Dropdown } from './DropDown-
|
|
20
|
-
import './Input-
|
|
19
|
+
import { c as Dropdown } from './DropDown-bede2a41.js';
|
|
20
|
+
import './Input-4376ac1f.js';
|
|
21
21
|
import 'compute-scroll-into-view';
|
|
22
22
|
import { C as Container } from './Container-d00219f7.js';
|
|
23
23
|
import '@appbaseio/reactivecore/lib/utils/suggestions';
|
package/dist/es/MultiList.js
CHANGED
|
@@ -13,7 +13,7 @@ import { j as updateCustomQuery, u as updateDefaultQuery, i as isQueryIdentical,
|
|
|
13
13
|
import { C as ComponentWrapper } from './ComponentWrapper-a2635cfc.js';
|
|
14
14
|
import { P as PreferencesConsumer } from './PreferencesConsumer-b058d14e.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-4376ac1f.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, C as Checkbox } from './FormControlList-fe6eaee4.js';
|
package/dist/es/RangeInput.js
CHANGED
|
@@ -15,7 +15,7 @@ import { C as ComponentWrapper } from './ComponentWrapper-a2635cfc.js';
|
|
|
15
15
|
import { P as PreferencesConsumer } from './PreferencesConsumer-b058d14e.js';
|
|
16
16
|
import './Title-863dfa42.js';
|
|
17
17
|
import { F as Flex } from './Flex-25792bc3.js';
|
|
18
|
-
import { I as Input } from './Input-
|
|
18
|
+
import { I as Input } from './Input-4376ac1f.js';
|
|
19
19
|
import { C as Container } from './Container-d00219f7.js';
|
|
20
20
|
import './ssr-c630ccb9.js';
|
|
21
21
|
import { RangeConnected as RangeConnected$1 } from './RangeSlider.js';
|
|
@@ -16,8 +16,8 @@ import { j as updateCustomQuery, u as updateDefaultQuery, i as isQueryIdentical,
|
|
|
16
16
|
import { C as ComponentWrapper } from './ComponentWrapper-a2635cfc.js';
|
|
17
17
|
import { P as PreferencesConsumer } from './PreferencesConsumer-b058d14e.js';
|
|
18
18
|
import { T as Title } from './Title-863dfa42.js';
|
|
19
|
-
import { c as Dropdown } from './DropDown-
|
|
20
|
-
import './Input-
|
|
19
|
+
import { c as Dropdown } from './DropDown-bede2a41.js';
|
|
20
|
+
import './Input-4376ac1f.js';
|
|
21
21
|
import 'compute-scroll-into-view';
|
|
22
22
|
import { C as Container } from './Container-d00219f7.js';
|
|
23
23
|
import '@appbaseio/reactivecore/lib/utils/suggestions';
|
package/dist/es/SingleList.js
CHANGED
|
@@ -13,7 +13,7 @@ import { j as updateCustomQuery, u as updateDefaultQuery, i as isQueryIdentical,
|
|
|
13
13
|
import { C as ComponentWrapper } from './ComponentWrapper-a2635cfc.js';
|
|
14
14
|
import { P as PreferencesConsumer } from './PreferencesConsumer-b058d14e.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-4376ac1f.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';
|
package/dist/es/index.js
CHANGED
|
@@ -28,11 +28,12 @@ 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 'xss';
|
|
31
32
|
import 'remarkable';
|
|
32
|
-
import { i as install } from './install-
|
|
33
|
-
export { A as AIAnswer, R as ReactiveComponentPrivate, S as SearchBox, T as TreeList, i as install } from './install-
|
|
34
|
-
import './DropDown-
|
|
35
|
-
import './Input-
|
|
33
|
+
import { i as install } from './install-af4c53c4.js';
|
|
34
|
+
export { A as AIAnswer, R as ReactiveComponentPrivate, S as SearchBox, T as TreeList, i as install } from './install-af4c53c4.js';
|
|
35
|
+
import './DropDown-bede2a41.js';
|
|
36
|
+
import './Input-4376ac1f.js';
|
|
36
37
|
import 'compute-scroll-into-view';
|
|
37
38
|
import './Container-d00219f7.js';
|
|
38
39
|
import 'vue-highlight-words';
|