@kg-ui/kg-ui 0.0.17 → 0.0.20

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.
@@ -3893,7 +3893,7 @@ const getReport = param => {
3893
3893
  method = 'POST'
3894
3894
  } = param;
3895
3895
  const headers = Object.assign({
3896
- 'Content-Type': 'application/json'
3896
+ "Content-Type": "application/json"
3897
3897
  }, param.headers || {});
3898
3898
  fetchEventSource(param.sendUrl, {
3899
3899
  method,
@@ -4297,6 +4297,8 @@ const actions = {
4297
4297
  }
4298
4298
  if ('err' in chatgptAnalysisResult.data) {
4299
4299
  dispatch('sendChatgptMsg', willSendMsg);
4300
+ state.currentPluginParams = {};
4301
+ state.currentUsePlugin = {};
4300
4302
  return;
4301
4303
  }
4302
4304
  state.currentPluginParams = chatgptAnalysisResult.data.param;
@@ -4305,7 +4307,6 @@ const actions = {
4305
4307
  },
4306
4308
  sendChatgptMsg({
4307
4309
  state,
4308
- commit,
4309
4310
  dispatch
4310
4311
  }, willSendMsg) {
4311
4312
  state.defaultDeal.requestParameFn = state.defaultDeal.requestParameFn ? state.defaultDeal.requestParameFn : config => config;
@@ -4317,10 +4318,38 @@ const actions = {
4317
4318
  data: {},
4318
4319
  headers: {}
4319
4320
  });
4321
+ if (state.defaultDeal.isSse === undefined) {
4322
+ state.defaultDeal.isSse = true;
4323
+ }
4324
+ if (state.defaultDeal.isSse) {
4325
+ dispatch('defaultSseDeal', {
4326
+ data,
4327
+ headers
4328
+ });
4329
+ return;
4330
+ }
4331
+ dispatch('defaultXhrDeal', {
4332
+ data,
4333
+ headers
4334
+ });
4335
+ },
4336
+ sendPluginMsg({
4337
+ state,
4338
+ commit,
4339
+ dispatch
4340
+ }) {
4341
+ state.currentUsePlugin.requestParameFn = state.currentUsePlugin.requestParameFn ? state.currentUsePlugin.requestParameFn : config => config;
4342
+ const {
4343
+ data,
4344
+ headers
4345
+ } = state.currentUsePlugin.requestParameFn({
4346
+ data: state.currentPluginParams,
4347
+ headers: {}
4348
+ });
4320
4349
  commit('setRequestSseing', true);
4321
4350
  commit('setCancelsse', getReport({
4322
- sendUrl: state.defaultDeal.url,
4323
- method: state.defaultDeal.method,
4351
+ sendUrl: state.currentUsePlugin.url,
4352
+ method: state.currentUsePlugin.method,
4324
4353
  data,
4325
4354
  headers,
4326
4355
  onerror: () => {
@@ -4335,7 +4364,7 @@ const actions = {
4335
4364
  type,
4336
4365
  content,
4337
4366
  isOver
4338
- } = state.defaultDeal.responseParameFn(msg);
4367
+ } = state.currentUsePlugin.responseParameFn(msg);
4339
4368
  commit('responseMsg', {
4340
4369
  type,
4341
4370
  content
@@ -4347,56 +4376,86 @@ const actions = {
4347
4376
  },
4348
4377
  onclose: () => {
4349
4378
  dispatch('sseRequestOver');
4350
- state.defaultDeal.onclose && state.defaultDeal.onclose();
4379
+ state.currentUsePlugin.onclose && state.currentUsePlugin.onclose();
4351
4380
  }
4352
4381
  }));
4353
4382
  },
4354
- sendPluginMsg({
4383
+ defaultSseDeal({
4355
4384
  state,
4356
- commit,
4357
- dispatch
4385
+ commit
4386
+ }, {
4387
+ data,
4388
+ headers
4358
4389
  }) {
4359
- state.currentUsePlugin.requestParameFn = state.currentUsePlugin.requestParameFn ? state.currentUsePlugin.requestParameFn : config => config;
4360
- const {
4361
- data,
4362
- headers
4363
- } = state.currentUsePlugin.requestParameFn({
4364
- data: state.currentPluginParams,
4365
- headers: {}
4366
- });
4367
4390
  commit('setRequestSseing', true);
4368
- commit('setCancelsse', getReport({
4369
- sendUrl: state.currentUsePlugin.url,
4370
- method: state.currentUsePlugin.method,
4371
- data,
4391
+ state.cancelsse = getReport({
4392
+ sendUrl: state.defaultDeal.url,
4393
+ method: state.defaultDeal.method,
4372
4394
  headers,
4395
+ data,
4373
4396
  onerror: () => {
4374
4397
  commit('responseMsg', {
4375
4398
  type: DataType.text,
4376
4399
  content: '联网异常'
4377
4400
  });
4378
- dispatch('sseRequestOver');
4401
+ commit('setRequestSseing', false);
4402
+ state.cancelsse();
4379
4403
  },
4380
4404
  onmessage: msg => {
4381
4405
  const {
4382
4406
  type,
4383
4407
  content,
4384
4408
  isOver
4385
- } = state.currentUsePlugin.responseParameFn(msg);
4409
+ } = state.defaultDeal.responseParameFn(msg);
4386
4410
  commit('responseMsg', {
4387
4411
  type,
4388
4412
  content
4389
4413
  });
4390
4414
  if (isOver) {
4391
- dispatch('sseRequestOver');
4415
+ commit('setRequestSseing', false);
4416
+ state.cancelsse();
4392
4417
  return;
4393
4418
  }
4394
4419
  },
4395
4420
  onclose: () => {
4396
- dispatch('sseRequestOver');
4397
- state.currentUsePlugin.onclose && state.currentUsePlugin.onclose();
4421
+ commit('setRequestSseing', false);
4422
+ state.cancelsse();
4423
+ state.defaultDeal.onclose && state.defaultDeal.onclose();
4398
4424
  }
4399
- }));
4425
+ });
4426
+ },
4427
+ defaultXhrDeal({
4428
+ commit,
4429
+ state
4430
+ }, {
4431
+ data,
4432
+ headers
4433
+ }) {
4434
+ state.cancleUrl = state.defaultDeal.url;
4435
+ const {
4436
+ method = 'post'
4437
+ } = state.defaultDeal;
4438
+ http.request('post', state.defaultDeal.url, {
4439
+ data,
4440
+ headers,
4441
+ method
4442
+ }).then(res => {
4443
+ const {
4444
+ type,
4445
+ content,
4446
+ isOver
4447
+ } = state.defaultDeal.responseParameFn(res);
4448
+ commit('responseMsg', {
4449
+ type,
4450
+ content
4451
+ });
4452
+ if (isOver) {
4453
+ http.cancelByUrl(state.cancleUrl);
4454
+ return;
4455
+ }
4456
+ }).catch(() => {
4457
+ commit('setSendLonding', false);
4458
+ });
4400
4459
  },
4401
4460
  sseRequestOver({
4402
4461
  commit,
@@ -5226,6 +5285,13 @@ module.exports = function (it) {
5226
5285
  };
5227
5286
 
5228
5287
 
5288
+ /***/ }),
5289
+
5290
+ /***/ "1f2c":
5291
+ /***/ (function(module, exports, __webpack_require__) {
5292
+
5293
+ // extracted by mini-css-extract-plugin
5294
+
5229
5295
  /***/ }),
5230
5296
 
5231
5297
  /***/ "1fe5":
@@ -5655,6 +5721,17 @@ exports.f = Object.getOwnPropertyNames || function getOwnPropertyNames(O) {
5655
5721
  };
5656
5722
 
5657
5723
 
5724
+ /***/ }),
5725
+
5726
+ /***/ "26cc":
5727
+ /***/ (function(module, __webpack_exports__, __webpack_require__) {
5728
+
5729
+ "use strict";
5730
+ /* harmony import */ var _node_modules_mini_css_extract_plugin_dist_loader_js_ref_8_oneOf_1_0_node_modules_css_loader_dist_cjs_js_ref_8_oneOf_1_1_node_modules_vue_loader_lib_loaders_stylePostLoader_js_node_modules_postcss_loader_src_index_js_ref_8_oneOf_1_2_node_modules_sass_loader_lib_loader_js_ref_8_oneOf_1_3_node_modules_cache_loader_dist_cjs_js_ref_0_0_node_modules_vue_loader_lib_index_js_vue_loader_options_edit_vue_vue_type_style_index_0_id_ecb8431a_prod_scoped_true_lang_scss__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__("1f2c");
5731
+ /* harmony import */ var _node_modules_mini_css_extract_plugin_dist_loader_js_ref_8_oneOf_1_0_node_modules_css_loader_dist_cjs_js_ref_8_oneOf_1_1_node_modules_vue_loader_lib_loaders_stylePostLoader_js_node_modules_postcss_loader_src_index_js_ref_8_oneOf_1_2_node_modules_sass_loader_lib_loader_js_ref_8_oneOf_1_3_node_modules_cache_loader_dist_cjs_js_ref_0_0_node_modules_vue_loader_lib_index_js_vue_loader_options_edit_vue_vue_type_style_index_0_id_ecb8431a_prod_scoped_true_lang_scss__WEBPACK_IMPORTED_MODULE_0___default = /*#__PURE__*/__webpack_require__.n(_node_modules_mini_css_extract_plugin_dist_loader_js_ref_8_oneOf_1_0_node_modules_css_loader_dist_cjs_js_ref_8_oneOf_1_1_node_modules_vue_loader_lib_loaders_stylePostLoader_js_node_modules_postcss_loader_src_index_js_ref_8_oneOf_1_2_node_modules_sass_loader_lib_loader_js_ref_8_oneOf_1_3_node_modules_cache_loader_dist_cjs_js_ref_0_0_node_modules_vue_loader_lib_index_js_vue_loader_options_edit_vue_vue_type_style_index_0_id_ecb8431a_prod_scoped_true_lang_scss__WEBPACK_IMPORTED_MODULE_0__);
5732
+ /* unused harmony reexport * */
5733
+
5734
+
5658
5735
  /***/ }),
5659
5736
 
5660
5737
  /***/ "27d5":
@@ -7398,6 +7475,17 @@ module.exports = typeof Reflect == 'object' && Reflect.apply || (NATIVE_BIND ? c
7398
7475
  });
7399
7476
 
7400
7477
 
7478
+ /***/ }),
7479
+
7480
+ /***/ "2ba9":
7481
+ /***/ (function(module, __webpack_exports__, __webpack_require__) {
7482
+
7483
+ "use strict";
7484
+ /* harmony import */ var _node_modules_mini_css_extract_plugin_dist_loader_js_ref_8_oneOf_1_0_node_modules_css_loader_dist_cjs_js_ref_8_oneOf_1_1_node_modules_vue_loader_lib_loaders_stylePostLoader_js_node_modules_postcss_loader_src_index_js_ref_8_oneOf_1_2_node_modules_sass_loader_lib_loader_js_ref_8_oneOf_1_3_node_modules_cache_loader_dist_cjs_js_ref_0_0_node_modules_vue_loader_lib_index_js_vue_loader_options_main_vue_vue_type_style_index_0_id_566d1286_prod_scoped_true_lang_scss__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__("c7f7");
7485
+ /* harmony import */ var _node_modules_mini_css_extract_plugin_dist_loader_js_ref_8_oneOf_1_0_node_modules_css_loader_dist_cjs_js_ref_8_oneOf_1_1_node_modules_vue_loader_lib_loaders_stylePostLoader_js_node_modules_postcss_loader_src_index_js_ref_8_oneOf_1_2_node_modules_sass_loader_lib_loader_js_ref_8_oneOf_1_3_node_modules_cache_loader_dist_cjs_js_ref_0_0_node_modules_vue_loader_lib_index_js_vue_loader_options_main_vue_vue_type_style_index_0_id_566d1286_prod_scoped_true_lang_scss__WEBPACK_IMPORTED_MODULE_0___default = /*#__PURE__*/__webpack_require__.n(_node_modules_mini_css_extract_plugin_dist_loader_js_ref_8_oneOf_1_0_node_modules_css_loader_dist_cjs_js_ref_8_oneOf_1_1_node_modules_vue_loader_lib_loaders_stylePostLoader_js_node_modules_postcss_loader_src_index_js_ref_8_oneOf_1_2_node_modules_sass_loader_lib_loader_js_ref_8_oneOf_1_3_node_modules_cache_loader_dist_cjs_js_ref_0_0_node_modules_vue_loader_lib_index_js_vue_loader_options_main_vue_vue_type_style_index_0_id_566d1286_prod_scoped_true_lang_scss__WEBPACK_IMPORTED_MODULE_0__);
7486
+ /* unused harmony reexport * */
7487
+
7488
+
7401
7489
  /***/ }),
7402
7490
 
7403
7491
  /***/ "2d00":
@@ -9034,13 +9122,6 @@ module.exports = java;
9034
9122
  module.exports = typeof navigator != 'undefined' && String(navigator.userAgent) || '';
9035
9123
 
9036
9124
 
9037
- /***/ }),
9038
-
9039
- /***/ "3486":
9040
- /***/ (function(module, exports, __webpack_require__) {
9041
-
9042
- // extracted by mini-css-extract-plugin
9043
-
9044
9125
  /***/ }),
9045
9126
 
9046
9127
  /***/ "3511":
@@ -15502,17 +15583,6 @@ webpackContext.resolve = webpackContextResolve;
15502
15583
  module.exports = webpackContext;
15503
15584
  webpackContext.id = "7d1c";
15504
15585
 
15505
- /***/ }),
15506
-
15507
- /***/ "802d":
15508
- /***/ (function(module, __webpack_exports__, __webpack_require__) {
15509
-
15510
- "use strict";
15511
- /* harmony import */ var _node_modules_mini_css_extract_plugin_dist_loader_js_ref_8_oneOf_1_0_node_modules_css_loader_dist_cjs_js_ref_8_oneOf_1_1_node_modules_vue_loader_lib_loaders_stylePostLoader_js_node_modules_postcss_loader_src_index_js_ref_8_oneOf_1_2_node_modules_sass_loader_lib_loader_js_ref_8_oneOf_1_3_node_modules_cache_loader_dist_cjs_js_ref_0_0_node_modules_vue_loader_lib_index_js_vue_loader_options_main_vue_vue_type_style_index_0_id_22b4bd89_prod_scoped_true_lang_scss__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__("e098");
15512
- /* harmony import */ var _node_modules_mini_css_extract_plugin_dist_loader_js_ref_8_oneOf_1_0_node_modules_css_loader_dist_cjs_js_ref_8_oneOf_1_1_node_modules_vue_loader_lib_loaders_stylePostLoader_js_node_modules_postcss_loader_src_index_js_ref_8_oneOf_1_2_node_modules_sass_loader_lib_loader_js_ref_8_oneOf_1_3_node_modules_cache_loader_dist_cjs_js_ref_0_0_node_modules_vue_loader_lib_index_js_vue_loader_options_main_vue_vue_type_style_index_0_id_22b4bd89_prod_scoped_true_lang_scss__WEBPACK_IMPORTED_MODULE_0___default = /*#__PURE__*/__webpack_require__.n(_node_modules_mini_css_extract_plugin_dist_loader_js_ref_8_oneOf_1_0_node_modules_css_loader_dist_cjs_js_ref_8_oneOf_1_1_node_modules_vue_loader_lib_loaders_stylePostLoader_js_node_modules_postcss_loader_src_index_js_ref_8_oneOf_1_2_node_modules_sass_loader_lib_loader_js_ref_8_oneOf_1_3_node_modules_cache_loader_dist_cjs_js_ref_0_0_node_modules_vue_loader_lib_index_js_vue_loader_options_main_vue_vue_type_style_index_0_id_22b4bd89_prod_scoped_true_lang_scss__WEBPACK_IMPORTED_MODULE_0__);
15513
- /* unused harmony reexport * */
15514
-
15515
-
15516
15586
  /***/ }),
15517
15587
 
15518
15588
  /***/ "825a":
@@ -16159,6 +16229,13 @@ __webpack_require__.r(__webpack_exports__);
16159
16229
 
16160
16230
  /***/ }),
16161
16231
 
16232
+ /***/ "84ab":
16233
+ /***/ (function(module, exports, __webpack_require__) {
16234
+
16235
+ // extracted by mini-css-extract-plugin
16236
+
16237
+ /***/ }),
16238
+
16162
16239
  /***/ "861d":
16163
16240
  /***/ (function(module, exports, __webpack_require__) {
16164
16241
 
@@ -17287,21 +17364,21 @@ exports.f = DESCRIPTORS ? V8_PROTOTYPE_DEFINE_BUG ? function defineProperty(O, P
17287
17364
  // ESM COMPAT FLAG
17288
17365
  __webpack_require__.r(__webpack_exports__);
17289
17366
 
17290
- // CONCATENATED MODULE: ./node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"3148f825-vue-loader-template"}!./node_modules/vue-loader/lib/loaders/templateLoader.js??ref--5!./node_modules/cache-loader/dist/cjs.js??ref--0-0!./node_modules/vue-loader/lib??vue-loader-options!./packages/know_ui_v2/components/KgCopilot/main.vue?vue&type=template&id=22b4bd89&scoped=true
17367
+ // CONCATENATED MODULE: ./node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"3148f825-vue-loader-template"}!./node_modules/vue-loader/lib/loaders/templateLoader.js??ref--5!./node_modules/cache-loader/dist/cjs.js??ref--0-0!./node_modules/vue-loader/lib??vue-loader-options!./packages/know_ui_v2/components/KgCopilot/main.vue?vue&type=template&id=566d1286&scoped=true
17291
17368
  var render = function render(){var _vm=this,_c=_vm._self._c;return _c('div',{staticClass:"wrap",staticStyle:{"height":"100%"}},[_c('div',{staticClass:"copilot-box"},[_c('Dialogue',{scopedSlots:_vm._u([_vm._l((_vm.$slots),function(item,key){return {key:key,fn:function(){return [_vm._t(key)]},proxy:true}})],null,true)}),_c('div',{staticClass:"copilot-bottom-box"},[_c('CopiFooter')],1)],1)])
17292
17369
  }
17293
17370
  var staticRenderFns = []
17294
17371
 
17295
17372
 
17296
- // CONCATENATED MODULE: ./packages/know_ui_v2/components/KgCopilot/main.vue?vue&type=template&id=22b4bd89&scoped=true
17373
+ // CONCATENATED MODULE: ./packages/know_ui_v2/components/KgCopilot/main.vue?vue&type=template&id=566d1286&scoped=true
17297
17374
 
17298
- // CONCATENATED MODULE: ./node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"3148f825-vue-loader-template"}!./node_modules/vue-loader/lib/loaders/templateLoader.js??ref--5!./node_modules/cache-loader/dist/cjs.js??ref--0-0!./node_modules/vue-loader/lib??vue-loader-options!./packages/know_ui_v2/components/KgCopilot/dialogue/index.vue?vue&type=template&id=11be81bb&scoped=true
17299
- var dialoguevue_type_template_id_11be81bb_scoped_true_render = function render(){var _vm=this,_c=_vm._self._c;return _c('div',{ref:"messageBox",staticClass:"message-box"},[_vm._l((_vm.msgList),function(item,index){return _c('div',{key:item.uuid + '' + index,staticClass:"message-group"},[_c('div',{staticClass:"msg-head"},[(item.isSend)?_c('UserHead'):_c('AnswerHead',{scopedSlots:_vm._u([{key:"avatar",fn:function(){return [_vm._t("avatar")]},proxy:true}],null,true)})],1),_c('div',{class:{ 'msg-content': true, 'response-content': !item.isSend }},[(!item.isSend && item.plusName)?_c('div',{staticClass:"msg-plus mb-1"},[_c('div',[_vm._v(" 使用: "),_c('span',[_vm._v(_vm._s(item.plusName.replace(/,/g, ' ')))])])]):_vm._e(),_c('MessageParse',{attrs:{"msgs":item.msgs,"isPrinting":item.needPrinting,"scrollToBottom":_vm.scrollToBottom},on:{"printOk":_vm.printOk,"update:isPrinting":function($event){return _vm.$set(item, "needPrinting", $event)},"update:is-printing":function($event){return _vm.$set(item, "needPrinting", $event)}}}),(!item.isSend && !item.needPrinting && item.showOpt)?_c('div',{staticClass:"icon-operates"},[_c('div',{staticClass:"icon-item",attrs:{"title":"点赞"}},[_c('Like')],1),_c('div',{staticClass:"icon-item",attrs:{"title":"不喜欢"}},[_c('Notlike')],1),_c('div',{staticClass:"icon-item",attrs:{"title":"复制"}},[_c('Copy')],1),_c('div',{staticClass:"icon-item",attrs:{"title":"导出"}},[_c('Download')],1),_c('div',{staticClass:"icon-item",attrs:{"title":"播放"}},[_c('Speaker')],1)]):_vm._e()],1)])}),_c('div',{directives:[{name:"show",rawName:"v-show",value:(_vm.stopDialogue),expression:"stopDialogue"}],staticClass:"stop-dialogue"},[_c('div',{staticClass:"gray-line"}),_c('div',{staticClass:"title"},[_vm._v("很抱歉,此对话已达到其限制。让我们开始新的聊天。")]),_c('div',{staticClass:"gray-line"})])],2)
17375
+ // CONCATENATED MODULE: ./node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"3148f825-vue-loader-template"}!./node_modules/vue-loader/lib/loaders/templateLoader.js??ref--5!./node_modules/cache-loader/dist/cjs.js??ref--0-0!./node_modules/vue-loader/lib??vue-loader-options!./packages/know_ui_v2/components/KgCopilot/dialogue/index.vue?vue&type=template&id=675bfbc8&scoped=true
17376
+ var dialoguevue_type_template_id_675bfbc8_scoped_true_render = function render(){var _vm=this,_c=_vm._self._c;return _c('div',{ref:"messageBox",staticClass:"message-box"},[_vm._l((_vm.msgList),function(item,index){return _c('div',{key:item.uuid + '' + index,staticClass:"message-group"},[_c('div',{staticClass:"msg-head"},[(item.isSend)?_c('UserHead'):_c('AnswerHead',{scopedSlots:_vm._u([{key:"avatar",fn:function(){return [_vm._t("avatar")]},proxy:true}],null,true)})],1),_c('div',{class:{ 'msg-content': true, 'response-content': !item.isSend }},[(!item.isSend && item.plusName)?_c('div',{staticClass:"msg-plus mb-1"},[_c('div',[_vm._v(" 使用: "),_c('span',[_vm._v(_vm._s(item.plusName.replace(/,/g, ' ')))])])]):_vm._e(),_c('MessageParse',{attrs:{"msgs":item.msgs,"isPrinting":item.needPrinting,"scrollToBottom":_vm.scrollToBottom},on:{"printOk":_vm.printOk,"update:isPrinting":function($event){return _vm.$set(item, "needPrinting", $event)},"update:is-printing":function($event){return _vm.$set(item, "needPrinting", $event)}}}),(!item.isSend && !item.needPrinting && item.showOpt)?_c('div',{staticClass:"icon-operates"},[_c('div',{staticClass:"icon-item",attrs:{"title":"点赞"}},[_c('Like')],1),_c('div',{staticClass:"icon-item",attrs:{"title":"不喜欢"}},[_c('Notlike')],1),_c('div',{staticClass:"icon-item",attrs:{"title":"复制"}},[_c('Copy')],1),_c('div',{staticClass:"icon-item",attrs:{"title":"导出"}},[_c('Download')],1),_c('div',{staticClass:"icon-item",attrs:{"title":"播放"}},[_c('Speaker')],1)]):_vm._e()],1)])}),_c('div',{directives:[{name:"show",rawName:"v-show",value:(_vm.stopDialogue),expression:"stopDialogue"}],staticClass:"stop-dialogue"},[_c('div',{staticClass:"gray-line"}),_c('div',{staticClass:"title"},[_vm._v("很抱歉,此对话已达到其限制。让我们开始新的聊天。")]),_c('div',{staticClass:"gray-line"})])],2)
17300
17377
  }
17301
- var dialoguevue_type_template_id_11be81bb_scoped_true_staticRenderFns = []
17378
+ var dialoguevue_type_template_id_675bfbc8_scoped_true_staticRenderFns = []
17302
17379
 
17303
17380
 
17304
- // CONCATENATED MODULE: ./packages/know_ui_v2/components/KgCopilot/dialogue/index.vue?vue&type=template&id=11be81bb&scoped=true
17381
+ // CONCATENATED MODULE: ./packages/know_ui_v2/components/KgCopilot/dialogue/index.vue?vue&type=template&id=675bfbc8&scoped=true
17305
17382
 
17306
17383
  // CONCATENATED MODULE: ./node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"3148f825-vue-loader-template"}!./node_modules/vue-loader/lib/loaders/templateLoader.js??ref--5!./node_modules/cache-loader/dist/cjs.js??ref--0-0!./node_modules/vue-loader/lib??vue-loader-options!./packages/know_ui_v2/components/KgCopilot/dialogue/messageParse/index.vue?vue&type=template&id=76782aae&scoped=true
17307
17384
  var messageParsevue_type_template_id_76782aae_scoped_true_render = function render(){var _vm=this,_c=_vm._self._c;return _c('div',_vm._l((_vm.msgs),function(item,index){return _c('div',{key:item.uuid + '' + index},[(index < _vm.current && item.type === _vm.DataType.text)?_c('ReadMd',{attrs:{"text":item.content,"scrollToBottom":_vm.scrollToBottom,"isPrinting":item.needPrinting},on:{"printOk":_vm.printOk,"update:isPrinting":function($event){return _vm.$set(item, "needPrinting", $event)},"update:is-printing":function($event){return _vm.$set(item, "needPrinting", $event)}}}):_vm._e(),(index < _vm.current && item.type === _vm.DataType.edit)?_c('Edit',{attrs:{"content":item.content,"scrollToBottom":_vm.scrollToBottom,"isPrinting":item.needPrinting},on:{"update:isPrinting":function($event){return _vm.$set(item, "needPrinting", $event)},"update:is-printing":function($event){return _vm.$set(item, "needPrinting", $event)},"printOk":_vm.printOk}}):_vm._e(),(index < _vm.current && item.type === _vm.DataType.file)?_c('FileBox',{attrs:{"desc":item.content,"isPrinting":item.needPrinting},on:{"update:isPrinting":function($event){return _vm.$set(item, "needPrinting", $event)},"update:is-printing":function($event){return _vm.$set(item, "needPrinting", $event)},"printOk":_vm.printOk}}):_vm._e(),(_vm.isPrinting && index === _vm.current - 1 && !item.needPrinting)?_c('span',{staticClass:"cursor"}):_vm._e()],1)}),0)
@@ -17669,16 +17746,16 @@ var fileBox_component = Object(componentNormalizer["a" /* default */])(
17669
17746
  )
17670
17747
 
17671
17748
  /* harmony default export */ var fileBox = (fileBox_component.exports);
17672
- // CONCATENATED MODULE: ./node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"3148f825-vue-loader-template"}!./node_modules/vue-loader/lib/loaders/templateLoader.js??ref--5!./node_modules/cache-loader/dist/cjs.js??ref--0-0!./node_modules/vue-loader/lib??vue-loader-options!./packages/know_ui_v2/components/KgCopilot/dialogue/messageParse/edit.vue?vue&type=template&id=c0709918&scoped=true
17673
- var editvue_type_template_id_c0709918_scoped_true_render = function render(){var _vm=this,_c=_vm._self._c;return _c('div',[_c('div',{directives:[{name:"show",rawName:"v-show",value:(!_vm.isEditing),expression:"!isEditing"}],staticClass:"read-flex"},[_c('ReadMd',{attrs:{"text":_vm.content.message,"isPrinting":_vm.printing},on:{"update:isPrinting":function($event){_vm.printing=$event},"update:is-printing":function($event){_vm.printing=$event},"printOk":_vm.printOk}}),(_vm.showButton && _vm.isPrinting)?_c('div',{class:{
17749
+ // CONCATENATED MODULE: ./node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"3148f825-vue-loader-template"}!./node_modules/vue-loader/lib/loaders/templateLoader.js??ref--5!./node_modules/cache-loader/dist/cjs.js??ref--0-0!./node_modules/vue-loader/lib??vue-loader-options!./packages/know_ui_v2/components/KgCopilot/dialogue/messageParse/edit.vue?vue&type=template&id=ecb8431a&scoped=true
17750
+ var editvue_type_template_id_ecb8431a_scoped_true_render = function render(){var _vm=this,_c=_vm._self._c;return _c('div',[_c('div',{directives:[{name:"show",rawName:"v-show",value:(!_vm.isEditing),expression:"!isEditing"}],staticClass:"read-flex"},[_c('ReadMd',{attrs:{"text":_vm.content.message,"isPrinting":_vm.printing},on:{"update:isPrinting":function($event){_vm.printing=$event},"update:is-printing":function($event){_vm.printing=$event},"printOk":_vm.printOk}}),(_vm.showButton && _vm.isPrinting)?_c('div',{class:{
17674
17751
  'icon-item': true,
17675
17752
  'cursor-default': !_vm.sendLonding
17676
17753
  },attrs:{"title":"编辑"},on:{"click":_vm.toEdit}},[_c('ThumbsDown')],1):_vm._e(),_c('span',{directives:[{name:"show",rawName:"v-show",value:(!_vm.isEditing && _vm.isPrinting && _vm.showButton),expression:"!isEditing && isPrinting && showButton"}],staticClass:"time"},[_vm._v(" ("+_vm._s(_vm.countDown)+"s)")])],1),(_vm.isEditing && _vm.isPrinting)?_c('div',{staticClass:"read-flex"},[_c('span',[_vm._v(_vm._s(_vm.updateObj.userLogic.title))]),_c('div',{staticClass:"input-box"},[_c('input',{directives:[{name:"model",rawName:"v-model",value:(_vm.updateObj.userLogic.value),expression:"updateObj.userLogic.value"}],staticClass:"keyword-input",attrs:{"type":"text","autofocus":""},domProps:{"value":(_vm.updateObj.userLogic.value)},on:{"keydown":function($event){if(!$event.type.indexOf('key')&&_vm._k($event.keyCode,"enter",13,$event.key,"Enter"))return null;return _vm.confirm.apply(null, arguments)},"input":function($event){if($event.target.composing)return;_vm.$set(_vm.updateObj.userLogic, "value", $event.target.value)}}}),(_vm.showButton && _vm.isPrinting)?_c('button',{on:{"click":_vm.confirm}},[_vm._v(" 确认"),_c('span',{directives:[{name:"show",rawName:"v-show",value:(!_vm.isEditing),expression:"!isEditing"}]},[_vm._v(" ("+_vm._s(_vm.countDown)+"s)")])]):_vm._e()])]):_vm._e()])
17677
17754
  }
17678
- var editvue_type_template_id_c0709918_scoped_true_staticRenderFns = []
17755
+ var editvue_type_template_id_ecb8431a_scoped_true_staticRenderFns = []
17679
17756
 
17680
17757
 
17681
- // CONCATENATED MODULE: ./packages/know_ui_v2/components/KgCopilot/dialogue/messageParse/edit.vue?vue&type=template&id=c0709918&scoped=true
17758
+ // CONCATENATED MODULE: ./packages/know_ui_v2/components/KgCopilot/dialogue/messageParse/edit.vue?vue&type=template&id=ecb8431a&scoped=true
17682
17759
 
17683
17760
  // CONCATENATED MODULE: ./node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"3148f825-vue-loader-template"}!./node_modules/vue-loader/lib/loaders/templateLoader.js??ref--5!./node_modules/cache-loader/dist/cjs.js??ref--0-0!./node_modules/vue-loader/lib??vue-loader-options!./packages/know_ui_v2/components/KgCopilot/dialogue/icons/thumbsDown.vue?vue&type=template&id=0c20c6bf
17684
17761
  var thumbsDownvue_type_template_id_0c20c6bf_render = function render(){var _vm=this,_c=_vm._self._c;return _c('svg',{staticStyle:{"outline":"none"},attrs:{"xmlns":"http://www.w3.org/2000/svg","xmlns:xlink":"http://www.w3.org/1999/xlink","aria-hidden":"true","role":"img","width":"1em","height":"1em","viewBox":"0 0 256 256","data-v-3f2185fe":""}},[_c('path',{attrs:{"fill":"currentColor","d":"m232.49 55.51l-32-32a12 12 0 0 0-17 0l-96 96A12 12 0 0 0 84 128v32a12 12 0 0 0 12 12h32a12 12 0 0 0 8.49-3.51l96-96a12 12 0 0 0 0-16.98ZM192 49l15 15l-11 11l-15-15Zm-69 99h-15v-15l56-56l15 15Zm105-15.43V208a20 20 0 0 1-20 20H48a20 20 0 0 1-20-20V48a20 20 0 0 1 20-20h75.43a12 12 0 0 1 0 24H52v152h152v-71.43a12 12 0 0 1 24 0Z"}})])
@@ -17801,8 +17878,8 @@ var thumbsDown_component = Object(componentNormalizer["a" /* default */])(
17801
17878
 
17802
17879
  // CONCATENATED MODULE: ./packages/know_ui_v2/components/KgCopilot/dialogue/messageParse/edit.vue?vue&type=script&lang=ts
17803
17880
  /* harmony default export */ var messageParse_editvue_type_script_lang_ts = (editvue_type_script_lang_ts);
17804
- // EXTERNAL MODULE: ./packages/know_ui_v2/components/KgCopilot/dialogue/messageParse/edit.vue?vue&type=style&index=0&id=c0709918&prod&scoped=true&lang=scss
17805
- var editvue_type_style_index_0_id_c0709918_prod_scoped_true_lang_scss = __webpack_require__("f83b");
17881
+ // EXTERNAL MODULE: ./packages/know_ui_v2/components/KgCopilot/dialogue/messageParse/edit.vue?vue&type=style&index=0&id=ecb8431a&prod&scoped=true&lang=scss
17882
+ var editvue_type_style_index_0_id_ecb8431a_prod_scoped_true_lang_scss = __webpack_require__("26cc");
17806
17883
 
17807
17884
  // CONCATENATED MODULE: ./packages/know_ui_v2/components/KgCopilot/dialogue/messageParse/edit.vue
17808
17885
 
@@ -17815,11 +17892,11 @@ var editvue_type_style_index_0_id_c0709918_prod_scoped_true_lang_scss = __webpac
17815
17892
 
17816
17893
  var edit_component = Object(componentNormalizer["a" /* default */])(
17817
17894
  messageParse_editvue_type_script_lang_ts,
17818
- editvue_type_template_id_c0709918_scoped_true_render,
17819
- editvue_type_template_id_c0709918_scoped_true_staticRenderFns,
17895
+ editvue_type_template_id_ecb8431a_scoped_true_render,
17896
+ editvue_type_template_id_ecb8431a_scoped_true_staticRenderFns,
17820
17897
  false,
17821
17898
  null,
17822
- "c0709918",
17899
+ "ecb8431a",
17823
17900
  null
17824
17901
 
17825
17902
  )
@@ -18193,8 +18270,8 @@ var notlike_component = Object(componentNormalizer["a" /* default */])(
18193
18270
  });
18194
18271
  // CONCATENATED MODULE: ./packages/know_ui_v2/components/KgCopilot/dialogue/index.vue?vue&type=script&lang=js
18195
18272
  /* harmony default export */ var KgCopilot_dialoguevue_type_script_lang_js = (dialoguevue_type_script_lang_js);
18196
- // EXTERNAL MODULE: ./packages/know_ui_v2/components/KgCopilot/dialogue/index.vue?vue&type=style&index=0&id=11be81bb&prod&scoped=true&lang=scss
18197
- var dialoguevue_type_style_index_0_id_11be81bb_prod_scoped_true_lang_scss = __webpack_require__("b315");
18273
+ // EXTERNAL MODULE: ./packages/know_ui_v2/components/KgCopilot/dialogue/index.vue?vue&type=style&index=0&id=675bfbc8&prod&scoped=true&lang=scss
18274
+ var dialoguevue_type_style_index_0_id_675bfbc8_prod_scoped_true_lang_scss = __webpack_require__("c329");
18198
18275
 
18199
18276
  // CONCATENATED MODULE: ./packages/know_ui_v2/components/KgCopilot/dialogue/index.vue
18200
18277
 
@@ -18207,11 +18284,11 @@ var dialoguevue_type_style_index_0_id_11be81bb_prod_scoped_true_lang_scss = __we
18207
18284
 
18208
18285
  var dialogue_component = Object(componentNormalizer["a" /* default */])(
18209
18286
  KgCopilot_dialoguevue_type_script_lang_js,
18210
- dialoguevue_type_template_id_11be81bb_scoped_true_render,
18211
- dialoguevue_type_template_id_11be81bb_scoped_true_staticRenderFns,
18287
+ dialoguevue_type_template_id_675bfbc8_scoped_true_render,
18288
+ dialoguevue_type_template_id_675bfbc8_scoped_true_staticRenderFns,
18212
18289
  false,
18213
18290
  null,
18214
- "11be81bb",
18291
+ "675bfbc8",
18215
18292
  null
18216
18293
 
18217
18294
  )
@@ -19078,10 +19155,6 @@ var CopiFooter_component = Object(componentNormalizer["a" /* default */])(
19078
19155
  ...Object(vuex_esm["d" /* mapState */])('copilot', ['searchText', 'msgList'])
19079
19156
  },
19080
19157
  props: {
19081
- getkitsUrl: {
19082
- type: String,
19083
- default: ''
19084
- },
19085
19158
  plugins: {
19086
19159
  type: Array,
19087
19160
  default: () => []
@@ -19122,7 +19195,6 @@ var CopiFooter_component = Object(componentNormalizer["a" /* default */])(
19122
19195
  initText: this.initText,
19123
19196
  aiName: this.aiName,
19124
19197
  maxSendNum: this.maxSendNum,
19125
- getkitsUrl: this.getkitsUrl,
19126
19198
  placeholder: this.placeholder,
19127
19199
  intelligentAnalysisConfig: this.intelligentAnalysisConfig,
19128
19200
  defaultDeal: this.defaultDeal
@@ -19148,8 +19220,8 @@ var CopiFooter_component = Object(componentNormalizer["a" /* default */])(
19148
19220
  });
19149
19221
  // CONCATENATED MODULE: ./packages/know_ui_v2/components/KgCopilot/main.vue?vue&type=script&lang=js
19150
19222
  /* harmony default export */ var KgCopilot_mainvue_type_script_lang_js = (mainvue_type_script_lang_js);
19151
- // EXTERNAL MODULE: ./packages/know_ui_v2/components/KgCopilot/main.vue?vue&type=style&index=0&id=22b4bd89&prod&scoped=true&lang=scss
19152
- var mainvue_type_style_index_0_id_22b4bd89_prod_scoped_true_lang_scss = __webpack_require__("802d");
19223
+ // EXTERNAL MODULE: ./packages/know_ui_v2/components/KgCopilot/main.vue?vue&type=style&index=0&id=566d1286&prod&scoped=true&lang=scss
19224
+ var mainvue_type_style_index_0_id_566d1286_prod_scoped_true_lang_scss = __webpack_require__("2ba9");
19153
19225
 
19154
19226
  // CONCATENATED MODULE: ./packages/know_ui_v2/components/KgCopilot/main.vue
19155
19227
 
@@ -19166,7 +19238,7 @@ var main_component = Object(componentNormalizer["a" /* default */])(
19166
19238
  staticRenderFns,
19167
19239
  false,
19168
19240
  null,
19169
- "22b4bd89",
19241
+ "566d1286",
19170
19242
  null
19171
19243
 
19172
19244
  )
@@ -19611,9 +19683,9 @@ const getters = {
19611
19683
  }
19612
19684
  return arr;
19613
19685
  },
19614
- /**
19615
- * 根据选中的信源,返回总的信源类别关联2
19616
- * 返回值: {123:["亚洲"],12345:["越南"]} | {}
19686
+ /**
19687
+ * 根据选中的信源,返回总的信源类别关联2
19688
+ * 返回值: {123:["亚洲"],12345:["越南"]} | {}
19617
19689
  * */
19618
19690
  mappingData_selAll_xinyuan: (state, getters) => {
19619
19691
  let mappingData = []; // 取交集
@@ -19637,9 +19709,9 @@ const getters = {
19637
19709
  // console.log('依赖总映射', dependencyTransition(mappingData, state.filterList))
19638
19710
  return Object(_utils_util__WEBPACK_IMPORTED_MODULE_2__[/* dependencyTransition */ "f"])(mappingData, state.filterList);
19639
19711
  },
19640
- /**
19641
- * 根据选中的主体和属性,返回总的关联类别 (行交集,列交集)
19642
- * 返回值: {123:["亚洲"],12345:["越南"]} | {}
19712
+ /**
19713
+ * 根据选中的主体和属性,返回总的关联类别 (行交集,列交集)
19714
+ * 返回值: {123:["亚洲"],12345:["越南"]} | {}
19643
19715
  * */
19644
19716
  mappingData_selAll_zhuti_new: (state, getters) => {
19645
19717
  let mappingData = []; // 取交集
@@ -19662,9 +19734,9 @@ const getters = {
19662
19734
  }
19663
19735
  return Object(_utils_util__WEBPACK_IMPORTED_MODULE_2__[/* dependencyTransition */ "f"])(mappingData, state.filterList);
19664
19736
  },
19665
- /**
19666
- * 根据选中的query,返回总的关联类别 (行交集,列交集)
19667
- * 返回值: {123:["亚洲"],12345:["越南"]} | {}
19737
+ /**
19738
+ * 根据选中的query,返回总的关联类别 (行交集,列交集)
19739
+ * 返回值: {123:["亚洲"],12345:["越南"]} | {}
19668
19740
  * */
19669
19741
  mappingData_selAll_query: (state, getters) => {
19670
19742
  let mappingData = []; // 取交集
@@ -20833,17 +20905,6 @@ function typescript(hljs) {
20833
20905
  module.exports = typescript;
20834
20906
 
20835
20907
 
20836
- /***/ }),
20837
-
20838
- /***/ "b315":
20839
- /***/ (function(module, __webpack_exports__, __webpack_require__) {
20840
-
20841
- "use strict";
20842
- /* harmony import */ var _node_modules_mini_css_extract_plugin_dist_loader_js_ref_8_oneOf_1_0_node_modules_css_loader_dist_cjs_js_ref_8_oneOf_1_1_node_modules_vue_loader_lib_loaders_stylePostLoader_js_node_modules_postcss_loader_src_index_js_ref_8_oneOf_1_2_node_modules_sass_loader_lib_loader_js_ref_8_oneOf_1_3_node_modules_cache_loader_dist_cjs_js_ref_0_0_node_modules_vue_loader_lib_index_js_vue_loader_options_index_vue_vue_type_style_index_0_id_11be81bb_prod_scoped_true_lang_scss__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__("3486");
20843
- /* harmony import */ var _node_modules_mini_css_extract_plugin_dist_loader_js_ref_8_oneOf_1_0_node_modules_css_loader_dist_cjs_js_ref_8_oneOf_1_1_node_modules_vue_loader_lib_loaders_stylePostLoader_js_node_modules_postcss_loader_src_index_js_ref_8_oneOf_1_2_node_modules_sass_loader_lib_loader_js_ref_8_oneOf_1_3_node_modules_cache_loader_dist_cjs_js_ref_0_0_node_modules_vue_loader_lib_index_js_vue_loader_options_index_vue_vue_type_style_index_0_id_11be81bb_prod_scoped_true_lang_scss__WEBPACK_IMPORTED_MODULE_0___default = /*#__PURE__*/__webpack_require__.n(_node_modules_mini_css_extract_plugin_dist_loader_js_ref_8_oneOf_1_0_node_modules_css_loader_dist_cjs_js_ref_8_oneOf_1_1_node_modules_vue_loader_lib_loaders_stylePostLoader_js_node_modules_postcss_loader_src_index_js_ref_8_oneOf_1_2_node_modules_sass_loader_lib_loader_js_ref_8_oneOf_1_3_node_modules_cache_loader_dist_cjs_js_ref_0_0_node_modules_vue_loader_lib_index_js_vue_loader_options_index_vue_vue_type_style_index_0_id_11be81bb_prod_scoped_true_lang_scss__WEBPACK_IMPORTED_MODULE_0__);
20844
- /* unused harmony reexport * */
20845
-
20846
-
20847
20908
  /***/ }),
20848
20909
 
20849
20910
  /***/ "b3c5":
@@ -21327,13 +21388,6 @@ module.exports = !fails(function () {
21327
21388
  });
21328
21389
 
21329
21390
 
21330
- /***/ }),
21331
-
21332
- /***/ "bbe0":
21333
- /***/ (function(module, exports, __webpack_require__) {
21334
-
21335
- // extracted by mini-css-extract-plugin
21336
-
21337
21391
  /***/ }),
21338
21392
 
21339
21393
  /***/ "bc3a":
@@ -23812,6 +23866,17 @@ module.exports = function (input, pref) {
23812
23866
  //# sourceMappingURL=purify.js.map
23813
23867
 
23814
23868
 
23869
+ /***/ }),
23870
+
23871
+ /***/ "c329":
23872
+ /***/ (function(module, __webpack_exports__, __webpack_require__) {
23873
+
23874
+ "use strict";
23875
+ /* harmony import */ var _node_modules_mini_css_extract_plugin_dist_loader_js_ref_8_oneOf_1_0_node_modules_css_loader_dist_cjs_js_ref_8_oneOf_1_1_node_modules_vue_loader_lib_loaders_stylePostLoader_js_node_modules_postcss_loader_src_index_js_ref_8_oneOf_1_2_node_modules_sass_loader_lib_loader_js_ref_8_oneOf_1_3_node_modules_cache_loader_dist_cjs_js_ref_0_0_node_modules_vue_loader_lib_index_js_vue_loader_options_index_vue_vue_type_style_index_0_id_675bfbc8_prod_scoped_true_lang_scss__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__("84ab");
23876
+ /* harmony import */ var _node_modules_mini_css_extract_plugin_dist_loader_js_ref_8_oneOf_1_0_node_modules_css_loader_dist_cjs_js_ref_8_oneOf_1_1_node_modules_vue_loader_lib_loaders_stylePostLoader_js_node_modules_postcss_loader_src_index_js_ref_8_oneOf_1_2_node_modules_sass_loader_lib_loader_js_ref_8_oneOf_1_3_node_modules_cache_loader_dist_cjs_js_ref_0_0_node_modules_vue_loader_lib_index_js_vue_loader_options_index_vue_vue_type_style_index_0_id_675bfbc8_prod_scoped_true_lang_scss__WEBPACK_IMPORTED_MODULE_0___default = /*#__PURE__*/__webpack_require__.n(_node_modules_mini_css_extract_plugin_dist_loader_js_ref_8_oneOf_1_0_node_modules_css_loader_dist_cjs_js_ref_8_oneOf_1_1_node_modules_vue_loader_lib_loaders_stylePostLoader_js_node_modules_postcss_loader_src_index_js_ref_8_oneOf_1_2_node_modules_sass_loader_lib_loader_js_ref_8_oneOf_1_3_node_modules_cache_loader_dist_cjs_js_ref_0_0_node_modules_vue_loader_lib_index_js_vue_loader_options_index_vue_vue_type_style_index_0_id_675bfbc8_prod_scoped_true_lang_scss__WEBPACK_IMPORTED_MODULE_0__);
23877
+ /* unused harmony reexport * */
23878
+
23879
+
23815
23880
  /***/ }),
23816
23881
 
23817
23882
  /***/ "c345":
@@ -24319,6 +24384,13 @@ var store = global[SHARED] || defineGlobalProperty(SHARED, {});
24319
24384
  module.exports = store;
24320
24385
 
24321
24386
 
24387
+ /***/ }),
24388
+
24389
+ /***/ "c7f7":
24390
+ /***/ (function(module, exports, __webpack_require__) {
24391
+
24392
+ // extracted by mini-css-extract-plugin
24393
+
24322
24394
  /***/ }),
24323
24395
 
24324
24396
  /***/ "c8af":
@@ -25284,13 +25356,6 @@ var substr = 'ab'.substr(-1) === 'b'
25284
25356
 
25285
25357
  /***/ }),
25286
25358
 
25287
- /***/ "e098":
25288
- /***/ (function(module, exports, __webpack_require__) {
25289
-
25290
- // extracted by mini-css-extract-plugin
25291
-
25292
- /***/ }),
25293
-
25294
25359
  /***/ "e330":
25295
25360
  /***/ (function(module, exports, __webpack_require__) {
25296
25361
 
@@ -27110,17 +27175,6 @@ module.exports = function (key) {
27110
27175
 
27111
27176
  // extracted by mini-css-extract-plugin
27112
27177
 
27113
- /***/ }),
27114
-
27115
- /***/ "f83b":
27116
- /***/ (function(module, __webpack_exports__, __webpack_require__) {
27117
-
27118
- "use strict";
27119
- /* harmony import */ var _node_modules_mini_css_extract_plugin_dist_loader_js_ref_8_oneOf_1_0_node_modules_css_loader_dist_cjs_js_ref_8_oneOf_1_1_node_modules_vue_loader_lib_loaders_stylePostLoader_js_node_modules_postcss_loader_src_index_js_ref_8_oneOf_1_2_node_modules_sass_loader_lib_loader_js_ref_8_oneOf_1_3_node_modules_cache_loader_dist_cjs_js_ref_0_0_node_modules_vue_loader_lib_index_js_vue_loader_options_edit_vue_vue_type_style_index_0_id_c0709918_prod_scoped_true_lang_scss__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__("bbe0");
27120
- /* harmony import */ var _node_modules_mini_css_extract_plugin_dist_loader_js_ref_8_oneOf_1_0_node_modules_css_loader_dist_cjs_js_ref_8_oneOf_1_1_node_modules_vue_loader_lib_loaders_stylePostLoader_js_node_modules_postcss_loader_src_index_js_ref_8_oneOf_1_2_node_modules_sass_loader_lib_loader_js_ref_8_oneOf_1_3_node_modules_cache_loader_dist_cjs_js_ref_0_0_node_modules_vue_loader_lib_index_js_vue_loader_options_edit_vue_vue_type_style_index_0_id_c0709918_prod_scoped_true_lang_scss__WEBPACK_IMPORTED_MODULE_0___default = /*#__PURE__*/__webpack_require__.n(_node_modules_mini_css_extract_plugin_dist_loader_js_ref_8_oneOf_1_0_node_modules_css_loader_dist_cjs_js_ref_8_oneOf_1_1_node_modules_vue_loader_lib_loaders_stylePostLoader_js_node_modules_postcss_loader_src_index_js_ref_8_oneOf_1_2_node_modules_sass_loader_lib_loader_js_ref_8_oneOf_1_3_node_modules_cache_loader_dist_cjs_js_ref_0_0_node_modules_vue_loader_lib_index_js_vue_loader_options_edit_vue_vue_type_style_index_0_id_c0709918_prod_scoped_true_lang_scss__WEBPACK_IMPORTED_MODULE_0__);
27121
- /* unused harmony reexport * */
27122
-
27123
-
27124
27178
  /***/ }),
27125
27179
 
27126
27180
  /***/ "fb15":