@appbaseio/reactivesearch-vue 3.0.0-rc.6.3 → 3.0.0-rc.6.5

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/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-547d13b9.js');
36
+ var install = require('./install-e8141489.js');
37
37
  require('./DropDown-aef75c14.js');
38
38
  require('./Input-56eba499.js');
39
39
  require('compute-scroll-into-view');
@@ -827,7 +827,7 @@ var resetCSS = function resetCSS(props) {
827
827
  // eslint-disable-next-line no-nested-ternary
828
828
  props.isSender ? props.themePreset !== 'dark' ? props.theme.colors.primaryColor : props.theme.colors.borderColor : props.theme.colors.borderColor) + ";\n\t}\n\n\tcode {\n\t\tline-height: normal;\n\n\t\tcolor: " + (
829
829
  // eslint-disable-next-line no-nested-ternary
830
- props.isSender ? props.themePreset !== 'dark' ? props.theme.colors.primaryTextColor : props.theme.colors.textColor : props.theme.colors.primaryTextColor) + ";\n\t\tborder-radius: 3px;\n\t\tfont-size: 85%;\n\t\tpadding: 0.2em 0.4em;\n\t\tmargin-top: 5px;\n\t\tdisplay: inline-block;\n\t\toverflow: auto;\n\t\twidth: fit-content;\n\t\tmax-width: 100%;\n\t}\n\tul,\n\tol {\n\t\tlist-style-position: inside;\n\n\t}\n\n\tli{\n\t\tdisplay: unset;\n\t\tcursor: default;\n\t\tpadding: initial;\n\n\t\t&:hover{\n\t\t\tbackground-color: initial;\n\t\t}\n\t}\n";
830
+ props.isSender ? props.themePreset !== 'dark' ? props.theme.colors.primaryTextColor : props.theme.colors.textColor : props.theme.colors.primaryTextColor) + ";\n\t\tborder-radius: 3px;\n\t\tfont-size: 85%;\n\t\tpadding: 0.2em 0.4em;\n\t\tmargin-top: 5px;\n\t\tdisplay: inline-block;\n\t\toverflow: auto;\n\t\twidth: fit-content;\n\t\tmax-width: 100%;\n\t}\n\tul,\n\tol {\n\t\tlist-style-position: inside;\n\t\tpadding-left: 10px;\n\n\t}\n\n\tli{\n\t\tdisplay: list-item;\n\t\tcursor: default;\n\t\tpadding: initial;\n\n\t\t&:hover{\n\t\t\tbackground-color: initial;\n\t\t}\n\t}\n\tp {\n\t\tmargin: inherit;\n\t}\n";
831
831
  };
832
832
  var messageBGColor = function messageBGColor(props) {
833
833
  var finalBGColor;
@@ -2546,6 +2546,7 @@ var AIAnswer = vue.defineComponent({
2546
2546
  isLoading: vueTypes.types.boolRequired,
2547
2547
  sessionIdFromStore: VueTypes.string,
2548
2548
  showComponent: vueTypes.types.boolRequired,
2549
+ componentError: vueTypes.types.componentObject,
2549
2550
  style: vueTypes.types.style
2550
2551
  },
2551
2552
  mounted: function mounted() {},
@@ -2572,7 +2573,7 @@ var AIAnswer = vue.defineComponent({
2572
2573
  role: constants.AI_ROLES.ASSISTANT,
2573
2574
  content: response.answer.text
2574
2575
  });
2575
- this.error = {
2576
+ if (!this.AISessionId) this.error = {
2576
2577
  message: this.errorMessageForMissingSessionId
2577
2578
  };
2578
2579
  }
@@ -2590,7 +2591,6 @@ var AIAnswer = vue.defineComponent({
2590
2591
  });
2591
2592
  },
2592
2593
  isAIResponseLoading: function isAIResponseLoading(newVal) {
2593
- this.isLoadingState = newVal;
2594
2594
  this.$emit('on-data', {
2595
2595
  data: this.messages,
2596
2596
  rawData: this.$props.rawData,
@@ -2599,7 +2599,6 @@ var AIAnswer = vue.defineComponent({
2599
2599
  });
2600
2600
  },
2601
2601
  isLoading: function isLoading(newVal) {
2602
- this.isLoadingState = newVal;
2603
2602
  this.$emit('on-data', {
2604
2603
  data: this.messages,
2605
2604
  rawData: this.$props.rawData,
@@ -2631,14 +2630,50 @@ var AIAnswer = vue.defineComponent({
2631
2630
  },
2632
2631
  messages: function messages() {
2633
2632
  this.scrollToBottom();
2633
+ },
2634
+ componentError: function componentError(newVal) {
2635
+ var _this = this;
2636
+ if (newVal && newVal._bodyBlob) {
2637
+ this.AISessionId = ((helper.getObjectFromLocalStorage(constants.AI_LOCAL_CACHE_KEY) || {})[this.$props.componentId] || {}).sessionId || null;
2638
+ if (!this.AISessionId) {
2639
+ this.generateNewSessionId();
2640
+ }
2641
+ newVal._bodyBlob.text().then(function (textData) {
2642
+ try {
2643
+ var parsedErrorRes = JSON.parse(textData);
2644
+ if (parsedErrorRes.error) {
2645
+ _this.error = parsedErrorRes.error;
2646
+ _this.$emit('on-data', {
2647
+ data: _this.messages,
2648
+ rawData: _this.$props.rawData,
2649
+ loading: _this.$props.isAIResponseLoading || _this.$props.isLoading,
2650
+ error: parsedErrorRes.error
2651
+ });
2652
+ }
2653
+ } catch (error) {
2654
+ console.error('Error parsing component error JSON:', error);
2655
+ }
2656
+ })["catch"](function (error) {
2657
+ console.error('Error reading component error text data:', error);
2658
+ });
2659
+ }
2634
2660
  }
2635
2661
  },
2636
2662
  methods: {
2663
+ generateNewSessionId: function generateNewSessionId() {
2664
+ var _this2 = this;
2665
+ var newSessionPromise = this.createAISession();
2666
+ newSessionPromise.then(function (res) {
2667
+ _this2.AISessionId = res.AIsessionId;
2668
+ })["catch"](function (e) {
2669
+ console.error(e);
2670
+ });
2671
+ },
2637
2672
  scrollToBottom: function scrollToBottom() {
2638
- var _this = this;
2673
+ var _this3 = this;
2639
2674
  this.$nextTick(function () {
2640
- var _this$$refs;
2641
- var messageContainer = (_this$$refs = _this.$refs) == null ? void 0 : _this$$refs[_this.$props.innerRef];
2675
+ var _this3$$refs;
2676
+ var messageContainer = (_this3$$refs = _this3.$refs) == null ? void 0 : _this3$$refs[_this3.$props.innerRef];
2642
2677
  if (messageContainer && messageContainer.$el) {
2643
2678
  messageContainer.$el.scrollTo({
2644
2679
  top: messageContainer.$el.scrollHeight,
@@ -2705,7 +2740,7 @@ var AIAnswer = vue.defineComponent({
2705
2740
  "class": "--ai-answer-error-container " + (helper.getClassName(this.$props.innerClass, 'ai-error') || '')
2706
2741
  }, [vue.createVNode("div", {
2707
2742
  "class": "--default-error-element"
2708
- }, [vue.createVNode("span", null, [(_this$error = this.error) != null && _this$error.message ? this.error.message : 'There was an error in generating the response.', ' ', (_this$error2 = this.error) != null && _this$error2.code ? "Code:\n\t\t\t\t\t\t\t" + this.error.code : '']), this.AISessionId && vue.createVNode(Button.Button, {
2743
+ }, [vue.createVNode("span", null, [(_this$error = this.error) != null && _this$error.message ? this.error.message : 'There was an error in generating the response.', ' ', (_this$error2 = this.error) != null && _this$error2.code ? ", Code:\n\t\t\t\t\t\t\t" + this.error.code : '']), this.AISessionId && vue.createVNode(Button.Button, {
2709
2744
  "primary": true,
2710
2745
  "onClick": this.handleRetryRequest
2711
2746
  }, {
@@ -2717,6 +2752,7 @@ var AIAnswer = vue.defineComponent({
2717
2752
  return null;
2718
2753
  },
2719
2754
  handleKeyPress: function handleKeyPress(e) {
2755
+ window.console.log('e', e);
2720
2756
  if (e.key === 'Enter') {
2721
2757
  this.handleSendMessage(e);
2722
2758
  this.inputMessage = '';
@@ -2755,7 +2791,7 @@ var AIAnswer = vue.defineComponent({
2755
2791
  }
2756
2792
  },
2757
2793
  renderIcons: function renderIcons() {
2758
- var _this2 = this;
2794
+ var _this4 = this;
2759
2795
  var _slot, _slot2;
2760
2796
  var _this$$props = this.$props,
2761
2797
  getMicInstance = _this$$props.getMicInstance,
@@ -2769,12 +2805,12 @@ var AIAnswer = vue.defineComponent({
2769
2805
  "positionType": "absolute"
2770
2806
  }, {
2771
2807
  "default": function _default() {
2772
- return [!_this2.isLoadingState && _this2.AISessionId && _this2.shouldMicRender(showVoiceInput) && vue.createVNode(Mic, {
2808
+ return [!_this4.isLoadingState && _this4.AISessionId && _this4.shouldMicRender(showVoiceInput) && vue.createVNode(Mic, {
2773
2809
  "getInstance": getMicInstance,
2774
2810
  "render": renderMic,
2775
- "handleResult": _this2.handleVoiceResults,
2811
+ "handleResult": _this4.handleVoiceResults,
2776
2812
  "class": helper.getClassName(innerClass, 'ai-search-mic') || null
2777
- }, null), iconPosition === 'right' && vue.createVNode(DropDown.IconWrapper, null, _isSlot$1(_slot = _this2.renderIcon()) ? _slot : {
2813
+ }, null), iconPosition === 'right' && vue.createVNode(DropDown.IconWrapper, null, _isSlot$1(_slot = _this4.renderIcon()) ? _slot : {
2778
2814
  "default": function _default() {
2779
2815
  return [_slot];
2780
2816
  }
@@ -2786,7 +2822,7 @@ var AIAnswer = vue.defineComponent({
2786
2822
  "positionType": "absolute"
2787
2823
  }, {
2788
2824
  "default": function _default() {
2789
- return [iconPosition === 'left' && vue.createVNode(DropDown.IconWrapper, null, _isSlot$1(_slot2 = _this2.renderIcon()) ? _slot2 : {
2825
+ return [iconPosition === 'left' && vue.createVNode(DropDown.IconWrapper, null, _isSlot$1(_slot2 = _this4.renderIcon()) ? _slot2 : {
2790
2826
  "default": function _default() {
2791
2827
  return [_slot2];
2792
2828
  }
@@ -2798,7 +2834,7 @@ var AIAnswer = vue.defineComponent({
2798
2834
  this.handleSendMessage(e);
2799
2835
  },
2800
2836
  renderEnterButtonElement: function renderEnterButtonElement() {
2801
- var _this3 = this;
2837
+ var _this5 = this;
2802
2838
  var _this$$props2 = this.$props,
2803
2839
  enterButton = _this$$props2.enterButton,
2804
2840
  innerClass = _this$$props2.innerClass;
@@ -2806,16 +2842,16 @@ var AIAnswer = vue.defineComponent({
2806
2842
  if (enterButton) {
2807
2843
  var getEnterButtonMarkup = function getEnterButtonMarkup() {
2808
2844
  if (renderEnterButton) {
2809
- return renderEnterButton(_this3.enterButtonOnClick);
2845
+ return renderEnterButton(_this5.enterButtonOnClick);
2810
2846
  }
2811
2847
  return vue.createVNode(SendButton, {
2812
2848
  "primary": true,
2813
2849
  "type": "submit",
2814
2850
  "tabIndex": 0,
2815
- "onClick": _this3.handleSendMessage,
2816
- "onKeyPress": _this3.handleKeyPress,
2851
+ "onClick": _this5.handleSendMessage,
2852
+ "onKeyPress": _this5.handleKeyPress,
2817
2853
  "class": "ask-btn " + helper.getClassName(innerClass, 'ai-enter-button'),
2818
- "disabled": _this3.isLoadingState || !_this3.AISessionId
2854
+ "disabled": _this5.isLoadingState || !_this5.AISessionId
2819
2855
  }, {
2820
2856
  "default": function _default() {
2821
2857
  return [vue.createTextVNode("Send")];
@@ -2838,10 +2874,10 @@ var AIAnswer = vue.defineComponent({
2838
2874
  return index.getComponent(data, this);
2839
2875
  },
2840
2876
  handleTextAreaHeightChange: function handleTextAreaHeightChange() {
2841
- var _this$$refs2, _this$$refs2$_inputRe, _this$$refs3, _this$$refs3$_inputWr, _this$$refs4;
2842
- var textArea = (_this$$refs2 = this.$refs) == null ? void 0 : (_this$$refs2$_inputRe = _this$$refs2[_inputRef]) == null ? void 0 : _this$$refs2$_inputRe.$el;
2843
- var inputWrapper = (_this$$refs3 = this.$refs) == null ? void 0 : (_this$$refs3$_inputWr = _this$$refs3[_inputWrapperRef]) == null ? void 0 : _this$$refs3$_inputWr.$el;
2844
- var errorContainer = (_this$$refs4 = this.$refs) == null ? void 0 : _this$$refs4[_errorContainerRef];
2877
+ var _this$$refs, _this$$refs$_inputRef, _this$$refs2, _this$$refs2$_inputWr, _this$$refs3;
2878
+ var textArea = (_this$$refs = this.$refs) == null ? void 0 : (_this$$refs$_inputRef = _this$$refs[_inputRef]) == null ? void 0 : _this$$refs$_inputRef.$el;
2879
+ var inputWrapper = (_this$$refs2 = this.$refs) == null ? void 0 : (_this$$refs2$_inputWr = _this$$refs2[_inputWrapperRef]) == null ? void 0 : _this$$refs2$_inputWr.$el;
2880
+ var errorContainer = (_this$$refs3 = this.$refs) == null ? void 0 : _this$$refs3[_errorContainerRef];
2845
2881
  if (textArea) {
2846
2882
  textArea.style.height = '42px';
2847
2883
  var lineHeight = parseInt(getComputedStyle(textArea).lineHeight, 10);
@@ -2873,21 +2909,20 @@ var AIAnswer = vue.defineComponent({
2873
2909
  },
2874
2910
  render: function render() {
2875
2911
  var _slot3;
2876
- var _this4 = this;
2912
+ var _this6 = this;
2877
2913
  var props = this.$props;
2878
2914
  if (!this.shouldShowComponent) {
2879
2915
  return null;
2880
2916
  }
2881
2917
  return vue.createVNode(Chatbox, {
2882
- "style": props.style,
2883
- "class": "--ai-chat-box-wrapper"
2918
+ "style": props.style || {}
2884
2919
  }, {
2885
2920
  "default": function _default() {
2886
- return [_this4.$props.title && vue.createVNode(Title.Title, {
2887
- "class": helper.getClassName(_this4.$props.innerClass, 'title') || ''
2921
+ return [_this6.$props.title && vue.createVNode(Title.Title, {
2922
+ "class": helper.getClassName(_this6.$props.innerClass, 'title') || ''
2888
2923
  }, {
2889
2924
  "default": function _default() {
2890
- return [_this4.$props.title];
2925
+ return [_this6.$props.title];
2891
2926
  }
2892
2927
  }), vue.createVNode(ChatContainer, {
2893
2928
  "class": "--ai-chat-container",
@@ -2895,33 +2930,33 @@ var AIAnswer = vue.defineComponent({
2895
2930
  "showInput": props.showInput
2896
2931
  }, {
2897
2932
  "default": function _default() {
2898
- return [_this4.hasCustomRenderer && vue.createVNode(MessagesContainer, {
2899
- "themePreset": _this4.themePreset,
2933
+ return [_this6.hasCustomRenderer && vue.createVNode(MessagesContainer, {
2934
+ "themePreset": _this6.themePreset,
2900
2935
  "theme": props.theme,
2901
- "ref": _this4.$props.innerRef,
2936
+ "ref": _this6.$props.innerRef,
2902
2937
  "class": "--ai-message-container " + (helper.getClassName(props.innerClass, 'ai-message-container') || '')
2903
- }, _isSlot$1(_slot3 = _this4.getComponent()) ? _slot3 : {
2938
+ }, _isSlot$1(_slot3 = _this6.getComponent()) ? _slot3 : {
2904
2939
  "default": function _default() {
2905
2940
  return [_slot3];
2906
2941
  }
2907
- }), !_this4.hasCustomRenderer && vue.createVNode(MessagesContainer, {
2908
- "themePreset": _this4.themePreset,
2942
+ }), !_this6.hasCustomRenderer && vue.createVNode(MessagesContainer, {
2943
+ "themePreset": _this6.themePreset,
2909
2944
  "theme": props.theme,
2910
- "ref": _this4.$props.innerRef,
2945
+ "ref": _this6.$props.innerRef,
2911
2946
  "class": "--ai-message-container " + (helper.getClassName(props.innerClass, 'ai-message-container') || '')
2912
2947
  }, {
2913
2948
  "default": function _default() {
2914
- return [_this4.messages.map(function (message, index) {
2949
+ return [_this6.messages.map(function (message, index) {
2915
2950
  return vue.createVNode(Message, {
2916
2951
  "key": index,
2917
2952
  "isSender": message.role === constants.AI_ROLES.USER,
2918
2953
  "innerHTML": md$1.render(message.content),
2919
- "themePreset": _this4.themePreset,
2954
+ "themePreset": _this6.themePreset,
2920
2955
  "theme": props.theme,
2921
2956
  "class": "--ai-answer-message " + (helper.getClassName(props.innerClass, 'ai-message') || '')
2922
2957
  }, null);
2923
- }), _this4.isLoadingState && vue.createVNode(Message, {
2924
- "themePreset": _this4.themePreset,
2958
+ }), _this6.isLoadingState && vue.createVNode(Message, {
2959
+ "themePreset": _this6.themePreset,
2925
2960
  "theme": props.theme,
2926
2961
  "isSender": false,
2927
2962
  "class": "--ai-answer-message " + (helper.getClassName(props.innerClass, 'ai-message') || null)
@@ -2930,31 +2965,31 @@ var AIAnswer = vue.defineComponent({
2930
2965
  return [vue.createVNode(TypingIndicator, null, {
2931
2966
  "default": function _default() {
2932
2967
  return [vue.createVNode(TypingDot, {
2933
- "themePreset": _this4.themePreset
2968
+ "themePreset": _this6.themePreset
2934
2969
  }, null), vue.createVNode(TypingDot, {
2935
- "themePreset": _this4.themePreset
2970
+ "themePreset": _this6.themePreset
2936
2971
  }, null), vue.createVNode(TypingDot, {
2937
- "themePreset": _this4.themePreset
2972
+ "themePreset": _this6.themePreset
2938
2973
  }, null)];
2939
2974
  }
2940
2975
  })];
2941
2976
  }
2942
2977
  })];
2943
2978
  }
2944
- }), _this4.renderErrorComponent(), ' ', props.showFeedback && vue.createVNode("div", {
2979
+ }), _this6.renderErrorComponent(), ' ', props.showFeedback && vue.createVNode("div", {
2945
2980
  "class": "--ai-answer-feedback-container " + (helper.getClassName(props.innerClass, 'ai-feedback') || '')
2946
2981
  }, [vue.createVNode(AIFeedback, {
2947
- "hideUI": _this4.isLoadingState || !_this4.sessionId,
2948
- "key": _this4.sessionId,
2982
+ "hideUI": _this6.isLoadingState || !_this6.sessionId,
2983
+ "key": _this6.sessionId,
2949
2984
  "onFeedbackSubmit": function onFeedbackSubmit(useful, reason) {
2950
- _this4.trackUsefullness(_this4.sessionId, {
2985
+ _this6.trackUsefullness(_this6.sessionId, {
2951
2986
  useful: useful,
2952
2987
  reason: reason
2953
2988
  });
2954
2989
  }
2955
2990
  }, null)]), props.showInput && vue.createVNode(MessageInputContainer, {
2956
2991
  "class": "--ai-input-container",
2957
- "onSubmit": _this4.handleSendMessage
2992
+ "onSubmit": _this6.handleSendMessage
2958
2993
  }, {
2959
2994
  "default": function _default() {
2960
2995
  return [vue.createVNode(InputGroup, {
@@ -2968,23 +3003,21 @@ var AIAnswer = vue.defineComponent({
2968
3003
  "default": function _default() {
2969
3004
  return [vue.createVNode(MessageInput, {
2970
3005
  "ref": _inputRef,
2971
- "type": "text",
2972
3006
  "placeholder": props.placeholder,
2973
3007
  "enterButton": props.enterButton,
2974
- "value": _this4.inputMessage,
2975
- "onInput": _this4.handleMessageInputChange,
2976
- "onKeyPress": _this4.handleKeyPress,
3008
+ "value": _this6.inputMessage,
3009
+ "onInput": _this6.handleMessageInputChange,
2977
3010
  "id": props.componentId + "-ai-input",
2978
3011
  "showIcon": props.showIcon,
2979
3012
  "iconPosition": props.iconPosition,
2980
- "themePreset": _this4.themePreset,
2981
- "disabled": _this4.isLoadingState || !_this4.AISessionId,
3013
+ "themePreset": _this6.themePreset,
3014
+ "disabled": _this6.isLoadingState || !_this6.AISessionId,
2982
3015
  "class": helper.getClassName(props.innerClass, 'ai-input') || null
2983
- }, null), ' ', _this4.renderIcons()];
3016
+ }, null), ' ', _this6.renderIcons()];
2984
3017
  }
2985
3018
  })];
2986
3019
  }
2987
- }), _this4.renderEnterButtonElement()];
3020
+ }), _this6.renderEnterButtonElement()];
2988
3021
  }
2989
3022
  }), ' '];
2990
3023
  }
@@ -3011,12 +3044,14 @@ var mapStateToProps$1 = function mapStateToProps(state, props) {
3011
3044
  rawData: state.rawData[props.componentId],
3012
3045
  themePreset: state.config.themePreset,
3013
3046
  isLoading: state.isLoading[props.componentId] || false,
3014
- sessionIdFromStore: state.AIResponses[props.componentId] && state.AIResponses[props.componentId].response && state.AIResponses[props.componentId].response.sessionId || ''
3047
+ sessionIdFromStore: state.AIResponses[props.componentId] && state.AIResponses[props.componentId].response && state.AIResponses[props.componentId].response.sessionId || '',
3048
+ componentError: state.error[props.componentId]
3015
3049
  };
3016
3050
  };
3017
3051
  var mapDispatchToProps$1 = {
3018
3052
  getAIResponse: query.fetchAIResponse,
3019
- trackUsefullness: analytics.recordAISessionUsefulness
3053
+ trackUsefullness: analytics.recordAISessionUsefulness,
3054
+ createAISession: query.createAISession
3020
3055
  };
3021
3056
  var AIConnected = PreferencesConsumer.PreferencesConsumer(ComponentWrapper.ComponentWrapper(index.connect(mapStateToProps$1, mapDispatchToProps$1)(AIAnswer), {
3022
3057
  componentType: constants.componentTypes.AIAnswer,
@@ -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-547d13b9.js');
36
+ var install = require('./install-e8141489.js');
37
37
  require('./DropDown-aef75c14.js');
38
38
  require('./Input-56eba499.js');
39
39
  require('compute-scroll-into-view');
@@ -2,6 +2,6 @@
2
2
 
3
3
  Object.defineProperty(exports, '__esModule', { value: true });
4
4
 
5
- var version = "3.0.0-rc.6.3";
5
+ var version = "3.0.0-rc.6.5";
6
6
 
7
7
  exports.default = version;
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-b0a1fd33.js';
33
- export { A as AIAnswer, R as ReactiveComponentPrivate, S as SearchBox, T as TreeList, i as install } from './install-b0a1fd33.js';
32
+ import { i as install } from './install-b785dd55.js';
33
+ export { A as AIAnswer, R as ReactiveComponentPrivate, S as SearchBox, T as TreeList, i as install } from './install-b785dd55.js';
34
34
  import './DropDown-39fedff8.js';
35
35
  import './Input-11d211d2.js';
36
36
  import 'compute-scroll-into-view';