vue-element-ui-x 0.2.1 → 1.0.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +8 -8
- package/lib/components/Attachments/index.js +8 -8
- package/lib/components/Bubble/index.js +116 -113
- package/lib/components/BubbleList/index.js +137 -134
- package/lib/components/Conversations/index.js +14368 -14360
- package/lib/components/FilesCard/index.js +4 -4
- package/lib/components/Prompts/index.js +4 -4
- package/lib/components/Sender/index.js +1594 -1448
- package/lib/components/Thinking/index.js +155 -15
- package/lib/components/ThoughtChain/index.js +121 -118
- package/lib/components/Typewriter/index.js +111 -108
- package/lib/components/Welcome/index.js +4 -4
- package/lib/index.common.js +1 -1
- package/lib/index.esm.js +1 -1
- package/lib/index.js +704 -236
- package/lib/index.umd.js +1 -1
- package/lib/locale/index.js +97 -0
- package/lib/locale/lang/ar-SA.js +18 -0
- package/lib/locale/lang/ar-SA.umd.js +26 -0
- package/lib/locale/lang/ar.js +18 -0
- package/lib/locale/lang/ar.umd.js +26 -0
- package/lib/locale/lang/de-DE.js +18 -0
- package/lib/locale/lang/de-DE.umd.js +26 -0
- package/lib/locale/lang/de.js +18 -0
- package/lib/locale/lang/de.umd.js +26 -0
- package/lib/locale/lang/en.js +18 -0
- package/lib/locale/lang/en.umd.js +26 -0
- package/lib/locale/lang/es-ES.js +18 -0
- package/lib/locale/lang/es-ES.umd.js +26 -0
- package/lib/locale/lang/es.js +18 -0
- package/lib/locale/lang/es.umd.js +26 -0
- package/lib/locale/lang/fr-FR.js +18 -0
- package/lib/locale/lang/fr-FR.umd.js +26 -0
- package/lib/locale/lang/fr.js +18 -0
- package/lib/locale/lang/fr.umd.js +26 -0
- package/lib/locale/lang/index.js +50 -0
- package/lib/locale/lang/it-IT.js +18 -0
- package/lib/locale/lang/it-IT.umd.js +26 -0
- package/lib/locale/lang/it.js +18 -0
- package/lib/locale/lang/it.umd.js +26 -0
- package/lib/locale/lang/ja-JP.js +18 -0
- package/lib/locale/lang/ja-JP.umd.js +26 -0
- package/lib/locale/lang/ja.js +18 -0
- package/lib/locale/lang/ja.umd.js +26 -0
- package/lib/locale/lang/ko-KR.js +18 -0
- package/lib/locale/lang/ko-KR.umd.js +26 -0
- package/lib/locale/lang/ko.js +18 -0
- package/lib/locale/lang/ko.umd.js +26 -0
- package/lib/locale/lang/pt-BR.js +18 -0
- package/lib/locale/lang/pt-BR.umd.js +26 -0
- package/lib/locale/lang/ru-RU.js +18 -0
- package/lib/locale/lang/ru-RU.umd.js +26 -0
- package/lib/locale/lang/zh-CN.js +18 -0
- package/lib/locale/lang/zh-CN.umd.js +26 -0
- package/lib/locale/lang/zh-TW.js +18 -0
- package/lib/locale/lang/zh-TW.umd.js +26 -0
- package/lib/locale/mixin.js +9 -0
- package/package.json +6 -4
- package/src/components/Bubble/src/main.vue +299 -299
- package/src/components/Conversations/src/main.vue +9 -3
- package/src/components/Sender/src/main.vue +12 -3
- package/src/components/Thinking/src/main.vue +10 -5
- package/src/index.js +25 -10
- package/src/locale/index.js +97 -0
- package/src/locale/lang/ar.js +18 -0
- package/src/locale/lang/de.js +18 -0
- package/src/locale/lang/en.js +18 -0
- package/src/locale/lang/es.js +18 -0
- package/src/locale/lang/fr.js +18 -0
- package/src/locale/lang/index.js +62 -0
- package/src/locale/lang/it.js +18 -0
- package/src/locale/lang/ja.js +18 -0
- package/src/locale/lang/ko.js +18 -0
- package/src/locale/lang/pt-br.js +18 -0
- package/src/locale/lang/ru-RU.js +18 -0
- package/src/locale/lang/zh-CN.js +18 -0
- package/src/locale/lang/zh-TW.js +18 -0
- package/src/locale/mixin.js +9 -0
- package/src/styles/Bubble.scss +157 -157
- package/src/styles/Conversations.scss +260 -260
- package/src/styles/Sender.scss +196 -199
package/README.md
CHANGED
|
@@ -16,14 +16,14 @@
|
|
|
16
16
|
|
|
17
17
|
## 📢 快速链接
|
|
18
18
|
|
|
19
|
-
| 资源类型 | <div style="width: 300px;" >链接</div>
|
|
20
|
-
| ------------ |
|
|
21
|
-
| **文档** | [📖 开发文档](https://element-ui-x.com/)
|
|
22
|
-
| **在线演示** | [👁️ 在线预览](https://demo.element-ui-x.com)
|
|
23
|
-
| **代码仓库** | [🐙 GitHub](https://github.com/worryzyy/element-ui-x)
|
|
24
|
-
| **NPM 包** | [📦 npm](https://www.npmjs.com/package/vue-element-ui-x)
|
|
25
|
-
| **问题反馈** | [🐛
|
|
26
|
-
| **交流讨论** | [🐒 交流群]()
|
|
19
|
+
| 资源类型 | <div style="width: 300px;" >链接</div> |
|
|
20
|
+
| ------------ | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
|
|
21
|
+
| **文档** | [📖 开发文档](https://element-ui-x.com/) |
|
|
22
|
+
| **在线演示** | [👁️ 在线预览](https://demo.element-ui-x.com) |
|
|
23
|
+
| **代码仓库** | [🐙 GitHub](https://github.com/worryzyy/element-ui-x)<br/>[📝 GitCode](https://gitcode.com/worryzyy/element-ui-x.git)<br/>[📝 Gitee](https://gitee.com/worryzyy/element-ui-x.git) |
|
|
24
|
+
| **NPM 包** | [📦 npm](https://www.npmjs.com/package/vue-element-ui-x) |
|
|
25
|
+
| **问题反馈** | [🐛 GitHub Issues](https://github.com/worryzyy/element-ui-x/issues)<br/>[🐛 GitCode Issues](https://gitcode.com/worryzyy/element-ui-x/issues)<br/>[🐛 Gitee Issues](https://gitee.com/worryzyy/element-ui-x/issues) |
|
|
26
|
+
| **交流讨论** | [🐒 交流群]() |
|
|
27
27
|
|
|
28
28
|
## 🛠️ 核心特性
|
|
29
29
|
|
|
@@ -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 =
|
|
85
|
+
/******/ return __webpack_require__(__webpack_require__.s = 103);
|
|
86
86
|
/******/ })
|
|
87
87
|
/************************************************************************/
|
|
88
88
|
/******/ ({
|
|
@@ -192,7 +192,7 @@ function normalizeComponent(
|
|
|
192
192
|
|
|
193
193
|
/***/ }),
|
|
194
194
|
|
|
195
|
-
/***/
|
|
195
|
+
/***/ 103:
|
|
196
196
|
/***/ (function(module, __webpack_exports__, __webpack_require__) {
|
|
197
197
|
|
|
198
198
|
"use strict";
|
|
@@ -353,7 +353,7 @@ render._withStripped = true;
|
|
|
353
353
|
// CONCATENATED MODULE: ./src/components/Attachments/src/main.vue?vue&type=template&id=4c699dac&scoped=true
|
|
354
354
|
|
|
355
355
|
// EXTERNAL MODULE: ./src/components/FilesCard/index.js + 58 modules
|
|
356
|
-
var FilesCard = __webpack_require__(
|
|
356
|
+
var FilesCard = __webpack_require__(29);
|
|
357
357
|
|
|
358
358
|
// CONCATENATED MODULE: ./node_modules/babel-loader/lib!./node_modules/vue-loader/lib??vue-loader-options!./src/components/Attachments/src/main.vue?vue&type=script&lang=js
|
|
359
359
|
|
|
@@ -707,7 +707,7 @@ var injectStylesIntoStyleTag = __webpack_require__(3);
|
|
|
707
707
|
var injectStylesIntoStyleTag_default = /*#__PURE__*/__webpack_require__.n(injectStylesIntoStyleTag);
|
|
708
708
|
|
|
709
709
|
// 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/Attachments/src/main.vue?vue&type=style&index=0&id=4c699dac&prod&lang=scss&scoped=true
|
|
710
|
-
var mainvue_type_style_index_0_id_4c699dac_prod_lang_scss_scoped_true = __webpack_require__(
|
|
710
|
+
var mainvue_type_style_index_0_id_4c699dac_prod_lang_scss_scoped_true = __webpack_require__(88);
|
|
711
711
|
|
|
712
712
|
// 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/Attachments/src/main.vue?vue&type=style&index=0&id=4c699dac&prod&lang=scss&scoped=true
|
|
713
713
|
|
|
@@ -833,7 +833,7 @@ module.exports = function (cssWithMappingToString) {
|
|
|
833
833
|
|
|
834
834
|
/***/ }),
|
|
835
835
|
|
|
836
|
-
/***/
|
|
836
|
+
/***/ 27:
|
|
837
837
|
/***/ (function(module, __webpack_exports__, __webpack_require__) {
|
|
838
838
|
|
|
839
839
|
"use strict";
|
|
@@ -850,7 +850,7 @@ ___CSS_LOADER_EXPORT___.push([module.i, ".el-x-filescard[data-v-28b3b638]{width:
|
|
|
850
850
|
|
|
851
851
|
/***/ }),
|
|
852
852
|
|
|
853
|
-
/***/
|
|
853
|
+
/***/ 29:
|
|
854
854
|
/***/ (function(module, __webpack_exports__, __webpack_require__) {
|
|
855
855
|
|
|
856
856
|
"use strict";
|
|
@@ -2692,7 +2692,7 @@ var injectStylesIntoStyleTag = __webpack_require__(3);
|
|
|
2692
2692
|
var injectStylesIntoStyleTag_default = /*#__PURE__*/__webpack_require__.n(injectStylesIntoStyleTag);
|
|
2693
2693
|
|
|
2694
2694
|
// 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/FilesCard/src/main.vue?vue&type=style&index=0&id=28b3b638&prod&lang=scss&scoped=true
|
|
2695
|
-
var mainvue_type_style_index_0_id_28b3b638_prod_lang_scss_scoped_true = __webpack_require__(
|
|
2695
|
+
var mainvue_type_style_index_0_id_28b3b638_prod_lang_scss_scoped_true = __webpack_require__(27);
|
|
2696
2696
|
|
|
2697
2697
|
// 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/FilesCard/src/main.vue?vue&type=style&index=0&id=28b3b638&prod&lang=scss&scoped=true
|
|
2698
2698
|
|
|
@@ -3018,7 +3018,7 @@ module.exports = function (list, options) {
|
|
|
3018
3018
|
|
|
3019
3019
|
/***/ }),
|
|
3020
3020
|
|
|
3021
|
-
/***/
|
|
3021
|
+
/***/ 88:
|
|
3022
3022
|
/***/ (function(module, __webpack_exports__, __webpack_require__) {
|
|
3023
3023
|
|
|
3024
3024
|
"use strict";
|