@appbaseio/reactivesearch-vue 3.0.0-rc.6 → 3.0.0-rc.6.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 +60 -94
- 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/index.js +1 -1
- package/dist/cjs/{install-70991c13.js → install-7fb595b8.js} +49 -27
- package/dist/cjs/install.js +1 -1
- package/dist/cjs/version.js +1 -1
- package/dist/es/index.js +2 -2
- package/dist/es/{install-8296e8da.js → install-3f345819.js} +50 -28
- package/dist/es/install.js +1 -1
- package/dist/es/version.js +1 -1
- package/package.json +1 -1
|
@@ -11142,28 +11142,6 @@
|
|
|
11142
11142
|
};
|
|
11143
11143
|
};
|
|
11144
11144
|
var styled = createStyled;
|
|
11145
|
-
function insertWithoutScoping(cache, serialized) {
|
|
11146
|
-
if (cache.inserted[serialized.name] === undefined) {
|
|
11147
|
-
return cache.insert("", serialized, cache.sheet, true);
|
|
11148
|
-
}
|
|
11149
|
-
}
|
|
11150
|
-
var createGlobalStyle = function createGlobalStyle() {
|
|
11151
|
-
for (var _len2 = arguments.length, styles = new Array(_len2), _key2 = 0; _key2 < _len2; _key2++) {
|
|
11152
|
-
styles[_key2] = arguments[_key2];
|
|
11153
|
-
}
|
|
11154
|
-
return {
|
|
11155
|
-
inheritAttrs: false,
|
|
11156
|
-
render: function render(_ref2) {
|
|
11157
|
-
var $parent = _ref2.$parent,
|
|
11158
|
-
$attrs = _ref2.$attrs,
|
|
11159
|
-
$props = _ref2.$props;
|
|
11160
|
-
var cache = $parent.$emotionCache;
|
|
11161
|
-
var mergedProps = _extends({}, $props, $attrs);
|
|
11162
|
-
var serialized = serializeStyles(styles, cache.registered, mergedProps);
|
|
11163
|
-
insertWithoutScoping(cache, serialized);
|
|
11164
|
-
}
|
|
11165
|
-
};
|
|
11166
|
-
};
|
|
11167
11145
|
|
|
11168
11146
|
/*
|
|
11169
11147
|
|
|
@@ -12209,7 +12187,7 @@
|
|
|
12209
12187
|
}
|
|
12210
12188
|
};
|
|
12211
12189
|
|
|
12212
|
-
function insertWithoutScoping
|
|
12190
|
+
function insertWithoutScoping(cache, serialized) {
|
|
12213
12191
|
if (cache.inserted[serialized.name] === undefined) {
|
|
12214
12192
|
return cache.insert('', serialized, cache.sheet, true);
|
|
12215
12193
|
}
|
|
@@ -12246,7 +12224,7 @@
|
|
|
12246
12224
|
}
|
|
12247
12225
|
var serialized = serializeStyles$1(args, cache.registered);
|
|
12248
12226
|
var animation = "animation-" + serialized.name;
|
|
12249
|
-
insertWithoutScoping
|
|
12227
|
+
insertWithoutScoping(cache, {
|
|
12250
12228
|
name: serialized.name,
|
|
12251
12229
|
styles: "@keyframes " + animation + "{" + serialized.styles + "}"
|
|
12252
12230
|
});
|
|
@@ -12257,7 +12235,7 @@
|
|
|
12257
12235
|
args[_key3] = arguments[_key3];
|
|
12258
12236
|
}
|
|
12259
12237
|
var serialized = serializeStyles$1(args, cache.registered);
|
|
12260
|
-
insertWithoutScoping
|
|
12238
|
+
insertWithoutScoping(cache, serialized);
|
|
12261
12239
|
};
|
|
12262
12240
|
var cx = function cx() {
|
|
12263
12241
|
for (var _len4 = arguments.length, args = new Array(_len4), _key4 = 0; _key4 < _len4; _key4++) {
|
|
@@ -24158,10 +24136,31 @@
|
|
|
24158
24136
|
}, null)]);
|
|
24159
24137
|
});
|
|
24160
24138
|
|
|
24161
|
-
|
|
24139
|
+
function styleInject(css, ref) {
|
|
24140
|
+
if (ref === void 0) ref = {};
|
|
24141
|
+
var insertAt = ref.insertAt;
|
|
24142
|
+
if (!css || typeof document === 'undefined') {
|
|
24143
|
+
return;
|
|
24144
|
+
}
|
|
24145
|
+
var head = document.head || document.getElementsByTagName('head')[0];
|
|
24146
|
+
var style = document.createElement('style');
|
|
24147
|
+
style.type = 'text/css';
|
|
24148
|
+
if (insertAt === 'top') {
|
|
24149
|
+
if (head.firstChild) {
|
|
24150
|
+
head.insertBefore(style, head.firstChild);
|
|
24151
|
+
} else {
|
|
24152
|
+
head.appendChild(style);
|
|
24153
|
+
}
|
|
24154
|
+
} else {
|
|
24155
|
+
head.appendChild(style);
|
|
24156
|
+
}
|
|
24157
|
+
if (style.styleSheet) {
|
|
24158
|
+
style.styleSheet.cssText = css;
|
|
24159
|
+
} else {
|
|
24160
|
+
style.appendChild(document.createTextNode(css));
|
|
24161
|
+
}
|
|
24162
|
+
}
|
|
24162
24163
|
|
|
24163
|
-
// eslint-disable-next-line
|
|
24164
|
-
createGlobalStyle(_templateObject$g || (_templateObject$g = _taggedTemplateLiteralLoose(["\n\t#el_TvxDfTAtKp {\n\t\tstroke: none;\n\t\tstroke-width: 1;\n\t\tfill: none;\n\t}\n\t#el_D93PK3GbmJ {\n\t\t-webkit-transform: translate(163px, 131px);\n\t\ttransform: translate(163px, 131px);\n\t\tfill: #d8d8d8;\n\t}\n"])));
|
|
24165
24164
|
var MicSvg = {
|
|
24166
24165
|
name: 'MicSvg',
|
|
24167
24166
|
props: ['className'],
|
|
@@ -24195,10 +24194,6 @@
|
|
|
24195
24194
|
}
|
|
24196
24195
|
};
|
|
24197
24196
|
|
|
24198
|
-
var _templateObject$h;
|
|
24199
|
-
|
|
24200
|
-
// eslint-disable-next-line
|
|
24201
|
-
createGlobalStyle(_templateObject$h || (_templateObject$h = _taggedTemplateLiteralLoose(["\n\t#el_X81iT9kZYo {\n\t\tstroke: none;\n\t\tstroke-width: 1;\n\t\tfill: none;\n\t}\n\t#el_gMpyalCphp {\n\t\t-webkit-transform: translate(163px, 131px);\n\t\ttransform: translate(163px, 131px);\n\t}\n\t#el_c7H-3u-D4l {\n\t\tfill: #d8d8d8;\n\t}\n\t#el_qhFcdAAFwo {\n\t\tfill: #d8d8d8;\n\t}\n\t#el_M8X8g37WOI {\n\t\tstroke: #e83137;\n\t\tstroke-width: 21;\n\t}\n"])));
|
|
24202
24197
|
var MuteSvg = {
|
|
24203
24198
|
name: 'MuteSvg',
|
|
24204
24199
|
props: ['className'],
|
|
@@ -24241,10 +24236,6 @@
|
|
|
24241
24236
|
}
|
|
24242
24237
|
};
|
|
24243
24238
|
|
|
24244
|
-
var _templateObject$i;
|
|
24245
|
-
|
|
24246
|
-
// eslint-disable-next-line
|
|
24247
|
-
createGlobalStyle(_templateObject$i || (_templateObject$i = _taggedTemplateLiteralLoose(["\n\t@-webkit-keyframes kf_el_6WKby7wXqV_an_qqO-rxbNc {\n\t\t0% {\n\t\t\topacity: 0;\n\t\t}\n\t\t13.89% {\n\t\t\topacity: 1;\n\t\t}\n\t\t100% {\n\t\t\topacity: 1;\n\t\t}\n\t}\n\t@keyframes kf_el_6WKby7wXqV_an_qqO-rxbNc {\n\t\t0% {\n\t\t\topacity: 0;\n\t\t}\n\t\t13.89% {\n\t\t\topacity: 1;\n\t\t}\n\t\t100% {\n\t\t\topacity: 1;\n\t\t}\n\t}\n\t@-webkit-keyframes kf_el_Wi-my975tM_an_XhXP1epXB {\n\t\t0% {\n\t\t\topacity: 0;\n\t\t}\n\t\t27.78% {\n\t\t\topacity: 1;\n\t\t}\n\t\t100% {\n\t\t\topacity: 1;\n\t\t}\n\t}\n\t@keyframes kf_el_Wi-my975tM_an_XhXP1epXB {\n\t\t0% {\n\t\t\topacity: 0;\n\t\t}\n\t\t27.78% {\n\t\t\topacity: 1;\n\t\t}\n\t\t100% {\n\t\t\topacity: 1;\n\t\t}\n\t}\n\t@-webkit-keyframes kf_el_DkfFFTaFxy8_an_T2XxzvIaA {\n\t\t0% {\n\t\t\topacity: 0;\n\t\t}\n\t\t41.67% {\n\t\t\topacity: 1;\n\t\t}\n\t\t100% {\n\t\t\topacity: 1;\n\t\t}\n\t}\n\t@keyframes kf_el_DkfFFTaFxy8_an_T2XxzvIaA {\n\t\t0% {\n\t\t\topacity: 0;\n\t\t}\n\t\t41.67% {\n\t\t\topacity: 1;\n\t\t}\n\t\t100% {\n\t\t\topacity: 1;\n\t\t}\n\t}\n\t@-webkit-keyframes kf_el_34IgwiMB5rf_an_TPom3H2LI {\n\t\t0% {\n\t\t\topacity: 0;\n\t\t}\n\t\t55.56% {\n\t\t\topacity: 1;\n\t\t}\n\t\t100% {\n\t\t\topacity: 1;\n\t\t}\n\t}\n\t@keyframes kf_el_34IgwiMB5rf_an_TPom3H2LI {\n\t\t0% {\n\t\t\topacity: 0;\n\t\t}\n\t\t55.56% {\n\t\t\topacity: 1;\n\t\t}\n\t\t100% {\n\t\t\topacity: 1;\n\t\t}\n\t}\n\t@-webkit-keyframes kf_el_DeebuCsPTGA_an_aYTRBE7Na {\n\t\t0% {\n\t\t\topacity: 0;\n\t\t}\n\t\t69.44% {\n\t\t\topacity: 1;\n\t\t}\n\t\t100% {\n\t\t\topacity: 1;\n\t\t}\n\t}\n\t@keyframes kf_el_DeebuCsPTGA_an_aYTRBE7Na {\n\t\t0% {\n\t\t\topacity: 0;\n\t\t}\n\t\t69.44% {\n\t\t\topacity: 1;\n\t\t}\n\t\t100% {\n\t\t\topacity: 1;\n\t\t}\n\t}\n\t@-webkit-keyframes kf_el_ZOjjrPTvyrv_an_l_BjBNzXw {\n\t\t0% {\n\t\t\topacity: 0;\n\t\t}\n\t\t83.33% {\n\t\t\topacity: 1;\n\t\t}\n\t\t100% {\n\t\t\topacity: 1;\n\t\t}\n\t}\n\t@keyframes kf_el_ZOjjrPTvyrv_an_l_BjBNzXw {\n\t\t0% {\n\t\t\topacity: 0;\n\t\t}\n\t\t83.33% {\n\t\t\topacity: 1;\n\t\t}\n\t\t100% {\n\t\t\topacity: 1;\n\t\t}\n\t}\n\t@-webkit-keyframes kf_el_2FATegVmf0K_an_wLg4ofuFx {\n\t\t0% {\n\t\t\topacity: 0;\n\t\t}\n\t\t97.22% {\n\t\t\topacity: 1;\n\t\t}\n\t\t100% {\n\t\t\topacity: 1;\n\t\t}\n\t}\n\t@keyframes kf_el_2FATegVmf0K_an_wLg4ofuFx {\n\t\t0% {\n\t\t\topacity: 0;\n\t\t}\n\t\t97.22% {\n\t\t\topacity: 1;\n\t\t}\n\t\t100% {\n\t\t\topacity: 1;\n\t\t}\n\t}\n\t#el_hiibMG0x- * {\n\t\t-webkit-animation-duration: 1.2s;\n\t\tanimation-duration: 1.2s;\n\t\t-webkit-animation-iteration-count: infinite;\n\t\tanimation-iteration-count: infinite;\n\t\t-webkit-animation-timing-function: cubic-bezier(0, 0, 1, 1);\n\t\tanimation-timing-function: cubic-bezier(0, 0, 1, 1);\n\t}\n\t#el_QJeJ_2CDw5 {\n\t\tstroke: none;\n\t\tstroke-width: 1;\n\t\tfill: none;\n\t}\n\t#el_UYYCfubTRf {\n\t\t-webkit-transform: translate(163px, 123px);\n\t\ttransform: translate(163px, 123px);\n\t}\n\t#el_uzZNtK32Zi {\n\t\tfill: #d8d8d8;\n\t}\n\t#el_EYKQ2N9Kgy {\n\t\tfill: #d8d8d8;\n\t}\n\t#el_6SDP2LAgKC {\n\t\t-webkit-transform: translate(37.846924px, 0px);\n\t\ttransform: translate(37.846924px, 0px);\n\t}\n\t#el_-Vm65Ltfy7 {\n\t\tfill: #0B6AFF;\n\t}\n\t#el_q04iZcSim4 {\n\t\tfill: #d8d8d8;\n\t}\n\t#el_6WKby7wXqV {\n\t\t-webkit-transform: translate(37.846924px, 0px);\n\t\ttransform: translate(37.846924px, 0px);\n\t\t-webkit-animation-fill-mode: backwards;\n\t\tanimation-fill-mode: backwards;\n\t\topacity: 0;\n\t\t-webkit-animation-name: kf_el_6WKby7wXqV_an_qqO-rxbNc;\n\t\tanimation-name: kf_el_6WKby7wXqV_an_qqO-rxbNc;\n\t\t-webkit-animation-timing-function: cubic-bezier(0.42, 0, 1, 1);\n\t\tanimation-timing-function: cubic-bezier(0.42, 0, 1, 1);\n\t}\n\t#el_9bggsfQOtU {\n\t\tfill: #0B6AFF;\n\t}\n\t#el_NKxqi9eIym {\n\t\tfill: #d8d8d8;\n\t}\n\t#el_Wi-my975tM {\n\t\t-webkit-transform: translate(37.846924px, 0px);\n\t\ttransform: translate(37.846924px, 0px);\n\t\t-webkit-animation-fill-mode: backwards;\n\t\tanimation-fill-mode: backwards;\n\t\topacity: 0;\n\t\t-webkit-animation-name: kf_el_Wi-my975tM_an_XhXP1epXB;\n\t\tanimation-name: kf_el_Wi-my975tM_an_XhXP1epXB;\n\t\t-webkit-animation-timing-function: cubic-bezier(0.42, 0, 1, 1);\n\t\tanimation-timing-function: cubic-bezier(0.42, 0, 1, 1);\n\t}\n\t#el_zclQ34fvf7 {\n\t\tfill: #0B6AFF;\n\t}\n\t#el_1OsvRT8HkeZ {\n\t\tfill: #d8d8d8;\n\t}\n\t#el_DkfFFTaFxy8 {\n\t\t-webkit-transform: translate(37.846924px, 0px);\n\t\ttransform: translate(37.846924px, 0px);\n\t\t-webkit-animation-fill-mode: backwards;\n\t\tanimation-fill-mode: backwards;\n\t\topacity: 0;\n\t\t-webkit-animation-name: kf_el_DkfFFTaFxy8_an_T2XxzvIaA;\n\t\tanimation-name: kf_el_DkfFFTaFxy8_an_T2XxzvIaA;\n\t\t-webkit-animation-timing-function: cubic-bezier(0.42, 0, 1, 1);\n\t\tanimation-timing-function: cubic-bezier(0.42, 0, 1, 1);\n\t}\n\t#el_aa9sjx4H0vA {\n\t\tfill: #0B6AFF;\n\t}\n\t#el_tea114vWg0J {\n\t\tfill: #d8d8d8;\n\t}\n\t#el_34IgwiMB5rf {\n\t\t-webkit-transform: translate(37.846924px, 0px);\n\t\ttransform: translate(37.846924px, 0px);\n\t\t-webkit-animation-fill-mode: backwards;\n\t\tanimation-fill-mode: backwards;\n\t\topacity: 0;\n\t\t-webkit-animation-name: kf_el_34IgwiMB5rf_an_TPom3H2LI;\n\t\tanimation-name: kf_el_34IgwiMB5rf_an_TPom3H2LI;\n\t\t-webkit-animation-timing-function: cubic-bezier(0.42, 0, 1, 1);\n\t\tanimation-timing-function: cubic-bezier(0.42, 0, 1, 1);\n\t}\n\t#el_z5u6RAFhx7d {\n\t\tfill: #0B6AFF;\n\t}\n\t#el_7nfuWmA5Uhy {\n\t\tfill: #d8d8d8;\n\t}\n\t#el_DeebuCsPTGA {\n\t\t-webkit-transform: translate(37.846924px, 0px);\n\t\ttransform: translate(37.846924px, 0px);\n\t\t-webkit-animation-fill-mode: backwards;\n\t\tanimation-fill-mode: backwards;\n\t\topacity: 0;\n\t\t-webkit-animation-name: kf_el_DeebuCsPTGA_an_aYTRBE7Na;\n\t\tanimation-name: kf_el_DeebuCsPTGA_an_aYTRBE7Na;\n\t\t-webkit-animation-timing-function: cubic-bezier(0.42, 0, 1, 1);\n\t\tanimation-timing-function: cubic-bezier(0.42, 0, 1, 1);\n\t}\n\t#el__ZcqlS20zcw {\n\t\tfill: #0B6AFF;\n\t}\n\t#el_8DnEQnD7VWV {\n\t\tfill: #d8d8d8;\n\t}\n\t#el_ZOjjrPTvyrv {\n\t\t-webkit-transform: translate(37.846924px, 0px);\n\t\ttransform: translate(37.846924px, 0px);\n\t\t-webkit-animation-fill-mode: backwards;\n\t\tanimation-fill-mode: backwards;\n\t\topacity: 0;\n\t\t-webkit-animation-name: kf_el_ZOjjrPTvyrv_an_l_BjBNzXw;\n\t\tanimation-name: kf_el_ZOjjrPTvyrv_an_l_BjBNzXw;\n\t\t-webkit-animation-timing-function: cubic-bezier(0.42, 0, 1, 1);\n\t\tanimation-timing-function: cubic-bezier(0.42, 0, 1, 1);\n\t}\n\t#el_FYYKCI_u24e {\n\t\tfill: #0B6AFF;\n\t}\n\t#el_XZty4MnTp5Y {\n\t\tfill: #d8d8d8;\n\t}\n\t#el_2FATegVmf0K {\n\t\t-webkit-transform: translate(37.846924px, 0px);\n\t\ttransform: translate(37.846924px, 0px);\n\t\t-webkit-animation-fill-mode: backwards;\n\t\tanimation-fill-mode: backwards;\n\t\topacity: 0;\n\t\t-webkit-animation-name: kf_el_2FATegVmf0K_an_wLg4ofuFx;\n\t\tanimation-name: kf_el_2FATegVmf0K_an_wLg4ofuFx;\n\t\t-webkit-animation-timing-function: cubic-bezier(0.42, 0, 1, 1);\n\t\tanimation-timing-function: cubic-bezier(0.42, 0, 1, 1);\n\t}\n\t#el_RMT1KUfbdF8 {\n\t\tfill: #0B6AFF;\n\t}\n\t#el_RgLcovvFiO1 {\n\t\tfill: #d8d8d8;\n\t}\n"])));
|
|
24248
24239
|
var ListenSvg = {
|
|
24249
24240
|
name: 'ListenSvg',
|
|
24250
24241
|
props: ['className'],
|
|
@@ -24509,7 +24500,7 @@
|
|
|
24509
24500
|
}
|
|
24510
24501
|
this.instance = new SpeechRecognition();
|
|
24511
24502
|
this.instance.continuous = true;
|
|
24512
|
-
this.instance.interimResults =
|
|
24503
|
+
this.instance.interimResults = false;
|
|
24513
24504
|
this.instance.lang = lang;
|
|
24514
24505
|
if (getInstance) {
|
|
24515
24506
|
getInstance(this.instance);
|
|
@@ -24569,18 +24560,18 @@
|
|
|
24569
24560
|
case STATUS.active:
|
|
24570
24561
|
return vue.createVNode(ListenSvg, {
|
|
24571
24562
|
"className": className,
|
|
24572
|
-
"
|
|
24563
|
+
"onClick": this.handleClick
|
|
24573
24564
|
}, null);
|
|
24574
24565
|
case STATUS.stopped:
|
|
24575
24566
|
case STATUS.denied:
|
|
24576
24567
|
return vue.createVNode(MuteSvg, {
|
|
24577
24568
|
"className": className,
|
|
24578
|
-
"
|
|
24569
|
+
"onClick": this.handleClick
|
|
24579
24570
|
}, null);
|
|
24580
24571
|
default:
|
|
24581
24572
|
return vue.createVNode(MicSvg, {
|
|
24582
24573
|
"className": className,
|
|
24583
|
-
"
|
|
24574
|
+
"onClick": this.handleClick
|
|
24584
24575
|
}, null);
|
|
24585
24576
|
}
|
|
24586
24577
|
}
|
|
@@ -24692,8 +24683,8 @@
|
|
|
24692
24683
|
}
|
|
24693
24684
|
};
|
|
24694
24685
|
|
|
24695
|
-
var _templateObject$
|
|
24696
|
-
var AutofillSvgIcon = styled('button')(_templateObject$
|
|
24686
|
+
var _templateObject$g;
|
|
24687
|
+
var AutofillSvgIcon = styled('button')(_templateObject$g || (_templateObject$g = _taggedTemplateLiteralLoose(["\n\tdisplay: flex;\n\tmargin-left: auto;\n\tposition: relative;\n\tright: -3px;\n\tborder: none;\n\toutline: none;\n\tbackground: transparent;\n\tpadding: 0;\n\tz-index: 111000;\n\n\tsvg {\n\t\tcursor: pointer;\n\t\tfill: #707070;\n\t\theight: 20px;\n\t}\n\n\t&:hover {\n\t\tsvg {\n\t\t\tfill: #1c1a1a;\n\t\t}\n\t}\n"])));
|
|
24697
24688
|
var AutoFillSvg = {
|
|
24698
24689
|
name: 'AutoFillSvg',
|
|
24699
24690
|
render: function render() {
|
|
@@ -24717,12 +24708,12 @@
|
|
|
24717
24708
|
}
|
|
24718
24709
|
};
|
|
24719
24710
|
|
|
24720
|
-
var _templateObject$
|
|
24721
|
-
var TagsContainer = styled('div')(_templateObject$
|
|
24711
|
+
var _templateObject$h, _templateObject2$5;
|
|
24712
|
+
var TagsContainer = styled('div')(_templateObject$h || (_templateObject$h = _taggedTemplateLiteralLoose(["\n\tdisplay: flex;\n\tflex-wrap: wrap;\n\tmargin-top: 10px;\n\twidth: 100%;\n"])));
|
|
24722
24713
|
var TagItem = styled('span')(_templateObject2$5 || (_templateObject2$5 = _taggedTemplateLiteralLoose(["\n\tcursor: default;\n\tbox-sizing: border-box;\n\tmargin: 0 4px 4px 0;\n\tcolor: #000000d9;\n\tfont-size: 14px;\n\tfont-variant: tabular-nums;\n\tline-height: 1.5715;\n\tlist-style: none;\n\tfont-feature-settings: 'tnum';\n\tdisplay: inline-block;\n\theight: auto;\n\tpadding: 0 2px 0 7px;\n\tfont-size: 12px;\n\tline-height: 22px;\n\twhite-space: nowrap;\n\tbackground: #fafafa;\n\tborder: 1px solid #d9d9d9;\n\tborder-radius: 2px;\n\topacity: 1;\n\ttransition: all 0.3s;\n\n\tspan.close-icon {\n\t\tsvg {\n\t\t\tcursor: pointer;\n\t\t\theight: 15px;\n\t\t\tposition: relative;\n\t\t\ttop: 4px;\n\t\t\tfill: #262626;\n\t\t}\n\t}\n"])));
|
|
24723
24714
|
|
|
24724
|
-
var _templateObject$
|
|
24725
|
-
var skeletonAnimation = keyframes(_templateObject$
|
|
24715
|
+
var _templateObject$i, _templateObject2$6, _templateObject3$4;
|
|
24716
|
+
var skeletonAnimation = keyframes(_templateObject$i || (_templateObject$i = _taggedTemplateLiteralLoose(["\n 0% {\n background-position: 100% 0;\n }\n 100% {\n background-position: -200% 0;\n }\n"])));
|
|
24726
24717
|
var SkeletonLoader = styled('div')(_templateObject2$6 || (_templateObject2$6 = _taggedTemplateLiteralLoose(["\n\tdisplay: flex;\n\tflex-direction: column;\n\tgap: 10px;\n"])));
|
|
24727
24718
|
var SkeletonLine = styled('div')(_templateObject3$4 || (_templateObject3$4 = _taggedTemplateLiteralLoose(["\n\twidth: 100%;\n\theight: 20px;\n\tbackground: linear-gradient(\n\t\t90deg,\n\t\trgba(220, 220, 220, 0.5) 25%,\n\t\trgba(240, 240, 240, 0.9) 50%,\n\t\trgba(220, 220, 220, 0.5) 75%\n\t);\n\tbackground-size: 200% 100%;\n\tanimation: ", " 1.5s infinite;\n"])), skeletonAnimation);
|
|
24728
24719
|
var HorizontalSkeletonLoader = vue.defineComponent({
|
|
@@ -24736,8 +24727,8 @@
|
|
|
24736
24727
|
}
|
|
24737
24728
|
});
|
|
24738
24729
|
|
|
24739
|
-
var _templateObject$
|
|
24740
|
-
var Chatbox = styled('div')(_templateObject$
|
|
24730
|
+
var _templateObject$j, _templateObject2$7, _templateObject3$5, _templateObject4$2, _templateObject5$2, _templateObject6$1, _templateObject7, _templateObject8, _templateObject9, _templateObject10, _templateObject11;
|
|
24731
|
+
var Chatbox = styled('div')(_templateObject$j || (_templateObject$j = _taggedTemplateLiteralLoose(["\n\tposition: relative;\n\tmargin: 0 auto;\n\tpadding: 10px;\n\tbackground-color: #fafafa;\n\twidth: 100%;\n\tbox-shadow: rgb(0 0 0 / 20%) 0px 0px 6px;\n\tborder-radius: 6px;\n\tmargin-bottom: 20px;\n\tbackground-color: ", ";\n"])), function (props) {
|
|
24741
24732
|
return props.theme && props.theme.colors ? props.theme.colors.backgroundColor : '#fff';
|
|
24742
24733
|
});
|
|
24743
24734
|
var ChatContainer = styled('div')(_templateObject2$7 || (_templateObject2$7 = _taggedTemplateLiteralLoose(["\n\tdisplay: flex;\n\tflex-direction: column;\n\theight: 100%;\n\tposition: relative;\n\t.--ai-answer-error-container {\n\t\ttext-align: center;\n\t\tposition: absolute;\n\t\tbottom: 0px;\n\t\t", ";\n\t\tz-index: 1;\n\t\tleft: 50%;\n\t\ttransform: translateX(-50%);\n\t\twidth: 100%;\n\n\t\t.--default-error-element {\n\t\t\tdisplay: flex;\n\t\t\tflex-direction: column;\n\t\t\talign-items: center;\n\t\t\tpadding: 10px;\n\t\t\tbackground-color: ", ";\n\t\t\tbox-shadow: 0 -5px 5px -2px\n\t\t\t\t", ";\n\n\t\t\tspan {\n\t\t\t\tmargin-bottom: 5px;\n\t\t\t}\n\n\t\t\tbutton {\n\t\t\t}\n\t\t}\n\t}\n\n\t", ";\n"])), function (props) {
|
|
@@ -24812,8 +24803,8 @@
|
|
|
24812
24803
|
var SendButton = styled(Button)(_templateObject10 || (_templateObject10 = _taggedTemplateLiteralLoose(["\n\tborder: none;\n\tcolor: #ffffff;\n\tcursor: pointer;\n\tfont-size: 16px;\n\tmargin-left: 8px;\n\toutline: none;\n\tpadding: 10px;\n\ttext-align: center;\n"])));
|
|
24813
24804
|
var AIFeedbackContainer = styled('div')(_templateObject11 || (_templateObject11 = _taggedTemplateLiteralLoose(["\n\t.--feedback-svgs-wrapper {\n\t\tdisplay: flex;\n\t\talign-items: center;\n\t\tjustify-content: flex-end;\n\t\tgap: 5px;\n\n\t\tsvg {\n\t\t\tcursor: pointer;\n\t\t\ttransition: all ease-in 0.1s;\n\t\t\t&.selected {\n\t\t\t\ttransform: scale(1.1);\n\t\t\t\tcursor: default;\n\t\t\t}\n\n\t\t\t&:hover {\n\t\t\t\ttransform: scale(1.1);\n\t\t\t}\n\t\t}\n\t}\n\n\t.--feedback-input-wrapper {\n\t\tdisplay: flex;\n\t\tgap: 7px;\n\t}\n"])));
|
|
24814
24805
|
|
|
24815
|
-
var _templateObject$
|
|
24816
|
-
var fadeInFromBottom = keyframes(_templateObject$
|
|
24806
|
+
var _templateObject$k, _templateObject2$8, _templateObject3$6, _templateObject4$3, _templateObject5$3, _templateObject6$2, _templateObject7$1;
|
|
24807
|
+
var fadeInFromBottom = keyframes(_templateObject$k || (_templateObject$k = _taggedTemplateLiteralLoose(["\n 0% {\n opacity: 0;\n transform: translateY(20px);\n }\n 100% {\n opacity: 1;\n transform: translateY(0);\n }\n"])));
|
|
24817
24808
|
var fadeInFromTop = keyframes(_templateObject2$8 || (_templateObject2$8 = _taggedTemplateLiteralLoose(["\n 0% {\n opacity: 0;\n transform: translateY(-20px);\n }\n 100% {\n opacity: 1;\n transform: translateY(0);\n }\n"])));
|
|
24818
24809
|
var SearchBoxAISection = styled('div')(_templateObject3$6 || (_templateObject3$6 = _taggedTemplateLiteralLoose(["\n\tpadding: 10px;\n\tborder-radius: 4px;\n\tmin-height: 200px;\n\tpadding-top: 20px;\n\tposition: relative;\n\tdisplay: flex;\n\tflex-direction: column;\n\tjustify-content: space-between;\n\tbackground-color: ", ";\n\tcolor: ", ";\n\t.--ai-answer-error-container {\n\t\tposition: absolute;\n\t\ttop: 50%;\n\t\tleft: 50%;\n\t\ttransform: translate(-50%, -50%);\n\t\t.--default-error-element {\n\t\t\tdisplay: flex;\n\t\t\tflex-direction: column;\n\t\t\talign-items: center;\n\t\t\tgap: 10px;\n\t\t}\n\t}\n"])), function (_ref) {
|
|
24819
24810
|
var themePreset = _ref.themePreset,
|
|
@@ -26580,7 +26571,7 @@
|
|
|
26580
26571
|
if (text === void 0) {
|
|
26581
26572
|
text = this.inputMessage;
|
|
26582
26573
|
}
|
|
26583
|
-
if (typeof e === 'object') e.preventDefault();
|
|
26574
|
+
if (typeof e === 'object' && e !== null) e.preventDefault();
|
|
26584
26575
|
if (text.trim()) {
|
|
26585
26576
|
if (this.isLoadingState) {
|
|
26586
26577
|
return;
|
|
@@ -26694,7 +26685,7 @@
|
|
|
26694
26685
|
return [_this2.shouldMicRender(showVoiceInput) && vue.createVNode(Mic, {
|
|
26695
26686
|
"getInstance": getMicInstance,
|
|
26696
26687
|
"render": renderMic,
|
|
26697
|
-
"
|
|
26688
|
+
"handleResult": _this2.handleVoiceResults,
|
|
26698
26689
|
"class": helper_31(innerClass, 'ai-search-mic') || null
|
|
26699
26690
|
}, null), iconPosition === 'right' && vue.createVNode(IconWrapper, null, _isSlot$6(_slot = _this2.renderIcon()) ? _slot : {
|
|
26700
26691
|
"default": function _default() {
|
|
@@ -26947,7 +26938,7 @@
|
|
|
26947
26938
|
// Add componentType for SSR
|
|
26948
26939
|
AIConnected.componentType = constants_1$1.AIAnswer;
|
|
26949
26940
|
|
|
26950
|
-
var _templateObject$
|
|
26941
|
+
var _templateObject$l, _templateObject2$9, _templateObject3$7;
|
|
26951
26942
|
var item = {
|
|
26952
26943
|
width: '15px',
|
|
26953
26944
|
height: '15px',
|
|
@@ -26960,7 +26951,7 @@
|
|
|
26960
26951
|
theme = _ref$theme === void 0 ? {} : _ref$theme;
|
|
26961
26952
|
return "\n\t" + vh + ";\n\n\t&:focus {\n\t\t+ label {\n\t\t\t&::before {\n\t\t\t\tbox-shadow: 0 0 0 2px " + curriedLighten(0.4, theme.colors.primaryColor) + ";\n\t\t\t}\n\t\t}\n\t}\n\n\t&:hover {\n\t\t+ label {\n\t\t\t&::before {\n\t\t\t\tborder-color: " + theme.colors.primaryColor + ";\n\t\t\t}\n\t\t}\n\t}\n\n\t&:active {\n\t\t+ label {\n\t\t\t&::before {\n\t\t\t\ttransition-duration: 0;\n\t\t\t}\n\t\t}\n\t}\n\n\t+ label {\n\t\tposition: relative;\n\t\tuser-select: none;\n\t\tdisplay: flex;\n\t\twidth: 100%;\n\t\theight: 100%;\n\t\talign-items: center;\n\t\tcursor: pointer;\n\n\t\t&::before {\n\t\t\tbackground-color: #fff;\n\t\t\tborder: 1px solid " + (theme.colors.borderColor || curriedLighten(0.1, theme.colors.textColor)) + ";\n\t\t\tbox-sizing: content-box;\n\t\t\tcontent: '';\n\t\t\tcolor: " + theme.colors.primaryColor + ";\n\t\t\tmargin-right: calc(" + item.width + " * 0.5);\n\t\t\ttop: 50%;\n\t\t\tleft: 0;\n\t\t\twidth: " + item.width + ";\n\t\t\theight: " + item.height + ";\n\t\t\tdisplay: inline-block;\n\t\t\tvertical-align: middle;\n\t\t}\n\n\t\t&::after {\n\t\t\tbox-sizing: content-box;\n\t\t\tcontent: '';\n\t\t\tbackground-color: " + theme.colors.primaryColor + ";\n\t\t\tposition: absolute;\n\t\t\ttop: 50%;\n\t\t\tleft: calc(1px + " + item.scale + " / 2);\n\t\t\twidth: calc(" + item.width + " - " + item.scale + ");\n\t\t\theight: calc(" + item.height + " - " + item.scale + ");\n\t\t\tmargin-top: calc(" + item.height + " / -2 - " + item.scale + " / -2);\n\t\t\ttransform: scale(0);\n\t\t\ttransform-origin: 50%;\n\t\t\ttransition: transform 200ms ease-out;\n\t\t}\n\t}\n";
|
|
26962
26953
|
};
|
|
26963
|
-
var Radio = styled('input')(_templateObject$
|
|
26954
|
+
var Radio = styled('input')(_templateObject$l || (_templateObject$l = _taggedTemplateLiteralLoose(["\n\t", ";\n\t", ";\n\n\t+ label {\n\t\t&::before,\n\t\t&::after {\n\t\t\tborder-radius: 50%;\n\t\t}\n\t}\n\n\t&:checked {\n\t\t&:active,\n\t\t&:focus {\n\t\t\t+ label {\n\t\t\t\tcolor: ", ";\n\n\t\t\t\t&::before {\n\t\t\t\t\tanimation: none;\n\t\t\t\t\tfilter: none;\n\t\t\t\t\ttransition: none;\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\n\t\t+ label {\n\t\t\t&::before {\n\t\t\t\tanimation: none;\n\t\t\t\tbackground-color: #fff;\n\t\t\t\tborder-color: ", ";\n\t\t}\n\n\t\t&::after {\n\t\t\ttransform: scale(1);\n\t\t}\n\t}\n"])), formItem, function (props) {
|
|
26964
26955
|
return props.show ? null : hideInputControl;
|
|
26965
26956
|
}, function (_ref2) {
|
|
26966
26957
|
var theme = _ref2.theme;
|
|
@@ -28958,8 +28949,8 @@
|
|
|
28958
28949
|
});
|
|
28959
28950
|
var types$1 = unwrapExports(types_1);
|
|
28960
28951
|
|
|
28961
|
-
var _templateObject$
|
|
28962
|
-
var HierarchicalMenuList = styled('ul')(_templateObject$
|
|
28952
|
+
var _templateObject$m, _templateObject2$a;
|
|
28953
|
+
var HierarchicalMenuList = styled('ul')(_templateObject$m || (_templateObject$m = _taggedTemplateLiteralLoose(["\n\tlist-style: none;\n\tpadding: 0;\n\tmargin: 0;\n\tmax-height: 0;\n\toverflow: hidden;\n\n\t&.--open {\n\t\tmax-height: 100%;\n\t}\n"])));
|
|
28963
28954
|
var HierarchicalMenuListItem = styled('li')(_templateObject2$a || (_templateObject2$a = _taggedTemplateLiteralLoose(["\n\tfont-weight: 400;\n\tline-height: 1.5;\n\tbox-sizing: border-box;\n\n\ta {\n\t\tcolor: #424242;\n\t\ttext-decoration: none;\n\t\tgap: 5px;\n\t\t.--leaf-icon,\n\t\t.--folder-icon {\n\t\t\tline-height: 15px;\n\t\t\tsvg {\n\t\t\t\theight: 15px;\n\t\t\t}\n\t\t}\n\n\t\tinput {\n\t\t\tmargin: 0;\n\t\t\tcursor: pointer;\n\t\t}\n\t}\n\n\t.--switcher-icon {\n\t\ttransition: all 0.2s ease-in;\n\t\tmargin-right: 2px;\n\t}\n\t.--list-child {\n\t\tpadding-left: 1rem;\n\t\tposition: relative;\n\t\t&:before {\n\t\t\theight: 100%;\n\t\t\tcontent: '';\n\t\t\tposition: absolute;\n\t\t\tborder-left: 1px solid #787878;\n\t\t\twidth: 0;\n\t\t\tleft: 19px;\n\t\t\t", ";\n\t\t}\n\n\t\t&.--show-switcher-icon {\n\t\t\tpadding-left: 36px;\n\t\t}\n\t}\n\t.--list-item-label {\n\t\tline-height: 100%;\n\t}\n\t.--list-item-count {\n\t\tmargin-left: 10px;\n\t\tpadding: 0.1rem 0.4rem;\n\t\tfont-size: 0.8rem;\n\t\tcolor: #424242;\n\t\tbackground-color: #dee1e6;\n\t\tborder-radius: 8px;\n\t}\n\t&.-selected-item {\n\t\tfont-weight: 700 !important;\n\t}\n\t&.-expanded-item {\n\t\t& > a {\n\t\t\t& div > .--switcher-icon {\n\t\t\t\ttransform: rotate(90deg);\n\t\t\t}\n\t\t}\n\t}\n\t.--list-item-label-count-wrapper {\n\t\tdisplay: flex;\n\t\talign-items: center;\n\t\t&:hover {\n\t\t\t.--list-item-count,\n\t\t\t.--list-item-label {\n\t\t\t\tfont-weight: 700;\n\t\t\t}\n\t\t}\n\t}\n"])), function (props) {
|
|
28964
28955
|
return !props.showLine && "\n\t\t\t\t\tdisplay: none;\n\t\t\t\t";
|
|
28965
28956
|
});
|
|
@@ -29721,13 +29712,13 @@
|
|
|
29721
29712
|
// Add componentType for SSR
|
|
29722
29713
|
TreeListConnected.componentType = constants_1$1.treeList;
|
|
29723
29714
|
|
|
29724
|
-
var _templateObject$
|
|
29715
|
+
var _templateObject$n, _templateObject2$b;
|
|
29725
29716
|
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";
|
|
29726
29717
|
var dark$2 = function dark(_ref) {
|
|
29727
29718
|
var theme = _ref.theme;
|
|
29728
29719
|
return "\n\tbackground-color: " + (theme.colors ? theme.colors.backgroundColor : '') + ";\n\tborder-color: " + (theme.colors ? theme.colors.borderColor : '') + ";\n\tcolor: " + (theme.colors ? theme.colors.textColor : '') + ";\n\n\t&:hover,\n\t&:focus {\n\t\tbackground-color: " + (theme.colors ? theme.colors.backgroundColor : '') + ";\n\t}\n";
|
|
29729
29720
|
};
|
|
29730
|
-
var Select = styled('button')(_templateObject$
|
|
29721
|
+
var Select = styled('button')(_templateObject$n || (_templateObject$n = _taggedTemplateLiteralLoose(["\n\twidth: 100%;\n\tdisplay: flex;\n\talign-items: center;\n\tjustify-content: space-between;\n\tmin-height: 42px;\n\tborder-radius: 0;\n\toutline: none;\n\tpadding: 5px 12px;\n\tfont-size: 0.9rem;\n\tline-height: 1.2rem;\n\tbackground-color: #fff;\n\tborder: 1px solid #ccc;\n\tcolor: #424242;\n\tcursor: pointer;\n\tuser-select: none;\n\ttransition: all 0.3s ease;\n\n\t", ";\n\n\t& > div {\n\t\twidth: calc(100% - 24px);\n\t\twhite-space: nowrap;\n\t\toverflow: hidden;\n\t\ttext-overflow: ellipsis;\n\t\ttext-align: left;\n\t}\n\n\t&:hover,\n\t&:focus {\n\t\tbackground-color: #fcfcfc;\n\t}\n\n\t", ";\n"])), function (props) {
|
|
29731
29722
|
return props.small ? small : null;
|
|
29732
29723
|
}, function (_ref2) {
|
|
29733
29724
|
var themePreset = _ref2.themePreset;
|
|
@@ -29738,9 +29729,9 @@
|
|
|
29738
29729
|
return theme.colors.primaryColor;
|
|
29739
29730
|
});
|
|
29740
29731
|
|
|
29741
|
-
var _templateObject$
|
|
29732
|
+
var _templateObject$o;
|
|
29742
29733
|
var open = "\n\ttop: 0.55em;\n\ttransform: rotate(-45deg);\n";
|
|
29743
|
-
var Chevron = styled('span')(_templateObject$
|
|
29734
|
+
var Chevron = styled('span')(_templateObject$o || (_templateObject$o = _taggedTemplateLiteralLoose(["\n\t&::before {\n\t\tcontent: '';\n\t\tborder-style: solid;\n\t\tborder-width: 0.15em 0.15em 0 0;\n\t\tdisplay: inline-block;\n\t\theight: 0.45em;\n\t\tposition: relative;\n\t\ttop: 0.35em;\n\t\tleft: 0;\n\t\ttransform: rotate(135deg);\n\t\tvertical-align: top;\n\t\twidth: 0.45em;\n\n\t\t", ";\n\t}\n"])), function (props) {
|
|
29744
29735
|
return props.open ? open : null;
|
|
29745
29736
|
});
|
|
29746
29737
|
|
|
@@ -31454,8 +31445,8 @@
|
|
|
31454
31445
|
}
|
|
31455
31446
|
});
|
|
31456
31447
|
|
|
31457
|
-
var _templateObject$
|
|
31458
|
-
var Slider = styled('div')(_templateObject$
|
|
31448
|
+
var _templateObject$p;
|
|
31449
|
+
var Slider = styled('div')(_templateObject$p || (_templateObject$p = _taggedTemplateLiteralLoose(["\n\tmargin-top: 30px;\n\tpadding: 10px;\n\n\t/* component style */\n\t.vue-slider-disabled {\n\t\topacity: 0.5;\n\t\tcursor: not-allowed;\n\t}\n\n\t/* rail style */\n\t.vue-slider-rail {\n\t\tbackground-color: #ccc;\n\t\tborder-radius: 15px;\n\t\theight: 4px;\n\t}\n\n\t/* process style */\n\t.vue-slider-process {\n\t\tbackground-color: #0b6aff;\n\t\tborder-radius: 15px;\n\t}\n\n\t/* mark style */\n\t.vue-slider-mark {\n\t\tz-index: 4;\n\t}\n\n\t.vue-slider-mark:first-child .vue-slider-mark-step,\n\t.vue-slider-mark:last-child .vue-slider-mark-step {\n\t\tdisplay: none;\n\t}\n\n\t.vue-slider-mark-step {\n\t\twidth: 100%;\n\t\theight: 100%;\n\t\tborder-radius: 50%;\n\t\tbackground-color: rgba(0, 0, 0, 0.16);\n\t}\n\n\t.vue-slider-mark-label {\n\t\tfont-size: 14px;\n\t\twhite-space: nowrap;\n\t}\n\n\t/* dot style */\n\t.vue-slider-dot {\n\t\tz-index: 2;\n\t}\n\n\t.vue-slider-dot-handle {\n\t\tcursor: pointer;\n\t\twidth: 100%;\n\t\theight: 100%;\n\t\tborder-radius: 50%;\n\t\tbackground-color: #fff;\n\t\tbox-sizing: border-box;\n\t\tborder: 1px solid #9a9a9a;\n\t\tz-index: 2;\n\t\tbox-shadow: 0.5px 0.5px 2px 1px rgb(0 0 0 / 32%);\n\t}\n\n\t.vue-slider-dot-handle-disabled {\n\t\tcursor: not-allowed;\n\t\tbackground-color: #ccc;\n\t}\n\n\t.vue-slider-dot-tooltip-inner {\n\t\tfont-size: 14px;\n\t\twhite-space: nowrap;\n\t\tpadding: 2px 5px;\n\t\tmin-width: 20px;\n\t\ttext-align: center;\n\t\tcolor: #fff;\n\t\tborder-radius: 5px;\n\t\tborder: 1px solid #3498db;\n\t\tbackground-color: #3498db;\n\t\tbox-sizing: content-box;\n\t}\n\n\t.vue-slider-dot-tooltip-inner::after {\n\t\tcontent: '';\n\t\tposition: absolute;\n\t}\n\n\t.vue-slider-dot-tooltip-inner-top::after {\n\t\ttop: 100%;\n\t\tleft: 50%;\n\t\ttransform: translate(-50%, 0);\n\t\theight: 0;\n\t\twidth: 0;\n\t\tborder-color: transparent;\n\t\tborder-style: solid;\n\t\tborder-width: 5px;\n\t\tborder-top-color: inherit;\n\t}\n\n\t.vue-slider-dot-tooltip-inner-bottom::after {\n\t\tbottom: 100%;\n\t\tleft: 50%;\n\t\ttransform: translate(-50%, 0);\n\t\theight: 0;\n\t\twidth: 0;\n\t\tborder-color: transparent;\n\t\tborder-style: solid;\n\t\tborder-width: 5px;\n\t\tborder-bottom-color: inherit;\n\t}\n\n\t.vue-slider-dot-tooltip-inner-left::after {\n\t\tleft: 100%;\n\t\ttop: 50%;\n\t\ttransform: translate(0, -50%);\n\t\theight: 0;\n\t\twidth: 0;\n\t\tborder-color: transparent;\n\t\tborder-style: solid;\n\t\tborder-width: 5px;\n\t\tborder-left-color: inherit;\n\t}\n\n\t.vue-slider-dot-tooltip-inner-right::after {\n\t\tright: 100%;\n\t\ttop: 50%;\n\t\ttransform: translate(0, -50%);\n\t\theight: 0;\n\t\twidth: 0;\n\t\tborder-color: transparent;\n\t\tborder-style: solid;\n\t\tborder-width: 5px;\n\t\tborder-right-color: inherit;\n\t}\n\n\t.vue-slider-dot-tooltip-wrapper {\n\t\topacity: 0;\n\t\ttransition: all 0.3s;\n\t}\n\t.vue-slider-dot-tooltip-wrapper-show {\n\t\topacity: 1;\n\t}\n\n\t.label-container {\n\t\tmargin: 10px 0;\n\t\twidth: 100%;\n\t}\n\n\t.range-label-right {\n\t\tfloat: right;\n\t}\n"])));
|
|
31459
31450
|
|
|
31460
31451
|
var global$1 = typeof global !== "undefined" ? global : typeof self !== "undefined" ? self : typeof window !== "undefined" ? window : {};
|
|
31461
31452
|
|
|
@@ -32575,12 +32566,12 @@
|
|
|
32575
32566
|
// Add componentType for SSR
|
|
32576
32567
|
RangeConnected$3.componentType = constants_1$1.rangeSlider;
|
|
32577
32568
|
|
|
32578
|
-
var _templateObject$
|
|
32569
|
+
var _templateObject$q;
|
|
32579
32570
|
var alert = function alert(_ref) {
|
|
32580
32571
|
var theme = _ref.theme;
|
|
32581
32572
|
return "\n\tcolor: " + theme.colors.alertColor + ";\n";
|
|
32582
32573
|
};
|
|
32583
|
-
var Content = styled('div')(_templateObject$
|
|
32574
|
+
var Content = styled('div')(_templateObject$q || (_templateObject$q = _taggedTemplateLiteralLoose(["\n\t", ";\n\tfont-size: 13px;\n\tmargin: 8px;\n"])), function (props) {
|
|
32584
32575
|
return props.alert && alert;
|
|
32585
32576
|
});
|
|
32586
32577
|
|
|
@@ -35862,31 +35853,6 @@
|
|
|
35862
35853
|
}, null, 4 /* STYLE */), vue.createElementVNode("div", _hoisted_1$1, [vue.renderSlot(_ctx.$slots, "default")]), vue.renderSlot(_ctx.$slots, "visible")], 2 /* CLASS */);
|
|
35863
35854
|
}
|
|
35864
35855
|
|
|
35865
|
-
function styleInject(css, ref) {
|
|
35866
|
-
if (ref === void 0) ref = {};
|
|
35867
|
-
var insertAt = ref.insertAt;
|
|
35868
|
-
if (!css || typeof document === 'undefined') {
|
|
35869
|
-
return;
|
|
35870
|
-
}
|
|
35871
|
-
var head = document.head || document.getElementsByTagName('head')[0];
|
|
35872
|
-
var style = document.createElement('style');
|
|
35873
|
-
style.type = 'text/css';
|
|
35874
|
-
if (insertAt === 'top') {
|
|
35875
|
-
if (head.firstChild) {
|
|
35876
|
-
head.insertBefore(style, head.firstChild);
|
|
35877
|
-
} else {
|
|
35878
|
-
head.appendChild(style);
|
|
35879
|
-
}
|
|
35880
|
-
} else {
|
|
35881
|
-
head.appendChild(style);
|
|
35882
|
-
}
|
|
35883
|
-
if (style.styleSheet) {
|
|
35884
|
-
style.styleSheet.cssText = css;
|
|
35885
|
-
} else {
|
|
35886
|
-
style.appendChild(document.createTextNode(css));
|
|
35887
|
-
}
|
|
35888
|
-
}
|
|
35889
|
-
|
|
35890
35856
|
var css_248z = "\n.vue-map {\n width: 100%;\n height: 100%;\n min-height: 2rem;\n}\n";
|
|
35891
35857
|
styleInject(css_248z);
|
|
35892
35858
|
|
|
@@ -38181,8 +38147,8 @@
|
|
|
38181
38147
|
}
|
|
38182
38148
|
};
|
|
38183
38149
|
|
|
38184
|
-
var _templateObject$
|
|
38185
|
-
var MapPin = styled('div')(_templateObject$
|
|
38150
|
+
var _templateObject$r, _templateObject2$c, _templateObject3$8;
|
|
38151
|
+
var MapPin = styled('div')(_templateObject$r || (_templateObject$r = _taggedTemplateLiteralLoose(["\n\theight: 24px;\n\twidth: auto;\n\tbackground-color: #fff;\n\tborder-radius: 2px;\n\tcolor: #222;\n\tbox-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.15);\n\tpadding: 3px 6px;\n\tfont-size: 15px;\n"])));
|
|
38186
38152
|
var MapPinArrow = styled('div')(_templateObject2$c || (_templateObject2$c = _taggedTemplateLiteralLoose(["\n\tborder-color: rgba(0, 0, 0, 0.2);\n\tborder-style: solid;\n\tborder-width: 0 1px 1px 0;\n\tmargin-left: -6px;\n\tbackground-color: #fff;\n\tmargin-top: -6px;\n\twidth: 12px;\n\theight: 12px;\n\t-webkit-transform: rotate(45deg);\n\t-ms-transform: rotate(45deg);\n\ttransform: rotate(45deg);\n"])));
|
|
38187
38153
|
var mapPinWrapper = css(_templateObject3$8 || (_templateObject3$8 = _taggedTemplateLiteralLoose(["\n\t&:hover,\n\t&:focus {\n\t\tz-index: 200;\n\t}\n"])));
|
|
38188
38154
|
|
|
@@ -38512,7 +38478,7 @@
|
|
|
38512
38478
|
}
|
|
38513
38479
|
};
|
|
38514
38480
|
|
|
38515
|
-
var _templateObject$
|
|
38481
|
+
var _templateObject$s;
|
|
38516
38482
|
var ReactiveGoogleMap = {
|
|
38517
38483
|
name: 'ReactiveGoogleMap',
|
|
38518
38484
|
props: {
|
|
@@ -38587,7 +38553,7 @@
|
|
|
38587
38553
|
"style": {
|
|
38588
38554
|
height: '100%'
|
|
38589
38555
|
},
|
|
38590
|
-
"class": css(_templateObject$
|
|
38556
|
+
"class": css(_templateObject$s || (_templateObject$s = _taggedTemplateLiteralLoose(["\n\t\t\t\t\t\t\theight: 100%;\n\t\t\t\t\t\t"]))),
|
|
38591
38557
|
"options": {
|
|
38592
38558
|
zoomControl: true
|
|
38593
38559
|
},
|
|
@@ -39758,7 +39724,7 @@
|
|
|
39758
39724
|
}, queryString, renderFunction);
|
|
39759
39725
|
}
|
|
39760
39726
|
|
|
39761
|
-
var version = "3.0.0-rc.6";
|
|
39727
|
+
var version = "3.0.0-rc.6.1";
|
|
39762
39728
|
|
|
39763
39729
|
var components = [RLConnected, ResultCard, ResultList, ReactiveBase, SBConnected, ListConnected, ListConnected$1, RangeConnected$1, RangeConnected$2, RangeConnected$3, RangeConnected, RcConnected, RcConnected$1, RcConnected$2, TBConnected, ListConnected$2, ListConnected$3, StateProviderConnected, RangeConnected$4, TreeListConnected, AIConnected];
|
|
39764
39730
|
function install$1 (Vue) {
|