vue-element-ui-x 0.1.6-beta → 0.1.8-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 +11 -11
  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 +1463 -1457
  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 +1 -1
  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 +2 -2
  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
@@ -82,7 +82,7 @@ module.exports =
82
82
  /******/
83
83
  /******/
84
84
  /******/ // Load entry module and return exports
85
- /******/ return __webpack_require__(__webpack_require__.s = 11);
85
+ /******/ return __webpack_require__(__webpack_require__.s = 12);
86
86
  /******/ })
87
87
  /************************************************************************/
88
88
  /******/ ([
@@ -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,17 +2811,18 @@ 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
2817
  /* 5 */,
2818
- /* 6 */
2818
+ /* 6 */,
2819
+ /* 7 */
2819
2820
  /***/ (function(module, exports) {
2820
2821
 
2821
2822
  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]/
2822
2823
 
2823
2824
  /***/ }),
2824
- /* 7 */
2825
+ /* 8 */
2825
2826
  /***/ (function(module, exports, __webpack_require__) {
2826
2827
 
2827
2828
  "use strict";
@@ -3180,7 +3181,7 @@ module.exports = Ruler;
3180
3181
 
3181
3182
 
3182
3183
  /***/ }),
3183
- /* 8 */
3184
+ /* 9 */
3184
3185
  /***/ (function(module, exports, __webpack_require__) {
3185
3186
 
3186
3187
  "use strict";
@@ -3388,26 +3389,26 @@ module.exports = Token;
3388
3389
 
3389
3390
 
3390
3391
  /***/ }),
3391
- /* 9 */
3392
+ /* 10 */
3392
3393
  /***/ (function(module, __webpack_exports__, __webpack_require__) {
3393
3394
 
3394
3395
  "use strict";
3395
3396
  /* harmony import */ var _node_modules_css_loader_dist_runtime_api_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(2);
3396
3397
  /* 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__);
3397
- /* harmony import */ var _node_modules_css_loader_dist_cjs_js_node_modules_prismjs_themes_prism_css__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(22);
3398
+ /* harmony import */ var _node_modules_css_loader_dist_cjs_js_node_modules_prismjs_themes_prism_css__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(23);
3398
3399
  // Imports
3399
3400
 
3400
3401
 
3401
3402
  var ___CSS_LOADER_EXPORT___ = _node_modules_css_loader_dist_runtime_api_js__WEBPACK_IMPORTED_MODULE_0___default()(function(i){return i[1]});
3402
3403
  ___CSS_LOADER_EXPORT___.i(_node_modules_css_loader_dist_cjs_js_node_modules_prismjs_themes_prism_css__WEBPACK_IMPORTED_MODULE_1__[/* default */ "a"]);
3403
3404
  // Module
3404
- ___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", ""]);
3405
+ ___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))}", ""]);
3405
3406
  // Exports
3406
3407
  /* harmony default export */ __webpack_exports__["a"] = (___CSS_LOADER_EXPORT___);
3407
3408
 
3408
3409
 
3409
3410
  /***/ }),
3410
- /* 10 */
3411
+ /* 11 */
3411
3412
  /***/ (function(module, exports) {
3412
3413
 
3413
3414
  var g;
@@ -3433,7 +3434,7 @@ module.exports = g;
3433
3434
 
3434
3435
 
3435
3436
  /***/ }),
3436
- /* 11 */
3437
+ /* 12 */
3437
3438
  /***/ (function(module, __webpack_exports__, __webpack_require__) {
3438
3439
 
3439
3440
  "use strict";
@@ -3472,11 +3473,11 @@ render._withStripped = true;
3472
3473
  // CONCATENATED MODULE: ./src/components/Typewriter/src/main.vue?vue&type=template&id=0a15f16e&scoped=true
3473
3474
 
3474
3475
  // EXTERNAL MODULE: ./node_modules/dompurify/dist/purify.js
3475
- var purify = __webpack_require__(20);
3476
+ var purify = __webpack_require__(21);
3476
3477
  var purify_default = /*#__PURE__*/__webpack_require__.n(purify);
3477
3478
 
3478
3479
  // EXTERNAL MODULE: ./node_modules/markdown-it/index.js
3479
- var markdown_it = __webpack_require__(21);
3480
+ var markdown_it = __webpack_require__(22);
3480
3481
  var markdown_it_default = /*#__PURE__*/__webpack_require__.n(markdown_it);
3481
3482
 
3482
3483
  // EXTERNAL MODULE: ./node_modules/prismjs/prism.js
@@ -3669,7 +3670,7 @@ var injectStylesIntoStyleTag = __webpack_require__(3);
3669
3670
  var injectStylesIntoStyleTag_default = /*#__PURE__*/__webpack_require__.n(injectStylesIntoStyleTag);
3670
3671
 
3671
3672
  // 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
3672
- var mainvue_type_style_index_0_id_0a15f16e_prod_lang_scss_scoped_true = __webpack_require__(9);
3673
+ var mainvue_type_style_index_0_id_0a15f16e_prod_lang_scss_scoped_true = __webpack_require__(10);
3673
3674
 
3674
3675
  // 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
3675
3676
 
@@ -3721,7 +3722,7 @@ main.install = function (Vue) {
3721
3722
  /* harmony default export */ var Typewriter = __webpack_exports__["default"] = (main);
3722
3723
 
3723
3724
  /***/ }),
3724
- /* 12 */
3725
+ /* 13 */
3725
3726
  /***/ (function(module, exports, __webpack_require__) {
3726
3727
 
3727
3728
  "use strict";
@@ -3734,7 +3735,7 @@ module.exports = __webpack_require__(30);
3734
3735
 
3735
3736
 
3736
3737
  /***/ }),
3737
- /* 13 */
3738
+ /* 14 */
3738
3739
  /***/ (function(module, exports, __webpack_require__) {
3739
3740
 
3740
3741
  "use strict";
@@ -3748,25 +3749,25 @@ module.exports.parse = __webpack_require__(34);
3748
3749
 
3749
3750
 
3750
3751
  /***/ }),
3751
- /* 14 */
3752
+ /* 15 */
3752
3753
  /***/ (function(module, exports) {
3753
3754
 
3754
3755
  module.exports=/[\0-\uD7FF\uE000-\uFFFF]|[\uD800-\uDBFF][\uDC00-\uDFFF]|[\uD800-\uDBFF](?![\uDC00-\uDFFF])|(?:[^\uD800-\uDBFF]|^)[\uDC00-\uDFFF]/
3755
3756
 
3756
3757
  /***/ }),
3757
- /* 15 */
3758
+ /* 16 */
3758
3759
  /***/ (function(module, exports) {
3759
3760
 
3760
3761
  module.exports=/[\0-\x1F\x7F-\x9F]/
3761
3762
 
3762
3763
  /***/ }),
3763
- /* 16 */
3764
+ /* 17 */
3764
3765
  /***/ (function(module, exports) {
3765
3766
 
3766
3767
  module.exports=/[ \xA0\u1680\u2000-\u200A\u2028\u2029\u202F\u205F\u3000]/
3767
3768
 
3768
3769
  /***/ }),
3769
- /* 17 */
3770
+ /* 18 */
3770
3771
  /***/ (function(module, exports, __webpack_require__) {
3771
3772
 
3772
3773
  "use strict";
@@ -3801,7 +3802,7 @@ module.exports.HTML_OPEN_CLOSE_TAG_RE = HTML_OPEN_CLOSE_TAG_RE;
3801
3802
 
3802
3803
 
3803
3804
  /***/ }),
3804
- /* 18 */
3805
+ /* 19 */
3805
3806
  /***/ (function(module, exports, __webpack_require__) {
3806
3807
 
3807
3808
  "use strict";
@@ -3938,7 +3939,7 @@ module.exports.postProcess = function strikethrough(state) {
3938
3939
 
3939
3940
 
3940
3941
  /***/ }),
3941
- /* 19 */
3942
+ /* 20 */
3942
3943
  /***/ (function(module, exports, __webpack_require__) {
3943
3944
 
3944
3945
  "use strict";
@@ -4075,10 +4076,10 @@ module.exports.postProcess = function emphasis(state) {
4075
4076
 
4076
4077
 
4077
4078
  /***/ }),
4078
- /* 20 */
4079
+ /* 21 */
4079
4080
  /***/ (function(module, exports, __webpack_require__) {
4080
4081
 
4081
- /*! @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 */
4082
+ /*! @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 */
4082
4083
 
4083
4084
  (function (global, factory) {
4084
4085
  true ? module.exports = factory() :
@@ -4287,7 +4288,7 @@ module.exports.postProcess = function emphasis(state) {
4287
4288
  const TMPLIT_EXPR = seal(/\$\{[\w\W]*/gm); // eslint-disable-line unicorn/better-regex
4288
4289
  const DATA_ATTR = seal(/^data-[\-\w.\u00B7-\uFFFF]+$/); // eslint-disable-line no-useless-escape
4289
4290
  const ARIA_ATTR = seal(/^aria-[\-\w]+$/); // eslint-disable-line no-useless-escape
4290
- 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
4291
+ 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
4291
4292
  );
4292
4293
  const IS_SCRIPT_OR_DATA = seal(/^(?:\w+script|data):/i);
4293
4294
  const ATTR_WHITESPACE = seal(/[\u0000-\u0020\u00A0\u1680\u180E\u2000-\u2029\u205F\u3000]/g // eslint-disable-line no-control-regex
@@ -4384,7 +4385,7 @@ module.exports.postProcess = function emphasis(state) {
4384
4385
  function createDOMPurify() {
4385
4386
  let window = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : getGlobal();
4386
4387
  const DOMPurify = root => createDOMPurify(root);
4387
- DOMPurify.version = '3.2.6';
4388
+ DOMPurify.version = '3.2.5';
4388
4389
  DOMPurify.removed = [];
4389
4390
  if (!window || !window.document || window.document.nodeType !== NODE_TYPE.document || !window.Element) {
4390
4391
  // Not running in a browser, provide a factory function
@@ -4623,8 +4624,8 @@ module.exports.postProcess = function emphasis(state) {
4623
4624
  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;
4624
4625
  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;
4625
4626
  FORBID_CONTENTS = objectHasOwnProperty(cfg, 'FORBID_CONTENTS') ? addToSet({}, cfg.FORBID_CONTENTS, transformCaseFunc) : DEFAULT_FORBID_CONTENTS;
4626
- FORBID_TAGS = objectHasOwnProperty(cfg, 'FORBID_TAGS') ? addToSet({}, cfg.FORBID_TAGS, transformCaseFunc) : clone({});
4627
- FORBID_ATTR = objectHasOwnProperty(cfg, 'FORBID_ATTR') ? addToSet({}, cfg.FORBID_ATTR, transformCaseFunc) : clone({});
4627
+ FORBID_TAGS = objectHasOwnProperty(cfg, 'FORBID_TAGS') ? addToSet({}, cfg.FORBID_TAGS, transformCaseFunc) : {};
4628
+ FORBID_ATTR = objectHasOwnProperty(cfg, 'FORBID_ATTR') ? addToSet({}, cfg.FORBID_ATTR, transformCaseFunc) : {};
4628
4629
  USE_PROFILES = objectHasOwnProperty(cfg, 'USE_PROFILES') ? cfg.USE_PROFILES : false;
4629
4630
  ALLOW_ARIA_ATTR = cfg.ALLOW_ARIA_ATTR !== false; // Default true
4630
4631
  ALLOW_DATA_ATTR = cfg.ALLOW_DATA_ATTR !== false; // Default true
@@ -4989,7 +4990,7 @@ module.exports.postProcess = function emphasis(state) {
4989
4990
  allowedTags: ALLOWED_TAGS
4990
4991
  });
4991
4992
  /* Detect mXSS attempts abusing namespace confusion */
4992
- if (SAFE_FOR_XML && currentNode.hasChildNodes() && !_isNode(currentNode.firstElementChild) && regExpTest(/<[/\w!]/g, currentNode.innerHTML) && regExpTest(/<[/\w!]/g, currentNode.textContent)) {
4993
+ if (currentNode.hasChildNodes() && !_isNode(currentNode.firstElementChild) && regExpTest(/<[/\w!]/g, currentNode.innerHTML) && regExpTest(/<[/\w!]/g, currentNode.textContent)) {
4993
4994
  _forceRemove(currentNode);
4994
4995
  return true;
4995
4996
  }
@@ -5141,8 +5142,7 @@ module.exports.postProcess = function emphasis(state) {
5141
5142
  value: attrValue
5142
5143
  } = attr;
5143
5144
  const lcName = transformCaseFunc(name);
5144
- const initValue = attrValue;
5145
- let value = name === 'value' ? initValue : stringTrim(initValue);
5145
+ let value = name === 'value' ? attrValue : stringTrim(attrValue);
5146
5146
  /* Execute a hook if present */
5147
5147
  hookEvent.attrName = lcName;
5148
5148
  hookEvent.attrValue = value;
@@ -5168,9 +5168,10 @@ module.exports.postProcess = function emphasis(state) {
5168
5168
  if (hookEvent.forceKeepAttr) {
5169
5169
  continue;
5170
5170
  }
5171
+ /* Remove attribute */
5172
+ _removeAttribute(name, currentNode);
5171
5173
  /* Did the hooks approve of the attribute? */
5172
5174
  if (!hookEvent.keepAttr) {
5173
- _removeAttribute(name, currentNode);
5174
5175
  continue;
5175
5176
  }
5176
5177
  /* Work around a security issue in jQuery 3.0 */
@@ -5187,7 +5188,6 @@ module.exports.postProcess = function emphasis(state) {
5187
5188
  /* Is `value` valid for this attribute? */
5188
5189
  const lcTag = transformCaseFunc(currentNode.nodeName);
5189
5190
  if (!_isValidAttribute(lcTag, lcName, value)) {
5190
- _removeAttribute(name, currentNode);
5191
5191
  continue;
5192
5192
  }
5193
5193
  /* Handle attributes that require Trusted Types */
@@ -5208,23 +5208,19 @@ module.exports.postProcess = function emphasis(state) {
5208
5208
  }
5209
5209
  }
5210
5210
  /* Handle invalid data-* attribute set by try-catching it */
5211
- if (value !== initValue) {
5212
- try {
5213
- if (namespaceURI) {
5214
- currentNode.setAttributeNS(namespaceURI, name, value);
5215
- } else {
5216
- /* Fallback to setAttribute() for browser-unrecognized namespaces e.g. "x-schema". */
5217
- currentNode.setAttribute(name, value);
5218
- }
5219
- if (_isClobbered(currentNode)) {
5220
- _forceRemove(currentNode);
5221
- } else {
5222
- arrayPop(DOMPurify.removed);
5223
- }
5224
- } catch (_) {
5225
- _removeAttribute(name, currentNode);
5211
+ try {
5212
+ if (namespaceURI) {
5213
+ currentNode.setAttributeNS(namespaceURI, name, value);
5214
+ } else {
5215
+ /* Fallback to setAttribute() for browser-unrecognized namespaces e.g. "x-schema". */
5216
+ currentNode.setAttribute(name, value);
5226
5217
  }
5227
- }
5218
+ if (_isClobbered(currentNode)) {
5219
+ _forceRemove(currentNode);
5220
+ } else {
5221
+ arrayPop(DOMPurify.removed);
5222
+ }
5223
+ } catch (_) {}
5228
5224
  }
5229
5225
  /* Execute a hook if present */
5230
5226
  _executeHooks(hooks.afterSanitizeAttributes, currentNode, null);
@@ -5434,7 +5430,7 @@ module.exports.postProcess = function emphasis(state) {
5434
5430
 
5435
5431
 
5436
5432
  /***/ }),
5437
- /* 21 */
5433
+ /* 22 */
5438
5434
  /***/ (function(module, exports, __webpack_require__) {
5439
5435
 
5440
5436
  "use strict";
@@ -5445,7 +5441,7 @@ module.exports = __webpack_require__(29);
5445
5441
 
5446
5442
 
5447
5443
  /***/ }),
5448
- /* 22 */
5444
+ /* 23 */
5449
5445
  /***/ (function(module, __webpack_exports__, __webpack_require__) {
5450
5446
 
5451
5447
  "use strict";
@@ -5461,7 +5457,7 @@ ___CSS_LOADER_EXPORT___.push([module.i, "/**\n * prism.js default theme for Java
5461
5457
 
5462
5458
 
5463
5459
  /***/ }),
5464
- /* 23 */
5460
+ /* 24 */
5465
5461
  /***/ (function(module, exports) {
5466
5462
 
5467
5463
  module.exports = function(module) {
@@ -5489,7 +5485,6 @@ module.exports = function(module) {
5489
5485
 
5490
5486
 
5491
5487
  /***/ }),
5492
- /* 24 */,
5493
5488
  /* 25 */,
5494
5489
  /* 26 */,
5495
5490
  /* 27 */,
@@ -5510,7 +5505,7 @@ var ParserCore = __webpack_require__(42);
5510
5505
  var ParserBlock = __webpack_require__(50);
5511
5506
  var ParserInline = __webpack_require__(64);
5512
5507
  var LinkifyIt = __webpack_require__(77);
5513
- var mdurl = __webpack_require__(13);
5508
+ var mdurl = __webpack_require__(14);
5514
5509
  var punycode = __webpack_require__(79);
5515
5510
 
5516
5511
 
@@ -6680,11 +6675,11 @@ module.exports = urlParse;
6680
6675
  "use strict";
6681
6676
 
6682
6677
 
6683
- exports.Any = __webpack_require__(14);
6684
- exports.Cc = __webpack_require__(15);
6678
+ exports.Any = __webpack_require__(15);
6679
+ exports.Cc = __webpack_require__(16);
6685
6680
  exports.Cf = __webpack_require__(36);
6686
- exports.P = __webpack_require__(6);
6687
- exports.Z = __webpack_require__(16);
6681
+ exports.P = __webpack_require__(7);
6682
+ exports.Z = __webpack_require__(17);
6688
6683
 
6689
6684
 
6690
6685
  /***/ }),
@@ -7275,7 +7270,7 @@ module.exports = Renderer;
7275
7270
 
7276
7271
 
7277
7272
 
7278
- var Ruler = __webpack_require__(7);
7273
+ var Ruler = __webpack_require__(8);
7279
7274
 
7280
7275
 
7281
7276
  var _rules = [
@@ -7868,7 +7863,7 @@ module.exports = function smartquotes(state) {
7868
7863
  //
7869
7864
 
7870
7865
 
7871
- var Token = __webpack_require__(8);
7866
+ var Token = __webpack_require__(9);
7872
7867
 
7873
7868
 
7874
7869
  function StateCore(src, md, env) {
@@ -7899,7 +7894,7 @@ module.exports = StateCore;
7899
7894
 
7900
7895
 
7901
7896
 
7902
- var Ruler = __webpack_require__(7);
7897
+ var Ruler = __webpack_require__(8);
7903
7898
 
7904
7899
 
7905
7900
  var _rules = [
@@ -9319,7 +9314,7 @@ module.exports = function reference(state, startLine, _endLine, silent) {
9319
9314
 
9320
9315
 
9321
9316
  var block_names = __webpack_require__(59);
9322
- var HTML_OPEN_CLOSE_TAG_RE = __webpack_require__(17).HTML_OPEN_CLOSE_TAG_RE;
9317
+ var HTML_OPEN_CLOSE_TAG_RE = __webpack_require__(18).HTML_OPEN_CLOSE_TAG_RE;
9323
9318
 
9324
9319
  // An array of opening and corresponding closing sequences for html tags,
9325
9320
  // last argument defines whether it can terminate a paragraph or not
@@ -9686,7 +9681,7 @@ module.exports = function paragraph(state, startLine/*, endLine*/) {
9686
9681
 
9687
9682
 
9688
9683
 
9689
- var Token = __webpack_require__(8);
9684
+ var Token = __webpack_require__(9);
9690
9685
  var isSpace = __webpack_require__(1).isSpace;
9691
9686
 
9692
9687
 
@@ -9928,7 +9923,7 @@ module.exports = StateBlock;
9928
9923
 
9929
9924
 
9930
9925
 
9931
- var Ruler = __webpack_require__(7);
9926
+ var Ruler = __webpack_require__(8);
9932
9927
 
9933
9928
 
9934
9929
  ////////////////////////////////////////////////////////////////////////////////
@@ -9939,8 +9934,8 @@ var _rules = [
9939
9934
  [ 'newline', __webpack_require__(66) ],
9940
9935
  [ 'escape', __webpack_require__(67) ],
9941
9936
  [ 'backticks', __webpack_require__(68) ],
9942
- [ 'strikethrough', __webpack_require__(18).tokenize ],
9943
- [ 'emphasis', __webpack_require__(19).tokenize ],
9937
+ [ 'strikethrough', __webpack_require__(19).tokenize ],
9938
+ [ 'emphasis', __webpack_require__(20).tokenize ],
9944
9939
  [ 'link', __webpack_require__(69) ],
9945
9940
  [ 'image', __webpack_require__(70) ],
9946
9941
  [ 'autolink', __webpack_require__(71) ],
@@ -9950,8 +9945,8 @@ var _rules = [
9950
9945
 
9951
9946
  var _rules2 = [
9952
9947
  [ 'balance_pairs', __webpack_require__(74) ],
9953
- [ 'strikethrough', __webpack_require__(18).postProcess ],
9954
- [ 'emphasis', __webpack_require__(19).postProcess ],
9948
+ [ 'strikethrough', __webpack_require__(19).postProcess ],
9949
+ [ 'emphasis', __webpack_require__(20).postProcess ],
9955
9950
  [ 'text_collapse', __webpack_require__(75) ]
9956
9951
  ];
9957
9952
 
@@ -10784,7 +10779,7 @@ module.exports = function autolink(state, silent) {
10784
10779
 
10785
10780
 
10786
10781
 
10787
- var HTML_TAG_RE = __webpack_require__(17).HTML_TAG_RE;
10782
+ var HTML_TAG_RE = __webpack_require__(18).HTML_TAG_RE;
10788
10783
 
10789
10784
 
10790
10785
  function isLetter(ch) {
@@ -10837,7 +10832,7 @@ module.exports = function html_inline(state, silent) {
10837
10832
 
10838
10833
 
10839
10834
 
10840
- var entities = __webpack_require__(12);
10835
+ var entities = __webpack_require__(13);
10841
10836
  var has = __webpack_require__(1).has;
10842
10837
  var isValidEntityCode = __webpack_require__(1).isValidEntityCode;
10843
10838
  var fromCodePoint = __webpack_require__(1).fromCodePoint;
@@ -11078,7 +11073,7 @@ module.exports = function text_collapse(state) {
11078
11073
 
11079
11074
 
11080
11075
 
11081
- var Token = __webpack_require__(8);
11076
+ var Token = __webpack_require__(9);
11082
11077
  var isWhiteSpace = __webpack_require__(1).isWhiteSpace;
11083
11078
  var isPunctChar = __webpack_require__(1).isPunctChar;
11084
11079
  var isMdAsciiPunct = __webpack_require__(1).isMdAsciiPunct;
@@ -11884,10 +11879,10 @@ module.exports = function (opts) {
11884
11879
  var re = {};
11885
11880
 
11886
11881
  // Use direct extract instead of `regenerate` to reduse browserified size
11887
- re.src_Any = __webpack_require__(14).source;
11888
- re.src_Cc = __webpack_require__(15).source;
11889
- re.src_Z = __webpack_require__(16).source;
11890
- re.src_P = __webpack_require__(6).source;
11882
+ re.src_Any = __webpack_require__(15).source;
11883
+ re.src_Cc = __webpack_require__(16).source;
11884
+ re.src_Z = __webpack_require__(17).source;
11885
+ re.src_P = __webpack_require__(7).source;
11891
11886
 
11892
11887
  // \p{\Z\P\Cc\CF} (white spaces + control + format + punctuation)
11893
11888
  re.src_ZPCc = [ re.src_Z, re.src_P, re.src_Cc ].join('|');
@@ -12584,7 +12579,7 @@ module.exports = function (opts) {
12584
12579
 
12585
12580
  }(this));
12586
12581
 
12587
- /* WEBPACK VAR INJECTION */}.call(this, __webpack_require__(23)(module), __webpack_require__(10)))
12582
+ /* WEBPACK VAR INJECTION */}.call(this, __webpack_require__(24)(module), __webpack_require__(11)))
12588
12583
 
12589
12584
  /***/ }),
12590
12585
  /* 80 */
@@ -745,7 +745,7 @@ module.exports = function (list, options) {
745
745
 
746
746
  var ___CSS_LOADER_EXPORT___ = _node_modules_css_loader_dist_runtime_api_js__WEBPACK_IMPORTED_MODULE_0___default()(function(i){return i[1]});
747
747
  // Module
748
- ___CSS_LOADER_EXPORT___.push([module.i, "[data-v-68cfb339]:root{--color-primary: #409EFF;--color-success: #67C23A;--color-warning: #E6A23C;--color-danger: #F56C6C;--color-info: #909399}.el-x-welcome[data-v-68cfb339]{--border-radius: 4px;--icon-size: 64px;--icon-size-small: 48px;--icon-size-mobile: 40px;--gap: 16px;--gap-small: 8px;--gap-mobile: 12px;--gap-small-mobile: 6px;--padding: 24px;--padding-mobile: 16px;--title-font-size: 16px;--title-font-size-mobile: 14px;--description-font-size: 14px;--description-font-size-mobile: 13px;--color-filled-bg: #e6f4ff;--color-filled-border: #91caff;--color-title: #303133;--color-description: #606266;display:flex;gap:var(--gap);padding:var(--padding);border-radius:var(--border-radius)}.el-x-welcome.el-x-welcome-filled[data-v-68cfb339]{background-color:var(--color-filled-bg);border:1px solid var(--color-filled-border)}.el-x-welcome.el-x-welcome-borderless[data-v-68cfb339]{border:none}.el-x-welcome.el-x-welcome-rtl[data-v-68cfb339]{direction:rtl}@media (max-width: 768px){.el-x-welcome[data-v-68cfb339]{--gap: var(--gap-mobile);--gap-small: var(--gap-small-mobile);--padding: var(--padding-mobile);--title-font-size: var(--title-font-size-mobile);--description-font-size: var(--description-font-size-mobile);gap:var(--gap-mobile);padding:var(--padding-mobile)}}@media (max-width: 480px){.el-x-welcome[data-v-68cfb339]{--icon-size: var(--icon-size-mobile);--padding: 12px;--gap: 8px;--gap-small: 4px;flex-direction:column;align-items:center;text-align:center;padding:12px;gap:8px}.el-x-welcome.el-x-welcome-rtl[data-v-68cfb339]{direction:ltr}}@media (max-width: 320px){.el-x-welcome[data-v-68cfb339]{--padding: 8px;--gap: 6px;--icon-size: 32px;padding:8px;gap:6px}}.el-x-welcome-icon[data-v-68cfb339]{flex:0 0 auto;width:var(--icon-size);height:var(--icon-size);display:flex;align-items:center;justify-content:center;border-radius:calc(var(--border-radius) / 2);overflow:hidden;font-size:24px}.el-x-welcome-icon .icon-image[data-v-68cfb339]{width:100%;height:100%;object-fit:contain;padding:4px}@media (max-width: 768px){.el-x-welcome-icon[data-v-68cfb339]{width:var(--icon-size-small);height:var(--icon-size-small);font-size:20px}}@media (max-width: 480px){.el-x-welcome-icon[data-v-68cfb339]{width:var(--icon-size-mobile);height:var(--icon-size-mobile);font-size:16px;margin-bottom:4px}.el-x-welcome-icon .icon-image[data-v-68cfb339]{padding:2px}}@media (max-width: 320px){.el-x-welcome-icon[data-v-68cfb339]{width:32px;height:32px;font-size:14px}}.content-wrapper[data-v-68cfb339]{flex:1;display:flex;flex-direction:column;gap:var(--gap-small)}@media (max-width: 480px){.content-wrapper[data-v-68cfb339]{align-items:center;text-align:center;width:100%;gap:var(--gap-small-mobile)}}.title-wrapper[data-v-68cfb339]{display:flex;justify-content:space-between;align-items:center;gap:var(--gap-small)}@media (max-width: 768px){.title-wrapper[data-v-68cfb339]{gap:var(--gap-small-mobile)}}@media (max-width: 480px){.title-wrapper[data-v-68cfb339]{flex-direction:column;align-items:center;gap:4px;width:100%}}@media (max-width: 320px){.title-wrapper[data-v-68cfb339]{gap:2px}}.el-x-welcome-title[data-v-68cfb339]{margin:0;font-size:var(--title-font-size);font-weight:600;color:var(--color-title);word-break:break-word}@media (max-width: 768px){.el-x-welcome-title[data-v-68cfb339]{font-size:var(--title-font-size-mobile)}}@media (max-width: 480px){.el-x-welcome-title[data-v-68cfb339]{font-size:14px;text-align:center;line-height:1.4}}@media (max-width: 320px){.el-x-welcome-title[data-v-68cfb339]{font-size:13px}}.el-x-welcome-extra[data-v-68cfb339]{flex-shrink:0;display:flex;align-items:center;gap:var(--gap-small)}.el-x-welcome-extra .el-dropdown[data-v-68cfb339],.el-x-welcome-extra .el-button[data-v-68cfb339],.el-x-welcome-extra .el-link[data-v-68cfb339]{flex-shrink:0}@media (max-width: 768px){.el-x-welcome-extra[data-v-68cfb339]{gap:var(--gap-small-mobile)}.el-x-welcome-extra .el-button[data-v-68cfb339]{font-size:12px;padding:6px 12px}}@media (max-width: 480px){.el-x-welcome-extra[data-v-68cfb339]{justify-content:center;flex-wrap:wrap;gap:4px}.el-x-welcome-extra .el-button[data-v-68cfb339]{font-size:12px;padding:4px 8px;min-height:28px}.el-x-welcome-extra .el-dropdown .el-button[data-v-68cfb339]{font-size:12px;padding:4px 8px}.el-x-welcome-extra .el-link[data-v-68cfb339]{font-size:12px}}@media (max-width: 320px){.el-x-welcome-extra .el-button[data-v-68cfb339]{font-size:11px;padding:3px 6px;min-height:24px}}.el-x-welcome-description[data-v-68cfb339]{margin:0;font-size:var(--description-font-size);color:var(--color-description);line-height:1.5;word-break:break-word}@media (max-width: 768px){.el-x-welcome-description[data-v-68cfb339]{font-size:var(--description-font-size-mobile);line-height:1.4}}@media (max-width: 480px){.el-x-welcome-description[data-v-68cfb339]{font-size:13px;line-height:1.4;text-align:center}}@media (max-width: 320px){.el-x-welcome-description[data-v-68cfb339]{font-size:12px;line-height:1.3}}\n", ""]);
748
+ ___CSS_LOADER_EXPORT___.push([module.i, "[data-v-68cfb339]:root{--color-primary: #409EFF;--color-success: #67C23A;--color-warning: #E6A23C;--color-danger: #F56C6C;--color-info: #909399}.el-x-welcome[data-v-68cfb339]{--border-radius: 4px;--icon-size: 64px;--icon-size-small: 48px;--icon-size-mobile: 40px;--gap: 16px;--gap-small: 8px;--gap-mobile: 12px;--gap-small-mobile: 6px;--padding: 24px;--padding-mobile: 16px;--title-font-size: 16px;--title-font-size-mobile: 14px;--description-font-size: 14px;--description-font-size-mobile: 13px;--color-filled-bg: #e6f4ff;--color-filled-border: #91caff;--color-title: #303133;--color-description: #606266;display:flex;gap:var(--gap);padding:var(--padding);border-radius:var(--border-radius)}.el-x-welcome.el-x-welcome-filled[data-v-68cfb339]{background-color:var(--color-filled-bg);border:1px solid var(--color-filled-border)}.el-x-welcome.el-x-welcome-borderless[data-v-68cfb339]{border:none}.el-x-welcome.el-x-welcome-rtl[data-v-68cfb339]{direction:rtl}@media(max-width: 768px){.el-x-welcome[data-v-68cfb339]{--gap: var(--gap-mobile);--gap-small: var(--gap-small-mobile);--padding: var(--padding-mobile);--title-font-size: var(--title-font-size-mobile);--description-font-size: var(--description-font-size-mobile);gap:var(--gap-mobile);padding:var(--padding-mobile)}}@media(max-width: 480px){.el-x-welcome[data-v-68cfb339]{--icon-size: var(--icon-size-mobile);--padding: 12px;--gap: 8px;--gap-small: 4px;flex-direction:column;align-items:center;text-align:center;padding:12px;gap:8px}.el-x-welcome.el-x-welcome-rtl[data-v-68cfb339]{direction:ltr}}@media(max-width: 320px){.el-x-welcome[data-v-68cfb339]{--padding: 8px;--gap: 6px;--icon-size: 32px;padding:8px;gap:6px}}.el-x-welcome-icon[data-v-68cfb339]{flex:0 0 auto;width:var(--icon-size);height:var(--icon-size);display:flex;align-items:center;justify-content:center;border-radius:calc(var(--border-radius)/2);overflow:hidden;font-size:24px}.el-x-welcome-icon .icon-image[data-v-68cfb339]{width:100%;height:100%;object-fit:contain;padding:4px}@media(max-width: 768px){.el-x-welcome-icon[data-v-68cfb339]{width:var(--icon-size-small);height:var(--icon-size-small);font-size:20px}}@media(max-width: 480px){.el-x-welcome-icon[data-v-68cfb339]{width:var(--icon-size-mobile);height:var(--icon-size-mobile);font-size:16px;margin-bottom:4px}.el-x-welcome-icon .icon-image[data-v-68cfb339]{padding:2px}}@media(max-width: 320px){.el-x-welcome-icon[data-v-68cfb339]{width:32px;height:32px;font-size:14px}}.content-wrapper[data-v-68cfb339]{flex:1;display:flex;flex-direction:column;gap:var(--gap-small)}@media(max-width: 480px){.content-wrapper[data-v-68cfb339]{align-items:center;text-align:center;width:100%;gap:var(--gap-small-mobile)}}.title-wrapper[data-v-68cfb339]{display:flex;justify-content:space-between;align-items:center;gap:var(--gap-small)}@media(max-width: 768px){.title-wrapper[data-v-68cfb339]{gap:var(--gap-small-mobile)}}@media(max-width: 480px){.title-wrapper[data-v-68cfb339]{flex-direction:column;align-items:center;gap:4px;width:100%}}@media(max-width: 320px){.title-wrapper[data-v-68cfb339]{gap:2px}}.el-x-welcome-title[data-v-68cfb339]{margin:0;font-size:var(--title-font-size);font-weight:600;color:var(--color-title);word-break:break-word}@media(max-width: 768px){.el-x-welcome-title[data-v-68cfb339]{font-size:var(--title-font-size-mobile)}}@media(max-width: 480px){.el-x-welcome-title[data-v-68cfb339]{font-size:14px;text-align:center;line-height:1.4}}@media(max-width: 320px){.el-x-welcome-title[data-v-68cfb339]{font-size:13px}}.el-x-welcome-extra[data-v-68cfb339]{flex-shrink:0;display:flex;align-items:center;gap:var(--gap-small)}.el-x-welcome-extra .el-dropdown[data-v-68cfb339],.el-x-welcome-extra .el-button[data-v-68cfb339],.el-x-welcome-extra .el-link[data-v-68cfb339]{flex-shrink:0}@media(max-width: 768px){.el-x-welcome-extra[data-v-68cfb339]{gap:var(--gap-small-mobile)}.el-x-welcome-extra .el-button[data-v-68cfb339]{font-size:12px;padding:6px 12px}}@media(max-width: 480px){.el-x-welcome-extra[data-v-68cfb339]{justify-content:center;flex-wrap:wrap;gap:4px}.el-x-welcome-extra .el-button[data-v-68cfb339]{font-size:12px;padding:4px 8px;min-height:28px}.el-x-welcome-extra .el-dropdown .el-button[data-v-68cfb339]{font-size:12px;padding:4px 8px}.el-x-welcome-extra .el-link[data-v-68cfb339]{font-size:12px}}@media(max-width: 320px){.el-x-welcome-extra .el-button[data-v-68cfb339]{font-size:11px;padding:3px 6px;min-height:24px}}.el-x-welcome-description[data-v-68cfb339]{margin:0;font-size:var(--description-font-size);color:var(--color-description);line-height:1.5;word-break:break-word}@media(max-width: 768px){.el-x-welcome-description[data-v-68cfb339]{font-size:var(--description-font-size-mobile);line-height:1.4}}@media(max-width: 480px){.el-x-welcome-description[data-v-68cfb339]{font-size:13px;line-height:1.4;text-align:center}}@media(max-width: 320px){.el-x-welcome-description[data-v-68cfb339]{font-size:12px;line-height:1.3}}", ""]);
749
749
  // Exports
750
750
  /* harmony default export */ __webpack_exports__["a"] = (___CSS_LOADER_EXPORT___);
751
751