vue-element-ui-x 0.1.6-beta → 0.1.7-beta

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.
Files changed (92) hide show
  1. package/lib/attachments.js +3082 -0
  2. package/lib/bubble-list.js +13840 -0
  3. package/lib/bubble.js +13125 -0
  4. package/lib/components/Attachments/index.js +2 -2
  5. package/lib/components/Bubble/index.js +74 -79
  6. package/lib/components/BubbleList/index.js +75 -80
  7. package/lib/components/Conversations/index.js +6 -6
  8. package/lib/components/FilesCard/index.js +1 -1
  9. package/lib/components/Prompts/index.js +21 -21
  10. package/lib/components/Sender/index.js +4 -4
  11. package/lib/components/Think/index.js +1 -1
  12. package/lib/components/Thinking/index.js +1 -1
  13. package/lib/components/ThoughtChain/index.js +77 -82
  14. package/lib/components/Typewriter/index.js +73 -78
  15. package/lib/components/Welcome/index.js +1 -1
  16. package/lib/conversations.js +18825 -0
  17. package/lib/files-card.js +2471 -0
  18. package/lib/index.common.js +1 -1
  19. package/lib/index.esm.js +1 -1
  20. package/lib/index.js +1454 -1448
  21. package/lib/index.umd.js +1 -1
  22. package/lib/mixins/index.js +2 -2
  23. package/lib/mixins.js +1016 -0
  24. package/lib/prompts.js +832 -0
  25. package/lib/sender.js +1911 -0
  26. package/lib/think.js +799 -0
  27. package/lib/thinking.js +809 -0
  28. package/lib/thought-chain.js +30391 -0
  29. package/lib/typewriter.js +12788 -0
  30. package/lib/welcome.js +755 -0
  31. package/package.json +1 -2
  32. package/src/components/Attachments/index.js +8 -8
  33. package/src/components/Bubble/index.js +6 -6
  34. package/src/components/Bubble/src/main.vue +299 -299
  35. package/src/components/BubbleList/index.js +8 -8
  36. package/src/components/BubbleList/src/loading.vue +75 -75
  37. package/src/components/BubbleList/src/main.vue +466 -466
  38. package/src/components/Conversations/index.js +8 -8
  39. package/src/components/Conversations/src/main.vue +635 -635
  40. package/src/components/FilesCard/index.js +8 -8
  41. package/src/components/FilesCard/src/fileSvg/audio.vue +38 -38
  42. package/src/components/FilesCard/src/fileSvg/code.vue +35 -35
  43. package/src/components/FilesCard/src/fileSvg/database.vue +94 -94
  44. package/src/components/FilesCard/src/fileSvg/excel.vue +38 -38
  45. package/src/components/FilesCard/src/fileSvg/file.vue +40 -40
  46. package/src/components/FilesCard/src/fileSvg/image.vue +40 -40
  47. package/src/components/FilesCard/src/fileSvg/index.js +46 -46
  48. package/src/components/FilesCard/src/fileSvg/link.vue +54 -54
  49. package/src/components/FilesCard/src/fileSvg/mark.vue +38 -38
  50. package/src/components/FilesCard/src/fileSvg/pdf.vue +38 -38
  51. package/src/components/FilesCard/src/fileSvg/ppt.vue +38 -38
  52. package/src/components/FilesCard/src/fileSvg/three.vue +38 -38
  53. package/src/components/FilesCard/src/fileSvg/txt.vue +38 -38
  54. package/src/components/FilesCard/src/fileSvg/unknown.vue +54 -54
  55. package/src/components/FilesCard/src/fileSvg/video.vue +38 -38
  56. package/src/components/FilesCard/src/fileSvg/word.vue +38 -38
  57. package/src/components/FilesCard/src/fileSvg/zip.vue +38 -38
  58. package/src/components/FilesCard/src/options.js +18 -18
  59. package/src/components/Prompts/index.js +8 -8
  60. package/src/components/Prompts/src/main.vue +248 -248
  61. package/src/components/Sender/index.js +8 -8
  62. package/src/components/Sender/src/components/ClearButton.vue +28 -28
  63. package/src/components/Sender/src/components/Loading.vue +53 -53
  64. package/src/components/Sender/src/components/LoadingButton.vue +39 -39
  65. package/src/components/Sender/src/components/SendButton.vue +26 -26
  66. package/src/components/Sender/src/components/SpeechButton.vue +24 -24
  67. package/src/components/Sender/src/components/SpeechLoading.vue +87 -87
  68. package/src/components/Sender/src/components/SpeechLoadingButton.vue +43 -43
  69. package/src/components/Think/index.js +8 -8
  70. package/src/components/Think/src/main.vue +190 -190
  71. package/src/components/Thinking/index.js +8 -8
  72. package/src/components/Thinking/src/main.vue +195 -195
  73. package/src/components/ThoughtChain/index.js +8 -8
  74. package/src/components/ThoughtChain/src/main.vue +293 -293
  75. package/src/components/Typewriter/index.js +8 -8
  76. package/src/components/Welcome/index.js +8 -8
  77. package/src/components/Welcome/src/main.vue +151 -151
  78. package/src/index.js +23 -3
  79. package/src/styles/Attachments.scss +236 -236
  80. package/src/styles/Bubble.scss +157 -157
  81. package/src/styles/BubbleList.scss +148 -148
  82. package/src/styles/Conversations.scss +260 -260
  83. package/src/styles/FilesCard.scss +221 -221
  84. package/src/styles/Prompts.scss +195 -195
  85. package/src/styles/Sender.scss +199 -199
  86. package/src/styles/Think.scss +134 -134
  87. package/src/styles/Thinking.scss +112 -112
  88. package/src/styles/ThoughtChain.scss +113 -113
  89. package/src/styles/Typewriter.scss +66 -66
  90. package/src/styles/button.scss +302 -0
  91. package/src/styles/var.scss +1052 -0
  92. package/src/theme/var.scss +72 -72
@@ -273,7 +273,7 @@ var UNESCAPE_ALL_RE = new RegExp(UNESCAPE_MD_RE.source + '|' + ENTITY_RE.source,
273
273
 
274
274
  var DIGITAL_ENTITY_TEST_RE = /^#((?:x[a-f0-9]{1,8}|[0-9]{1,8}))/i;
275
275
 
276
- var entities = __webpack_require__(12);
276
+ var entities = __webpack_require__(13);
277
277
 
278
278
  function replaceEntityPattern(match, name) {
279
279
  var code = 0;
@@ -378,7 +378,7 @@ function isWhiteSpace(code) {
378
378
  ////////////////////////////////////////////////////////////////////////////////
379
379
 
380
380
  /*eslint-disable max-len*/
381
- var UNICODE_PUNCT_RE = __webpack_require__(6);
381
+ var UNICODE_PUNCT_RE = __webpack_require__(7);
382
382
 
383
383
  // Currently without astral characters support.
384
384
  function isPunctChar(ch) {
@@ -492,7 +492,7 @@ function normalizeReference(str) {
492
492
  // bundled size (e.g. a browser build).
493
493
  //
494
494
  exports.lib = {};
495
- exports.lib.mdurl = __webpack_require__(13);
495
+ exports.lib.mdurl = __webpack_require__(14);
496
496
  exports.lib.ucmicro = __webpack_require__(35);
497
497
 
498
498
  exports.assign = assign;
@@ -2811,10 +2811,11 @@ Prism.languages.js = Prism.languages.javascript;
2811
2811
 
2812
2812
  }());
2813
2813
 
2814
- /* WEBPACK VAR INJECTION */}.call(this, __webpack_require__(10)))
2814
+ /* WEBPACK VAR INJECTION */}.call(this, __webpack_require__(11)))
2815
2815
 
2816
2816
  /***/ }),
2817
- /* 5 */
2817
+ /* 5 */,
2818
+ /* 6 */
2818
2819
  /***/ (function(module, exports, __webpack_require__) {
2819
2820
 
2820
2821
  /* WEBPACK VAR INJECTION */(function(global, module) {var __WEBPACK_AMD_DEFINE_RESULT__;/**
@@ -20019,16 +20020,16 @@ Prism.languages.js = Prism.languages.javascript;
20019
20020
  else {}
20020
20021
  }.call(this));
20021
20022
 
20022
- /* WEBPACK VAR INJECTION */}.call(this, __webpack_require__(10), __webpack_require__(23)(module)))
20023
+ /* WEBPACK VAR INJECTION */}.call(this, __webpack_require__(11), __webpack_require__(24)(module)))
20023
20024
 
20024
20025
  /***/ }),
20025
- /* 6 */
20026
+ /* 7 */
20026
20027
  /***/ (function(module, exports) {
20027
20028
 
20028
20029
  module.exports=/[!-#%-\*,-\/:;\?@\[-\]_\{\}\xA1\xA7\xAB\xB6\xB7\xBB\xBF\u037E\u0387\u055A-\u055F\u0589\u058A\u05BE\u05C0\u05C3\u05C6\u05F3\u05F4\u0609\u060A\u060C\u060D\u061B\u061E\u061F\u066A-\u066D\u06D4\u0700-\u070D\u07F7-\u07F9\u0830-\u083E\u085E\u0964\u0965\u0970\u09FD\u0A76\u0AF0\u0C84\u0DF4\u0E4F\u0E5A\u0E5B\u0F04-\u0F12\u0F14\u0F3A-\u0F3D\u0F85\u0FD0-\u0FD4\u0FD9\u0FDA\u104A-\u104F\u10FB\u1360-\u1368\u1400\u166D\u166E\u169B\u169C\u16EB-\u16ED\u1735\u1736\u17D4-\u17D6\u17D8-\u17DA\u1800-\u180A\u1944\u1945\u1A1E\u1A1F\u1AA0-\u1AA6\u1AA8-\u1AAD\u1B5A-\u1B60\u1BFC-\u1BFF\u1C3B-\u1C3F\u1C7E\u1C7F\u1CC0-\u1CC7\u1CD3\u2010-\u2027\u2030-\u2043\u2045-\u2051\u2053-\u205E\u207D\u207E\u208D\u208E\u2308-\u230B\u2329\u232A\u2768-\u2775\u27C5\u27C6\u27E6-\u27EF\u2983-\u2998\u29D8-\u29DB\u29FC\u29FD\u2CF9-\u2CFC\u2CFE\u2CFF\u2D70\u2E00-\u2E2E\u2E30-\u2E4E\u3001-\u3003\u3008-\u3011\u3014-\u301F\u3030\u303D\u30A0\u30FB\uA4FE\uA4FF\uA60D-\uA60F\uA673\uA67E\uA6F2-\uA6F7\uA874-\uA877\uA8CE\uA8CF\uA8F8-\uA8FA\uA8FC\uA92E\uA92F\uA95F\uA9C1-\uA9CD\uA9DE\uA9DF\uAA5C-\uAA5F\uAADE\uAADF\uAAF0\uAAF1\uABEB\uFD3E\uFD3F\uFE10-\uFE19\uFE30-\uFE52\uFE54-\uFE61\uFE63\uFE68\uFE6A\uFE6B\uFF01-\uFF03\uFF05-\uFF0A\uFF0C-\uFF0F\uFF1A\uFF1B\uFF1F\uFF20\uFF3B-\uFF3D\uFF3F\uFF5B\uFF5D\uFF5F-\uFF65]|\uD800[\uDD00-\uDD02\uDF9F\uDFD0]|\uD801\uDD6F|\uD802[\uDC57\uDD1F\uDD3F\uDE50-\uDE58\uDE7F\uDEF0-\uDEF6\uDF39-\uDF3F\uDF99-\uDF9C]|\uD803[\uDF55-\uDF59]|\uD804[\uDC47-\uDC4D\uDCBB\uDCBC\uDCBE-\uDCC1\uDD40-\uDD43\uDD74\uDD75\uDDC5-\uDDC8\uDDCD\uDDDB\uDDDD-\uDDDF\uDE38-\uDE3D\uDEA9]|\uD805[\uDC4B-\uDC4F\uDC5B\uDC5D\uDCC6\uDDC1-\uDDD7\uDE41-\uDE43\uDE60-\uDE6C\uDF3C-\uDF3E]|\uD806[\uDC3B\uDE3F-\uDE46\uDE9A-\uDE9C\uDE9E-\uDEA2]|\uD807[\uDC41-\uDC45\uDC70\uDC71\uDEF7\uDEF8]|\uD809[\uDC70-\uDC74]|\uD81A[\uDE6E\uDE6F\uDEF5\uDF37-\uDF3B\uDF44]|\uD81B[\uDE97-\uDE9A]|\uD82F\uDC9F|\uD836[\uDE87-\uDE8B]|\uD83A[\uDD5E\uDD5F]/
20029
20030
 
20030
20031
  /***/ }),
20031
- /* 7 */
20032
+ /* 8 */
20032
20033
  /***/ (function(module, exports, __webpack_require__) {
20033
20034
 
20034
20035
  "use strict";
@@ -20387,7 +20388,7 @@ module.exports = Ruler;
20387
20388
 
20388
20389
 
20389
20390
  /***/ }),
20390
- /* 8 */
20391
+ /* 9 */
20391
20392
  /***/ (function(module, exports, __webpack_require__) {
20392
20393
 
20393
20394
  "use strict";
@@ -20595,26 +20596,26 @@ module.exports = Token;
20595
20596
 
20596
20597
 
20597
20598
  /***/ }),
20598
- /* 9 */
20599
+ /* 10 */
20599
20600
  /***/ (function(module, __webpack_exports__, __webpack_require__) {
20600
20601
 
20601
20602
  "use strict";
20602
20603
  /* harmony import */ var _node_modules_css_loader_dist_runtime_api_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(2);
20603
20604
  /* harmony import */ var _node_modules_css_loader_dist_runtime_api_js__WEBPACK_IMPORTED_MODULE_0___default = /*#__PURE__*/__webpack_require__.n(_node_modules_css_loader_dist_runtime_api_js__WEBPACK_IMPORTED_MODULE_0__);
20604
- /* harmony import */ var _node_modules_css_loader_dist_cjs_js_node_modules_prismjs_themes_prism_css__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(22);
20605
+ /* harmony import */ var _node_modules_css_loader_dist_cjs_js_node_modules_prismjs_themes_prism_css__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(23);
20605
20606
  // Imports
20606
20607
 
20607
20608
 
20608
20609
  var ___CSS_LOADER_EXPORT___ = _node_modules_css_loader_dist_runtime_api_js__WEBPACK_IMPORTED_MODULE_0___default()(function(i){return i[1]});
20609
20610
  ___CSS_LOADER_EXPORT___.i(_node_modules_css_loader_dist_cjs_js_node_modules_prismjs_themes_prism_css__WEBPACK_IMPORTED_MODULE_1__[/* default */ "a"]);
20610
20611
  // Module
20611
- ___CSS_LOADER_EXPORT___.push([module.i, ".typer-container[data-v-0a15f16e]{overflow-x:auto}.markdown-content[data-v-0a15f16e] ul{list-style-type:disc}.typing-markdown-cursor-foggy.markdown-content[data-v-0a15f16e] h1,.typing-markdown-cursor-foggy.markdown-content[data-v-0a15f16e] h2,.typing-markdown-cursor-foggy.markdown-content[data-v-0a15f16e] h3,.typing-markdown-cursor-foggy.markdown-content[data-v-0a15f16e] h4,.typing-markdown-cursor-foggy.markdown-content[data-v-0a15f16e] h5,.typing-markdown-cursor-foggy.markdown-content[data-v-0a15f16e] h6,.typing-markdown-cursor-foggy.markdown-content[data-v-0a15f16e] p,.typing-markdown-cursor-foggy.markdown-content[data-v-0a15f16e] ol:last-child li,.typing-markdown-cursor-foggy.markdown-content[data-v-0a15f16e] ul:last-child li,.typing-cursor-foggy.markdown-content[data-v-0a15f16e] h1,.typing-cursor-foggy.markdown-content[data-v-0a15f16e] h2,.typing-cursor-foggy.markdown-content[data-v-0a15f16e] h3,.typing-cursor-foggy.markdown-content[data-v-0a15f16e] h4,.typing-cursor-foggy.markdown-content[data-v-0a15f16e] h5,.typing-cursor-foggy.markdown-content[data-v-0a15f16e] h6,.typing-cursor-foggy.markdown-content[data-v-0a15f16e] p,.typing-cursor-foggy.markdown-content[data-v-0a15f16e] ol:last-child li,.typing-cursor-foggy.markdown-content[data-v-0a15f16e] ul:last-child li{position:relative;overflow:hidden}.typing-markdown-cursor-foggy.markdown-content[data-v-0a15f16e] h1:last-child:after,.typing-markdown-cursor-foggy.markdown-content[data-v-0a15f16e] h2:last-child:after,.typing-markdown-cursor-foggy.markdown-content[data-v-0a15f16e] h3:last-child:after,.typing-markdown-cursor-foggy.markdown-content[data-v-0a15f16e] h4:last-child:after,.typing-markdown-cursor-foggy.markdown-content[data-v-0a15f16e] h5:last-child:after,.typing-markdown-cursor-foggy.markdown-content[data-v-0a15f16e] h6:last-child:after,.typing-markdown-cursor-foggy.markdown-content[data-v-0a15f16e] p:last-child:after,.typing-markdown-cursor-foggy.markdown-content[data-v-0a15f16e] ol:last-child li:last-child:after,.typing-markdown-cursor-foggy.markdown-content[data-v-0a15f16e] ul:last-child li:last-child:after,.typing-cursor-foggy.markdown-content[data-v-0a15f16e] h1:last-child:after,.typing-cursor-foggy.markdown-content[data-v-0a15f16e] h2:last-child:after,.typing-cursor-foggy.markdown-content[data-v-0a15f16e] h3:last-child:after,.typing-cursor-foggy.markdown-content[data-v-0a15f16e] h4:last-child:after,.typing-cursor-foggy.markdown-content[data-v-0a15f16e] h5:last-child:after,.typing-cursor-foggy.markdown-content[data-v-0a15f16e] h6:last-child:after,.typing-cursor-foggy.markdown-content[data-v-0a15f16e] p:last-child:after,.typing-cursor-foggy.markdown-content[data-v-0a15f16e] ol:last-child li:last-child:after,.typing-cursor-foggy.markdown-content[data-v-0a15f16e] ul:last-child li:last-child:after{content:'';width:var(--cursor-fog-width);height:1.5em;background:linear-gradient(90deg, transparent, var(--cursor-fog-bg-color));position:absolute;margin-left:calc(-1 * var(--cursor-fog-width))}.typer-content.typing-cursor[data-v-0a15f16e]::after{content:var(--cursor-char);margin-left:2px;display:inline-block}.typer-content.typing-cursor-foggy[data-v-0a15f16e]{position:relative;overflow:hidden}.typer-content.typing-cursor-foggy[data-v-0a15f16e]:last-child:after{content:'';width:var(--cursor-fog-width);height:100%;background:linear-gradient(90deg, transparent, var(--cursor-fog-bg-color));position:absolute;margin-left:calc(-1 * var(--cursor-fog-width))}\n", ""]);
20612
+ ___CSS_LOADER_EXPORT___.push([module.i, ".typer-container[data-v-0a15f16e]{overflow-x:auto}.markdown-content[data-v-0a15f16e] ul{list-style-type:disc}.typing-markdown-cursor-foggy.markdown-content[data-v-0a15f16e] h1,.typing-markdown-cursor-foggy.markdown-content[data-v-0a15f16e] h2,.typing-markdown-cursor-foggy.markdown-content[data-v-0a15f16e] h3,.typing-markdown-cursor-foggy.markdown-content[data-v-0a15f16e] h4,.typing-markdown-cursor-foggy.markdown-content[data-v-0a15f16e] h5,.typing-markdown-cursor-foggy.markdown-content[data-v-0a15f16e] h6,.typing-markdown-cursor-foggy.markdown-content[data-v-0a15f16e] p,.typing-markdown-cursor-foggy.markdown-content[data-v-0a15f16e] ol:last-child li,.typing-markdown-cursor-foggy.markdown-content[data-v-0a15f16e] ul:last-child li,.typing-cursor-foggy.markdown-content[data-v-0a15f16e] h1,.typing-cursor-foggy.markdown-content[data-v-0a15f16e] h2,.typing-cursor-foggy.markdown-content[data-v-0a15f16e] h3,.typing-cursor-foggy.markdown-content[data-v-0a15f16e] h4,.typing-cursor-foggy.markdown-content[data-v-0a15f16e] h5,.typing-cursor-foggy.markdown-content[data-v-0a15f16e] h6,.typing-cursor-foggy.markdown-content[data-v-0a15f16e] p,.typing-cursor-foggy.markdown-content[data-v-0a15f16e] ol:last-child li,.typing-cursor-foggy.markdown-content[data-v-0a15f16e] ul:last-child li{position:relative;overflow:hidden}.typing-markdown-cursor-foggy.markdown-content[data-v-0a15f16e] h1:last-child:after,.typing-markdown-cursor-foggy.markdown-content[data-v-0a15f16e] h2:last-child:after,.typing-markdown-cursor-foggy.markdown-content[data-v-0a15f16e] h3:last-child:after,.typing-markdown-cursor-foggy.markdown-content[data-v-0a15f16e] h4:last-child:after,.typing-markdown-cursor-foggy.markdown-content[data-v-0a15f16e] h5:last-child:after,.typing-markdown-cursor-foggy.markdown-content[data-v-0a15f16e] h6:last-child:after,.typing-markdown-cursor-foggy.markdown-content[data-v-0a15f16e] p:last-child:after,.typing-markdown-cursor-foggy.markdown-content[data-v-0a15f16e] ol:last-child li:last-child:after,.typing-markdown-cursor-foggy.markdown-content[data-v-0a15f16e] ul:last-child li:last-child:after,.typing-cursor-foggy.markdown-content[data-v-0a15f16e] h1:last-child:after,.typing-cursor-foggy.markdown-content[data-v-0a15f16e] h2:last-child:after,.typing-cursor-foggy.markdown-content[data-v-0a15f16e] h3:last-child:after,.typing-cursor-foggy.markdown-content[data-v-0a15f16e] h4:last-child:after,.typing-cursor-foggy.markdown-content[data-v-0a15f16e] h5:last-child:after,.typing-cursor-foggy.markdown-content[data-v-0a15f16e] h6:last-child:after,.typing-cursor-foggy.markdown-content[data-v-0a15f16e] p:last-child:after,.typing-cursor-foggy.markdown-content[data-v-0a15f16e] ol:last-child li:last-child:after,.typing-cursor-foggy.markdown-content[data-v-0a15f16e] ul:last-child li:last-child:after{content:\"\";width:var(--cursor-fog-width);height:1.5em;background:linear-gradient(90deg, transparent, var(--cursor-fog-bg-color));position:absolute;margin-left:calc(-1*var(--cursor-fog-width))}.typer-content.typing-cursor[data-v-0a15f16e]::after{content:var(--cursor-char);margin-left:2px;display:inline-block}.typer-content.typing-cursor-foggy[data-v-0a15f16e]{position:relative;overflow:hidden}.typer-content.typing-cursor-foggy[data-v-0a15f16e]:last-child:after{content:\"\";width:var(--cursor-fog-width);height:100%;background:linear-gradient(90deg, transparent, var(--cursor-fog-bg-color));position:absolute;margin-left:calc(-1*var(--cursor-fog-width))}", ""]);
20612
20613
  // Exports
20613
20614
  /* harmony default export */ __webpack_exports__["a"] = (___CSS_LOADER_EXPORT___);
20614
20615
 
20615
20616
 
20616
20617
  /***/ }),
20617
- /* 10 */
20618
+ /* 11 */
20618
20619
  /***/ (function(module, exports) {
20619
20620
 
20620
20621
  var g;
@@ -20640,7 +20641,7 @@ module.exports = g;
20640
20641
 
20641
20642
 
20642
20643
  /***/ }),
20643
- /* 11 */
20644
+ /* 12 */
20644
20645
  /***/ (function(module, __webpack_exports__, __webpack_require__) {
20645
20646
 
20646
20647
  "use strict";
@@ -20679,11 +20680,11 @@ render._withStripped = true;
20679
20680
  // CONCATENATED MODULE: ./src/components/Typewriter/src/main.vue?vue&type=template&id=0a15f16e&scoped=true
20680
20681
 
20681
20682
  // EXTERNAL MODULE: ./node_modules/dompurify/dist/purify.js
20682
- var purify = __webpack_require__(20);
20683
+ var purify = __webpack_require__(21);
20683
20684
  var purify_default = /*#__PURE__*/__webpack_require__.n(purify);
20684
20685
 
20685
20686
  // EXTERNAL MODULE: ./node_modules/markdown-it/index.js
20686
- var markdown_it = __webpack_require__(21);
20687
+ var markdown_it = __webpack_require__(22);
20687
20688
  var markdown_it_default = /*#__PURE__*/__webpack_require__.n(markdown_it);
20688
20689
 
20689
20690
  // EXTERNAL MODULE: ./node_modules/prismjs/prism.js
@@ -20876,7 +20877,7 @@ var injectStylesIntoStyleTag = __webpack_require__(3);
20876
20877
  var injectStylesIntoStyleTag_default = /*#__PURE__*/__webpack_require__.n(injectStylesIntoStyleTag);
20877
20878
 
20878
20879
  // EXTERNAL MODULE: ./node_modules/css-loader/dist/cjs.js!./node_modules/vue-loader/lib/loaders/stylePostLoader.js!./node_modules/sass-loader/dist/cjs.js!./node_modules/vue-loader/lib??vue-loader-options!./src/components/Typewriter/src/main.vue?vue&type=style&index=0&id=0a15f16e&prod&lang=scss&scoped=true
20879
- var mainvue_type_style_index_0_id_0a15f16e_prod_lang_scss_scoped_true = __webpack_require__(9);
20880
+ var mainvue_type_style_index_0_id_0a15f16e_prod_lang_scss_scoped_true = __webpack_require__(10);
20880
20881
 
20881
20882
  // CONCATENATED MODULE: ./node_modules/style-loader/dist/cjs.js!./node_modules/css-loader/dist/cjs.js!./node_modules/vue-loader/lib/loaders/stylePostLoader.js!./node_modules/sass-loader/dist/cjs.js!./node_modules/vue-loader/lib??vue-loader-options!./src/components/Typewriter/src/main.vue?vue&type=style&index=0&id=0a15f16e&prod&lang=scss&scoped=true
20882
20883
 
@@ -20928,7 +20929,7 @@ main.install = function (Vue) {
20928
20929
  /* harmony default export */ var Typewriter = __webpack_exports__["default"] = (main);
20929
20930
 
20930
20931
  /***/ }),
20931
- /* 12 */
20932
+ /* 13 */
20932
20933
  /***/ (function(module, exports, __webpack_require__) {
20933
20934
 
20934
20935
  "use strict";
@@ -20941,7 +20942,7 @@ module.exports = __webpack_require__(30);
20941
20942
 
20942
20943
 
20943
20944
  /***/ }),
20944
- /* 13 */
20945
+ /* 14 */
20945
20946
  /***/ (function(module, exports, __webpack_require__) {
20946
20947
 
20947
20948
  "use strict";
@@ -20955,25 +20956,25 @@ module.exports.parse = __webpack_require__(34);
20955
20956
 
20956
20957
 
20957
20958
  /***/ }),
20958
- /* 14 */
20959
+ /* 15 */
20959
20960
  /***/ (function(module, exports) {
20960
20961
 
20961
20962
  module.exports=/[\0-\uD7FF\uE000-\uFFFF]|[\uD800-\uDBFF][\uDC00-\uDFFF]|[\uD800-\uDBFF](?![\uDC00-\uDFFF])|(?:[^\uD800-\uDBFF]|^)[\uDC00-\uDFFF]/
20962
20963
 
20963
20964
  /***/ }),
20964
- /* 15 */
20965
+ /* 16 */
20965
20966
  /***/ (function(module, exports) {
20966
20967
 
20967
20968
  module.exports=/[\0-\x1F\x7F-\x9F]/
20968
20969
 
20969
20970
  /***/ }),
20970
- /* 16 */
20971
+ /* 17 */
20971
20972
  /***/ (function(module, exports) {
20972
20973
 
20973
20974
  module.exports=/[ \xA0\u1680\u2000-\u200A\u2028\u2029\u202F\u205F\u3000]/
20974
20975
 
20975
20976
  /***/ }),
20976
- /* 17 */
20977
+ /* 18 */
20977
20978
  /***/ (function(module, exports, __webpack_require__) {
20978
20979
 
20979
20980
  "use strict";
@@ -21008,7 +21009,7 @@ module.exports.HTML_OPEN_CLOSE_TAG_RE = HTML_OPEN_CLOSE_TAG_RE;
21008
21009
 
21009
21010
 
21010
21011
  /***/ }),
21011
- /* 18 */
21012
+ /* 19 */
21012
21013
  /***/ (function(module, exports, __webpack_require__) {
21013
21014
 
21014
21015
  "use strict";
@@ -21145,7 +21146,7 @@ module.exports.postProcess = function strikethrough(state) {
21145
21146
 
21146
21147
 
21147
21148
  /***/ }),
21148
- /* 19 */
21149
+ /* 20 */
21149
21150
  /***/ (function(module, exports, __webpack_require__) {
21150
21151
 
21151
21152
  "use strict";
@@ -21282,10 +21283,10 @@ module.exports.postProcess = function emphasis(state) {
21282
21283
 
21283
21284
 
21284
21285
  /***/ }),
21285
- /* 20 */
21286
+ /* 21 */
21286
21287
  /***/ (function(module, exports, __webpack_require__) {
21287
21288
 
21288
- /*! @license DOMPurify 3.2.6 | (c) Cure53 and other contributors | Released under the Apache license 2.0 and Mozilla Public License 2.0 | github.com/cure53/DOMPurify/blob/3.2.6/LICENSE */
21289
+ /*! @license DOMPurify 3.2.5 | (c) Cure53 and other contributors | Released under the Apache license 2.0 and Mozilla Public License 2.0 | github.com/cure53/DOMPurify/blob/3.2.5/LICENSE */
21289
21290
 
21290
21291
  (function (global, factory) {
21291
21292
  true ? module.exports = factory() :
@@ -21494,7 +21495,7 @@ module.exports.postProcess = function emphasis(state) {
21494
21495
  const TMPLIT_EXPR = seal(/\$\{[\w\W]*/gm); // eslint-disable-line unicorn/better-regex
21495
21496
  const DATA_ATTR = seal(/^data-[\-\w.\u00B7-\uFFFF]+$/); // eslint-disable-line no-useless-escape
21496
21497
  const ARIA_ATTR = seal(/^aria-[\-\w]+$/); // eslint-disable-line no-useless-escape
21497
- const IS_ALLOWED_URI = seal(/^(?:(?:(?:f|ht)tps?|mailto|tel|callto|sms|cid|xmpp|matrix):|[^a-z]|[a-z+.\-]+(?:[^a-z+.\-:]|$))/i // eslint-disable-line no-useless-escape
21498
+ const IS_ALLOWED_URI = seal(/^(?:(?:(?:f|ht)tps?|mailto|tel|callto|sms|cid|xmpp):|[^a-z]|[a-z+.\-]+(?:[^a-z+.\-:]|$))/i // eslint-disable-line no-useless-escape
21498
21499
  );
21499
21500
  const IS_SCRIPT_OR_DATA = seal(/^(?:\w+script|data):/i);
21500
21501
  const ATTR_WHITESPACE = seal(/[\u0000-\u0020\u00A0\u1680\u180E\u2000-\u2029\u205F\u3000]/g // eslint-disable-line no-control-regex
@@ -21591,7 +21592,7 @@ module.exports.postProcess = function emphasis(state) {
21591
21592
  function createDOMPurify() {
21592
21593
  let window = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : getGlobal();
21593
21594
  const DOMPurify = root => createDOMPurify(root);
21594
- DOMPurify.version = '3.2.6';
21595
+ DOMPurify.version = '3.2.5';
21595
21596
  DOMPurify.removed = [];
21596
21597
  if (!window || !window.document || window.document.nodeType !== NODE_TYPE.document || !window.Element) {
21597
21598
  // Not running in a browser, provide a factory function
@@ -21830,8 +21831,8 @@ module.exports.postProcess = function emphasis(state) {
21830
21831
  URI_SAFE_ATTRIBUTES = objectHasOwnProperty(cfg, 'ADD_URI_SAFE_ATTR') ? addToSet(clone(DEFAULT_URI_SAFE_ATTRIBUTES), cfg.ADD_URI_SAFE_ATTR, transformCaseFunc) : DEFAULT_URI_SAFE_ATTRIBUTES;
21831
21832
  DATA_URI_TAGS = objectHasOwnProperty(cfg, 'ADD_DATA_URI_TAGS') ? addToSet(clone(DEFAULT_DATA_URI_TAGS), cfg.ADD_DATA_URI_TAGS, transformCaseFunc) : DEFAULT_DATA_URI_TAGS;
21832
21833
  FORBID_CONTENTS = objectHasOwnProperty(cfg, 'FORBID_CONTENTS') ? addToSet({}, cfg.FORBID_CONTENTS, transformCaseFunc) : DEFAULT_FORBID_CONTENTS;
21833
- FORBID_TAGS = objectHasOwnProperty(cfg, 'FORBID_TAGS') ? addToSet({}, cfg.FORBID_TAGS, transformCaseFunc) : clone({});
21834
- FORBID_ATTR = objectHasOwnProperty(cfg, 'FORBID_ATTR') ? addToSet({}, cfg.FORBID_ATTR, transformCaseFunc) : clone({});
21834
+ FORBID_TAGS = objectHasOwnProperty(cfg, 'FORBID_TAGS') ? addToSet({}, cfg.FORBID_TAGS, transformCaseFunc) : {};
21835
+ FORBID_ATTR = objectHasOwnProperty(cfg, 'FORBID_ATTR') ? addToSet({}, cfg.FORBID_ATTR, transformCaseFunc) : {};
21835
21836
  USE_PROFILES = objectHasOwnProperty(cfg, 'USE_PROFILES') ? cfg.USE_PROFILES : false;
21836
21837
  ALLOW_ARIA_ATTR = cfg.ALLOW_ARIA_ATTR !== false; // Default true
21837
21838
  ALLOW_DATA_ATTR = cfg.ALLOW_DATA_ATTR !== false; // Default true
@@ -22196,7 +22197,7 @@ module.exports.postProcess = function emphasis(state) {
22196
22197
  allowedTags: ALLOWED_TAGS
22197
22198
  });
22198
22199
  /* Detect mXSS attempts abusing namespace confusion */
22199
- if (SAFE_FOR_XML && currentNode.hasChildNodes() && !_isNode(currentNode.firstElementChild) && regExpTest(/<[/\w!]/g, currentNode.innerHTML) && regExpTest(/<[/\w!]/g, currentNode.textContent)) {
22200
+ if (currentNode.hasChildNodes() && !_isNode(currentNode.firstElementChild) && regExpTest(/<[/\w!]/g, currentNode.innerHTML) && regExpTest(/<[/\w!]/g, currentNode.textContent)) {
22200
22201
  _forceRemove(currentNode);
22201
22202
  return true;
22202
22203
  }
@@ -22348,8 +22349,7 @@ module.exports.postProcess = function emphasis(state) {
22348
22349
  value: attrValue
22349
22350
  } = attr;
22350
22351
  const lcName = transformCaseFunc(name);
22351
- const initValue = attrValue;
22352
- let value = name === 'value' ? initValue : stringTrim(initValue);
22352
+ let value = name === 'value' ? attrValue : stringTrim(attrValue);
22353
22353
  /* Execute a hook if present */
22354
22354
  hookEvent.attrName = lcName;
22355
22355
  hookEvent.attrValue = value;
@@ -22375,9 +22375,10 @@ module.exports.postProcess = function emphasis(state) {
22375
22375
  if (hookEvent.forceKeepAttr) {
22376
22376
  continue;
22377
22377
  }
22378
+ /* Remove attribute */
22379
+ _removeAttribute(name, currentNode);
22378
22380
  /* Did the hooks approve of the attribute? */
22379
22381
  if (!hookEvent.keepAttr) {
22380
- _removeAttribute(name, currentNode);
22381
22382
  continue;
22382
22383
  }
22383
22384
  /* Work around a security issue in jQuery 3.0 */
@@ -22394,7 +22395,6 @@ module.exports.postProcess = function emphasis(state) {
22394
22395
  /* Is `value` valid for this attribute? */
22395
22396
  const lcTag = transformCaseFunc(currentNode.nodeName);
22396
22397
  if (!_isValidAttribute(lcTag, lcName, value)) {
22397
- _removeAttribute(name, currentNode);
22398
22398
  continue;
22399
22399
  }
22400
22400
  /* Handle attributes that require Trusted Types */
@@ -22415,23 +22415,19 @@ module.exports.postProcess = function emphasis(state) {
22415
22415
  }
22416
22416
  }
22417
22417
  /* Handle invalid data-* attribute set by try-catching it */
22418
- if (value !== initValue) {
22419
- try {
22420
- if (namespaceURI) {
22421
- currentNode.setAttributeNS(namespaceURI, name, value);
22422
- } else {
22423
- /* Fallback to setAttribute() for browser-unrecognized namespaces e.g. "x-schema". */
22424
- currentNode.setAttribute(name, value);
22425
- }
22426
- if (_isClobbered(currentNode)) {
22427
- _forceRemove(currentNode);
22428
- } else {
22429
- arrayPop(DOMPurify.removed);
22430
- }
22431
- } catch (_) {
22432
- _removeAttribute(name, currentNode);
22418
+ try {
22419
+ if (namespaceURI) {
22420
+ currentNode.setAttributeNS(namespaceURI, name, value);
22421
+ } else {
22422
+ /* Fallback to setAttribute() for browser-unrecognized namespaces e.g. "x-schema". */
22423
+ currentNode.setAttribute(name, value);
22433
22424
  }
22434
- }
22425
+ if (_isClobbered(currentNode)) {
22426
+ _forceRemove(currentNode);
22427
+ } else {
22428
+ arrayPop(DOMPurify.removed);
22429
+ }
22430
+ } catch (_) {}
22435
22431
  }
22436
22432
  /* Execute a hook if present */
22437
22433
  _executeHooks(hooks.afterSanitizeAttributes, currentNode, null);
@@ -22641,7 +22637,7 @@ module.exports.postProcess = function emphasis(state) {
22641
22637
 
22642
22638
 
22643
22639
  /***/ }),
22644
- /* 21 */
22640
+ /* 22 */
22645
22641
  /***/ (function(module, exports, __webpack_require__) {
22646
22642
 
22647
22643
  "use strict";
@@ -22652,7 +22648,7 @@ module.exports = __webpack_require__(29);
22652
22648
 
22653
22649
 
22654
22650
  /***/ }),
22655
- /* 22 */
22651
+ /* 23 */
22656
22652
  /***/ (function(module, __webpack_exports__, __webpack_require__) {
22657
22653
 
22658
22654
  "use strict";
@@ -22668,7 +22664,7 @@ ___CSS_LOADER_EXPORT___.push([module.i, "/**\n * prism.js default theme for Java
22668
22664
 
22669
22665
 
22670
22666
  /***/ }),
22671
- /* 23 */
22667
+ /* 24 */
22672
22668
  /***/ (function(module, exports) {
22673
22669
 
22674
22670
  module.exports = function(module) {
@@ -22696,7 +22692,6 @@ module.exports = function(module) {
22696
22692
 
22697
22693
 
22698
22694
  /***/ }),
22699
- /* 24 */,
22700
22695
  /* 25 */,
22701
22696
  /* 26 */,
22702
22697
  /* 27 */,
@@ -22717,7 +22712,7 @@ var ParserCore = __webpack_require__(42);
22717
22712
  var ParserBlock = __webpack_require__(50);
22718
22713
  var ParserInline = __webpack_require__(64);
22719
22714
  var LinkifyIt = __webpack_require__(77);
22720
- var mdurl = __webpack_require__(13);
22715
+ var mdurl = __webpack_require__(14);
22721
22716
  var punycode = __webpack_require__(79);
22722
22717
 
22723
22718
 
@@ -23887,11 +23882,11 @@ module.exports = urlParse;
23887
23882
  "use strict";
23888
23883
 
23889
23884
 
23890
- exports.Any = __webpack_require__(14);
23891
- exports.Cc = __webpack_require__(15);
23885
+ exports.Any = __webpack_require__(15);
23886
+ exports.Cc = __webpack_require__(16);
23892
23887
  exports.Cf = __webpack_require__(36);
23893
- exports.P = __webpack_require__(6);
23894
- exports.Z = __webpack_require__(16);
23888
+ exports.P = __webpack_require__(7);
23889
+ exports.Z = __webpack_require__(17);
23895
23890
 
23896
23891
 
23897
23892
  /***/ }),
@@ -24482,7 +24477,7 @@ module.exports = Renderer;
24482
24477
 
24483
24478
 
24484
24479
 
24485
- var Ruler = __webpack_require__(7);
24480
+ var Ruler = __webpack_require__(8);
24486
24481
 
24487
24482
 
24488
24483
  var _rules = [
@@ -25075,7 +25070,7 @@ module.exports = function smartquotes(state) {
25075
25070
  //
25076
25071
 
25077
25072
 
25078
- var Token = __webpack_require__(8);
25073
+ var Token = __webpack_require__(9);
25079
25074
 
25080
25075
 
25081
25076
  function StateCore(src, md, env) {
@@ -25106,7 +25101,7 @@ module.exports = StateCore;
25106
25101
 
25107
25102
 
25108
25103
 
25109
- var Ruler = __webpack_require__(7);
25104
+ var Ruler = __webpack_require__(8);
25110
25105
 
25111
25106
 
25112
25107
  var _rules = [
@@ -26526,7 +26521,7 @@ module.exports = function reference(state, startLine, _endLine, silent) {
26526
26521
 
26527
26522
 
26528
26523
  var block_names = __webpack_require__(59);
26529
- var HTML_OPEN_CLOSE_TAG_RE = __webpack_require__(17).HTML_OPEN_CLOSE_TAG_RE;
26524
+ var HTML_OPEN_CLOSE_TAG_RE = __webpack_require__(18).HTML_OPEN_CLOSE_TAG_RE;
26530
26525
 
26531
26526
  // An array of opening and corresponding closing sequences for html tags,
26532
26527
  // last argument defines whether it can terminate a paragraph or not
@@ -26893,7 +26888,7 @@ module.exports = function paragraph(state, startLine/*, endLine*/) {
26893
26888
 
26894
26889
 
26895
26890
 
26896
- var Token = __webpack_require__(8);
26891
+ var Token = __webpack_require__(9);
26897
26892
  var isSpace = __webpack_require__(1).isSpace;
26898
26893
 
26899
26894
 
@@ -27135,7 +27130,7 @@ module.exports = StateBlock;
27135
27130
 
27136
27131
 
27137
27132
 
27138
- var Ruler = __webpack_require__(7);
27133
+ var Ruler = __webpack_require__(8);
27139
27134
 
27140
27135
 
27141
27136
  ////////////////////////////////////////////////////////////////////////////////
@@ -27146,8 +27141,8 @@ var _rules = [
27146
27141
  [ 'newline', __webpack_require__(66) ],
27147
27142
  [ 'escape', __webpack_require__(67) ],
27148
27143
  [ 'backticks', __webpack_require__(68) ],
27149
- [ 'strikethrough', __webpack_require__(18).tokenize ],
27150
- [ 'emphasis', __webpack_require__(19).tokenize ],
27144
+ [ 'strikethrough', __webpack_require__(19).tokenize ],
27145
+ [ 'emphasis', __webpack_require__(20).tokenize ],
27151
27146
  [ 'link', __webpack_require__(69) ],
27152
27147
  [ 'image', __webpack_require__(70) ],
27153
27148
  [ 'autolink', __webpack_require__(71) ],
@@ -27157,8 +27152,8 @@ var _rules = [
27157
27152
 
27158
27153
  var _rules2 = [
27159
27154
  [ 'balance_pairs', __webpack_require__(74) ],
27160
- [ 'strikethrough', __webpack_require__(18).postProcess ],
27161
- [ 'emphasis', __webpack_require__(19).postProcess ],
27155
+ [ 'strikethrough', __webpack_require__(19).postProcess ],
27156
+ [ 'emphasis', __webpack_require__(20).postProcess ],
27162
27157
  [ 'text_collapse', __webpack_require__(75) ]
27163
27158
  ];
27164
27159
 
@@ -27991,7 +27986,7 @@ module.exports = function autolink(state, silent) {
27991
27986
 
27992
27987
 
27993
27988
 
27994
- var HTML_TAG_RE = __webpack_require__(17).HTML_TAG_RE;
27989
+ var HTML_TAG_RE = __webpack_require__(18).HTML_TAG_RE;
27995
27990
 
27996
27991
 
27997
27992
  function isLetter(ch) {
@@ -28044,7 +28039,7 @@ module.exports = function html_inline(state, silent) {
28044
28039
 
28045
28040
 
28046
28041
 
28047
- var entities = __webpack_require__(12);
28042
+ var entities = __webpack_require__(13);
28048
28043
  var has = __webpack_require__(1).has;
28049
28044
  var isValidEntityCode = __webpack_require__(1).isValidEntityCode;
28050
28045
  var fromCodePoint = __webpack_require__(1).fromCodePoint;
@@ -28285,7 +28280,7 @@ module.exports = function text_collapse(state) {
28285
28280
 
28286
28281
 
28287
28282
 
28288
- var Token = __webpack_require__(8);
28283
+ var Token = __webpack_require__(9);
28289
28284
  var isWhiteSpace = __webpack_require__(1).isWhiteSpace;
28290
28285
  var isPunctChar = __webpack_require__(1).isPunctChar;
28291
28286
  var isMdAsciiPunct = __webpack_require__(1).isMdAsciiPunct;
@@ -29091,10 +29086,10 @@ module.exports = function (opts) {
29091
29086
  var re = {};
29092
29087
 
29093
29088
  // Use direct extract instead of `regenerate` to reduse browserified size
29094
- re.src_Any = __webpack_require__(14).source;
29095
- re.src_Cc = __webpack_require__(15).source;
29096
- re.src_Z = __webpack_require__(16).source;
29097
- re.src_P = __webpack_require__(6).source;
29089
+ re.src_Any = __webpack_require__(15).source;
29090
+ re.src_Cc = __webpack_require__(16).source;
29091
+ re.src_Z = __webpack_require__(17).source;
29092
+ re.src_P = __webpack_require__(7).source;
29098
29093
 
29099
29094
  // \p{\Z\P\Cc\CF} (white spaces + control + format + punctuation)
29100
29095
  re.src_ZPCc = [ re.src_Z, re.src_P, re.src_Cc ].join('|');
@@ -29791,7 +29786,7 @@ module.exports = function (opts) {
29791
29786
 
29792
29787
  }(this));
29793
29788
 
29794
- /* WEBPACK VAR INJECTION */}.call(this, __webpack_require__(23)(module), __webpack_require__(10)))
29789
+ /* WEBPACK VAR INJECTION */}.call(this, __webpack_require__(24)(module), __webpack_require__(11)))
29795
29790
 
29796
29791
  /***/ }),
29797
29792
  /* 80 */
@@ -30020,7 +30015,7 @@ module.exports = {
30020
30015
 
30021
30016
  var ___CSS_LOADER_EXPORT___ = _node_modules_css_loader_dist_runtime_api_js__WEBPACK_IMPORTED_MODULE_0___default()(function(i){return i[1]});
30022
30017
  // Module
30023
- ___CSS_LOADER_EXPORT___.push([module.i, "[data-v-49e41fca]:root{--color-primary: #409EFF;--color-success: #67C23A;--color-warning: #E6A23C;--color-danger: #F56C6C;--color-info: #909399}.el-x-thoughtchain-item-dot[data-v-49e41fca]{display:flex;justify-content:center;align-items:center}.el-x-thoughtchain-item-dot .el-button[data-v-49e41fca]{cursor:default !important}.el-x-thoughtchain .el-collapse[data-v-49e41fca]{border:none}.el-x-thoughtchain .el-collapse .el-collapse-item__header[data-v-49e41fca]{height:20px;font-weight:normal}.el-x-thoughtchain .el-collapse .el-collapse-item__arrow[data-v-49e41fca]{margin:0 0 0 8px}.el-x-thoughtchain .el-collapse .el-collapse-item__header[data-v-49e41fca]{margin-bottom:5px}.el-x-thoughtchain .el-collapse .el-collapse-item__header[data-v-49e41fca],.el-x-thoughtchain .el-collapse .el-collapse-item__wrap[data-v-49e41fca]{border:none}.el-x-thoughtchain .el-collapse .el-collapse-item__content[data-v-49e41fca]{color:#909399;padding:0}.el-x-thoughtchain .el-timeline[data-v-49e41fca]{padding:10px 0 0 5px}.el-x-thoughtchain .el-timeline-item__timestamp[data-v-49e41fca]{color:#303133}.el-x-thoughtchain .el-timeline-item__content[data-v-49e41fca]{color:#909399}.el-x-thoughtchain .el-timeline-item[data-v-49e41fca]{list-style:none !important}.thought-chain-move[data-v-49e41fca],.thought-chain-enter-active[data-v-49e41fca],.thought-chain-leave-active[data-v-49e41fca]{transition:all 0.5s ease}.thought-chain-enter[data-v-49e41fca],.thought-chain-leave-to[data-v-49e41fca]{opacity:0;transform:translateY(10px) scaleY(0.9)}.thought-chain-leave-active[data-v-49e41fca]{position:absolute}.el-x-thoughtchain-loading[data-v-49e41fca]{animation:thoughtchain-rotating-49e41fca 1.5s linear infinite;transform-origin:center center;will-change:transform;backface-visibility:hidden;-webkit-font-smoothing:antialiased}@keyframes thoughtchain-rotating-49e41fca{0%{transform:rotate(0deg)}25%{transform:rotate(90deg)}50%{transform:rotate(180deg)}75%{transform:rotate(270deg)}100%{transform:rotate(360deg)}}\n", ""]);
30018
+ ___CSS_LOADER_EXPORT___.push([module.i, "[data-v-49e41fca]:root{--color-primary: #409EFF;--color-success: #67C23A;--color-warning: #E6A23C;--color-danger: #F56C6C;--color-info: #909399}.el-x-thoughtchain-item-dot[data-v-49e41fca]{display:flex;justify-content:center;align-items:center}.el-x-thoughtchain-item-dot .el-button[data-v-49e41fca]{cursor:default !important}.el-x-thoughtchain .el-collapse[data-v-49e41fca]{border:none}.el-x-thoughtchain .el-collapse .el-collapse-item__header[data-v-49e41fca]{height:20px;font-weight:normal}.el-x-thoughtchain .el-collapse .el-collapse-item__arrow[data-v-49e41fca]{margin:0 0 0 8px}.el-x-thoughtchain .el-collapse .el-collapse-item__header[data-v-49e41fca]{margin-bottom:5px}.el-x-thoughtchain .el-collapse .el-collapse-item__header[data-v-49e41fca],.el-x-thoughtchain .el-collapse .el-collapse-item__wrap[data-v-49e41fca]{border:none}.el-x-thoughtchain .el-collapse .el-collapse-item__content[data-v-49e41fca]{color:#909399;padding:0}.el-x-thoughtchain .el-timeline[data-v-49e41fca]{padding:10px 0 0 5px}.el-x-thoughtchain .el-timeline-item__timestamp[data-v-49e41fca]{color:#303133}.el-x-thoughtchain .el-timeline-item__content[data-v-49e41fca]{color:#909399}.el-x-thoughtchain .el-timeline-item[data-v-49e41fca]{list-style:none !important}.thought-chain-move[data-v-49e41fca],.thought-chain-enter-active[data-v-49e41fca],.thought-chain-leave-active[data-v-49e41fca]{transition:all .5s ease}.thought-chain-enter[data-v-49e41fca],.thought-chain-leave-to[data-v-49e41fca]{opacity:0;transform:translateY(10px) scaleY(0.9)}.thought-chain-leave-active[data-v-49e41fca]{position:absolute}.el-x-thoughtchain-loading[data-v-49e41fca]{animation:thoughtchain-rotating-49e41fca 1.5s linear infinite;transform-origin:center center;will-change:transform;backface-visibility:hidden;-webkit-font-smoothing:antialiased}@keyframes thoughtchain-rotating-49e41fca{0%{transform:rotate(0deg)}25%{transform:rotate(90deg)}50%{transform:rotate(180deg)}75%{transform:rotate(270deg)}100%{transform:rotate(360deg)}}", ""]);
30024
30019
  // Exports
30025
30020
  /* harmony default export */ __webpack_exports__["a"] = (___CSS_LOADER_EXPORT___);
30026
30021
 
@@ -30147,10 +30142,10 @@ render._withStripped = true;
30147
30142
  // CONCATENATED MODULE: ./src/components/ThoughtChain/src/main.vue?vue&type=template&id=49e41fca&scoped=true
30148
30143
 
30149
30144
  // EXTERNAL MODULE: ./node_modules/lodash/lodash.js
30150
- var lodash = __webpack_require__(5);
30145
+ var lodash = __webpack_require__(6);
30151
30146
 
30152
30147
  // EXTERNAL MODULE: ./src/components/Typewriter/index.js + 7 modules
30153
- var Typewriter = __webpack_require__(11);
30148
+ var Typewriter = __webpack_require__(12);
30154
30149
 
30155
30150
  // CONCATENATED MODULE: ./node_modules/babel-loader/lib!./node_modules/vue-loader/lib??vue-loader-options!./src/components/ThoughtChain/src/main.vue?vue&type=script&lang=js
30156
30151