@appbaseio/reactivesearch-vue 3.0.0-rc.6.2 → 3.0.0-rc.6.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 +26 -17
- package/dist/@appbaseio/reactivesearch-vue.umd.js.map +1 -1
- package/dist/@appbaseio/reactivesearch-vue.umd.min.js +4 -4
- package/dist/@appbaseio/reactivesearch-vue.umd.min.js.map +1 -1
- package/dist/cjs/index.js +1 -1
- package/dist/cjs/{install-a3eedd27.js → install-547d13b9.js} +8 -3
- 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-25b06215.js → install-b0a1fd33.js} +8 -3
- package/dist/es/install.js +1 -1
- package/dist/es/version.js +1 -1
- package/package.json +2 -2
package/dist/cjs/index.js
CHANGED
|
@@ -33,7 +33,7 @@ require('url-search-params-polyfill');
|
|
|
33
33
|
var ReactiveBase = require('./ReactiveBase.js');
|
|
34
34
|
require('hotkeys-js');
|
|
35
35
|
require('remarkable');
|
|
36
|
-
var install = require('./install-
|
|
36
|
+
var install = require('./install-547d13b9.js');
|
|
37
37
|
require('./DropDown-aef75c14.js');
|
|
38
38
|
require('./Input-56eba499.js');
|
|
39
39
|
require('compute-scroll-into-view');
|
|
@@ -2545,7 +2545,8 @@ var AIAnswer = vue.defineComponent({
|
|
|
2545
2545
|
renderError: vueTypes.types.title,
|
|
2546
2546
|
isLoading: vueTypes.types.boolRequired,
|
|
2547
2547
|
sessionIdFromStore: VueTypes.string,
|
|
2548
|
-
showComponent: vueTypes.types.boolRequired
|
|
2548
|
+
showComponent: vueTypes.types.boolRequired,
|
|
2549
|
+
style: vueTypes.types.style
|
|
2549
2550
|
},
|
|
2550
2551
|
mounted: function mounted() {},
|
|
2551
2552
|
watch: {
|
|
@@ -2813,7 +2814,7 @@ var AIAnswer = vue.defineComponent({
|
|
|
2813
2814
|
"tabIndex": 0,
|
|
2814
2815
|
"onClick": _this3.handleSendMessage,
|
|
2815
2816
|
"onKeyPress": _this3.handleKeyPress,
|
|
2816
|
-
"class": "
|
|
2817
|
+
"class": "ask-btn " + helper.getClassName(innerClass, 'ai-enter-button'),
|
|
2817
2818
|
"disabled": _this3.isLoadingState || !_this3.AISessionId
|
|
2818
2819
|
}, {
|
|
2819
2820
|
"default": function _default() {
|
|
@@ -2877,7 +2878,10 @@ var AIAnswer = vue.defineComponent({
|
|
|
2877
2878
|
if (!this.shouldShowComponent) {
|
|
2878
2879
|
return null;
|
|
2879
2880
|
}
|
|
2880
|
-
return vue.createVNode(Chatbox,
|
|
2881
|
+
return vue.createVNode(Chatbox, {
|
|
2882
|
+
"style": props.style,
|
|
2883
|
+
"class": "--ai-chat-box-wrapper"
|
|
2884
|
+
}, {
|
|
2881
2885
|
"default": function _default() {
|
|
2882
2886
|
return [_this4.$props.title && vue.createVNode(Title.Title, {
|
|
2883
2887
|
"class": helper.getClassName(_this4.$props.innerClass, 'title') || ''
|
|
@@ -2886,6 +2890,7 @@ var AIAnswer = vue.defineComponent({
|
|
|
2886
2890
|
return [_this4.$props.title];
|
|
2887
2891
|
}
|
|
2888
2892
|
}), vue.createVNode(ChatContainer, {
|
|
2893
|
+
"class": "--ai-chat-container",
|
|
2889
2894
|
"theme": props.theme,
|
|
2890
2895
|
"showInput": props.showInput
|
|
2891
2896
|
}, {
|
package/dist/cjs/install.js
CHANGED
|
@@ -33,7 +33,7 @@ require('url-search-params-polyfill');
|
|
|
33
33
|
require('./ReactiveBase.js');
|
|
34
34
|
require('hotkeys-js');
|
|
35
35
|
require('remarkable');
|
|
36
|
-
var install = require('./install-
|
|
36
|
+
var install = require('./install-547d13b9.js');
|
|
37
37
|
require('./DropDown-aef75c14.js');
|
|
38
38
|
require('./Input-56eba499.js');
|
|
39
39
|
require('compute-scroll-into-view');
|
package/dist/cjs/version.js
CHANGED
package/dist/es/index.js
CHANGED
|
@@ -29,8 +29,8 @@ import 'url-search-params-polyfill';
|
|
|
29
29
|
export { default as ReactiveBase } from './ReactiveBase.js';
|
|
30
30
|
import 'hotkeys-js';
|
|
31
31
|
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-
|
|
32
|
+
import { i as install } from './install-b0a1fd33.js';
|
|
33
|
+
export { A as AIAnswer, R as ReactiveComponentPrivate, S as SearchBox, T as TreeList, i as install } from './install-b0a1fd33.js';
|
|
34
34
|
import './DropDown-39fedff8.js';
|
|
35
35
|
import './Input-11d211d2.js';
|
|
36
36
|
import 'compute-scroll-into-view';
|
|
@@ -2541,7 +2541,8 @@ var AIAnswer = defineComponent({
|
|
|
2541
2541
|
renderError: types.title,
|
|
2542
2542
|
isLoading: types.boolRequired,
|
|
2543
2543
|
sessionIdFromStore: VueTypes.string,
|
|
2544
|
-
showComponent: types.boolRequired
|
|
2544
|
+
showComponent: types.boolRequired,
|
|
2545
|
+
style: types.style
|
|
2545
2546
|
},
|
|
2546
2547
|
mounted: function mounted() {},
|
|
2547
2548
|
watch: {
|
|
@@ -2809,7 +2810,7 @@ var AIAnswer = defineComponent({
|
|
|
2809
2810
|
"tabIndex": 0,
|
|
2810
2811
|
"onClick": _this3.handleSendMessage,
|
|
2811
2812
|
"onKeyPress": _this3.handleKeyPress,
|
|
2812
|
-
"class": "
|
|
2813
|
+
"class": "ask-btn " + getClassName$2(innerClass, 'ai-enter-button'),
|
|
2813
2814
|
"disabled": _this3.isLoadingState || !_this3.AISessionId
|
|
2814
2815
|
}, {
|
|
2815
2816
|
"default": function _default() {
|
|
@@ -2873,7 +2874,10 @@ var AIAnswer = defineComponent({
|
|
|
2873
2874
|
if (!this.shouldShowComponent) {
|
|
2874
2875
|
return null;
|
|
2875
2876
|
}
|
|
2876
|
-
return createVNode(Chatbox,
|
|
2877
|
+
return createVNode(Chatbox, {
|
|
2878
|
+
"style": props.style,
|
|
2879
|
+
"class": "--ai-chat-box-wrapper"
|
|
2880
|
+
}, {
|
|
2877
2881
|
"default": function _default() {
|
|
2878
2882
|
return [_this4.$props.title && createVNode(Title, {
|
|
2879
2883
|
"class": getClassName$2(_this4.$props.innerClass, 'title') || ''
|
|
@@ -2882,6 +2886,7 @@ var AIAnswer = defineComponent({
|
|
|
2882
2886
|
return [_this4.$props.title];
|
|
2883
2887
|
}
|
|
2884
2888
|
}), createVNode(ChatContainer, {
|
|
2889
|
+
"class": "--ai-chat-container",
|
|
2885
2890
|
"theme": props.theme,
|
|
2886
2891
|
"showInput": props.showInput
|
|
2887
2892
|
}, {
|
package/dist/es/install.js
CHANGED
|
@@ -29,7 +29,7 @@ import 'url-search-params-polyfill';
|
|
|
29
29
|
import './ReactiveBase.js';
|
|
30
30
|
import 'hotkeys-js';
|
|
31
31
|
import 'remarkable';
|
|
32
|
-
export { i as default } from './install-
|
|
32
|
+
export { i as default } from './install-b0a1fd33.js';
|
|
33
33
|
import './DropDown-39fedff8.js';
|
|
34
34
|
import './Input-11d211d2.js';
|
|
35
35
|
import 'compute-scroll-into-view';
|
package/dist/es/version.js
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@appbaseio/reactivesearch-vue",
|
|
3
|
-
"version": "3.0.0-rc.6.
|
|
3
|
+
"version": "3.0.0-rc.6.3",
|
|
4
4
|
"private": false,
|
|
5
5
|
"main": "dist/cjs/index.js",
|
|
6
6
|
"jsnext:main": "dist/es/index.js",
|
|
@@ -35,7 +35,7 @@
|
|
|
35
35
|
"sideEffects": false,
|
|
36
36
|
"dependencies": {
|
|
37
37
|
"@appbaseio/analytics": "^1.2.0-alpha.1",
|
|
38
|
-
"@appbaseio/reactivecore": "10.0.0-alpha.
|
|
38
|
+
"@appbaseio/reactivecore": "10.0.0-alpha.24",
|
|
39
39
|
"@appbaseio/vue-emotion": "0.6.0-alpha.6",
|
|
40
40
|
"@emotion/css": "^11.10.5",
|
|
41
41
|
"@vue/babel-helper-vue-jsx-merge-props": "^1.0.0",
|