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
@@ -0,0 +1,3082 @@
1
+ module.exports =
2
+ /******/ (function(modules) { // webpackBootstrap
3
+ /******/ // The module cache
4
+ /******/ var installedModules = {};
5
+ /******/
6
+ /******/ // The require function
7
+ /******/ function __webpack_require__(moduleId) {
8
+ /******/
9
+ /******/ // Check if module is in cache
10
+ /******/ if(installedModules[moduleId]) {
11
+ /******/ return installedModules[moduleId].exports;
12
+ /******/ }
13
+ /******/ // Create a new module (and put it into the cache)
14
+ /******/ var module = installedModules[moduleId] = {
15
+ /******/ i: moduleId,
16
+ /******/ l: false,
17
+ /******/ exports: {}
18
+ /******/ };
19
+ /******/
20
+ /******/ // Execute the module function
21
+ /******/ modules[moduleId].call(module.exports, module, module.exports, __webpack_require__);
22
+ /******/
23
+ /******/ // Flag the module as loaded
24
+ /******/ module.l = true;
25
+ /******/
26
+ /******/ // Return the exports of the module
27
+ /******/ return module.exports;
28
+ /******/ }
29
+ /******/
30
+ /******/
31
+ /******/ // expose the modules object (__webpack_modules__)
32
+ /******/ __webpack_require__.m = modules;
33
+ /******/
34
+ /******/ // expose the module cache
35
+ /******/ __webpack_require__.c = installedModules;
36
+ /******/
37
+ /******/ // define getter function for harmony exports
38
+ /******/ __webpack_require__.d = function(exports, name, getter) {
39
+ /******/ if(!__webpack_require__.o(exports, name)) {
40
+ /******/ Object.defineProperty(exports, name, { enumerable: true, get: getter });
41
+ /******/ }
42
+ /******/ };
43
+ /******/
44
+ /******/ // define __esModule on exports
45
+ /******/ __webpack_require__.r = function(exports) {
46
+ /******/ if(typeof Symbol !== 'undefined' && Symbol.toStringTag) {
47
+ /******/ Object.defineProperty(exports, Symbol.toStringTag, { value: 'Module' });
48
+ /******/ }
49
+ /******/ Object.defineProperty(exports, '__esModule', { value: true });
50
+ /******/ };
51
+ /******/
52
+ /******/ // create a fake namespace object
53
+ /******/ // mode & 1: value is a module id, require it
54
+ /******/ // mode & 2: merge all properties of value into the ns
55
+ /******/ // mode & 4: return value when already ns object
56
+ /******/ // mode & 8|1: behave like require
57
+ /******/ __webpack_require__.t = function(value, mode) {
58
+ /******/ if(mode & 1) value = __webpack_require__(value);
59
+ /******/ if(mode & 8) return value;
60
+ /******/ if((mode & 4) && typeof value === 'object' && value && value.__esModule) return value;
61
+ /******/ var ns = Object.create(null);
62
+ /******/ __webpack_require__.r(ns);
63
+ /******/ Object.defineProperty(ns, 'default', { enumerable: true, value: value });
64
+ /******/ if(mode & 2 && typeof value != 'string') for(var key in value) __webpack_require__.d(ns, key, function(key) { return value[key]; }.bind(null, key));
65
+ /******/ return ns;
66
+ /******/ };
67
+ /******/
68
+ /******/ // getDefaultExport function for compatibility with non-harmony modules
69
+ /******/ __webpack_require__.n = function(module) {
70
+ /******/ var getter = module && module.__esModule ?
71
+ /******/ function getDefault() { return module['default']; } :
72
+ /******/ function getModuleExports() { return module; };
73
+ /******/ __webpack_require__.d(getter, 'a', getter);
74
+ /******/ return getter;
75
+ /******/ };
76
+ /******/
77
+ /******/ // Object.prototype.hasOwnProperty.call
78
+ /******/ __webpack_require__.o = function(object, property) { return Object.prototype.hasOwnProperty.call(object, property); };
79
+ /******/
80
+ /******/ // __webpack_public_path__
81
+ /******/ __webpack_require__.p = "";
82
+ /******/
83
+ /******/
84
+ /******/ // Load entry module and return exports
85
+ /******/ return __webpack_require__(__webpack_require__.s = 101);
86
+ /******/ })
87
+ /************************************************************************/
88
+ /******/ ({
89
+
90
+ /***/ 0:
91
+ /***/ (function(module, __webpack_exports__, __webpack_require__) {
92
+
93
+ "use strict";
94
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "a", function() { return normalizeComponent; });
95
+ /* globals __VUE_SSR_CONTEXT__ */
96
+
97
+ // IMPORTANT: Do NOT use ES2015 features in this file (except for modules).
98
+ // This module is a runtime utility for cleaner component module output and will
99
+ // be included in the final webpack user bundle.
100
+
101
+ function normalizeComponent(
102
+ scriptExports,
103
+ render,
104
+ staticRenderFns,
105
+ functionalTemplate,
106
+ injectStyles,
107
+ scopeId,
108
+ moduleIdentifier /* server only */,
109
+ shadowMode /* vue-cli only */
110
+ ) {
111
+ // Vue.extend constructor export interop
112
+ var options =
113
+ typeof scriptExports === 'function' ? scriptExports.options : scriptExports
114
+
115
+ // render functions
116
+ if (render) {
117
+ options.render = render
118
+ options.staticRenderFns = staticRenderFns
119
+ options._compiled = true
120
+ }
121
+
122
+ // functional template
123
+ if (functionalTemplate) {
124
+ options.functional = true
125
+ }
126
+
127
+ // scopedId
128
+ if (scopeId) {
129
+ options._scopeId = 'data-v-' + scopeId
130
+ }
131
+
132
+ var hook
133
+ if (moduleIdentifier) {
134
+ // server build
135
+ hook = function (context) {
136
+ // 2.3 injection
137
+ context =
138
+ context || // cached call
139
+ (this.$vnode && this.$vnode.ssrContext) || // stateful
140
+ (this.parent && this.parent.$vnode && this.parent.$vnode.ssrContext) // functional
141
+ // 2.2 with runInNewContext: true
142
+ if (!context && typeof __VUE_SSR_CONTEXT__ !== 'undefined') {
143
+ context = __VUE_SSR_CONTEXT__
144
+ }
145
+ // inject component styles
146
+ if (injectStyles) {
147
+ injectStyles.call(this, context)
148
+ }
149
+ // register component module identifier for async chunk inferrence
150
+ if (context && context._registeredComponents) {
151
+ context._registeredComponents.add(moduleIdentifier)
152
+ }
153
+ }
154
+ // used by ssr in case component is cached and beforeCreate
155
+ // never gets called
156
+ options._ssrRegister = hook
157
+ } else if (injectStyles) {
158
+ hook = shadowMode
159
+ ? function () {
160
+ injectStyles.call(
161
+ this,
162
+ (options.functional ? this.parent : this).$root.$options.shadowRoot
163
+ )
164
+ }
165
+ : injectStyles
166
+ }
167
+
168
+ if (hook) {
169
+ if (options.functional) {
170
+ // for template-only hot-reload because in that case the render fn doesn't
171
+ // go through the normalizer
172
+ options._injectStyles = hook
173
+ // register for functional component in vue file
174
+ var originalRender = options.render
175
+ options.render = function renderWithStyleInjection(h, context) {
176
+ hook.call(context)
177
+ return originalRender(h, context)
178
+ }
179
+ } else {
180
+ // inject component registration as beforeCreate hook
181
+ var existing = options.beforeCreate
182
+ options.beforeCreate = existing ? [].concat(existing, hook) : [hook]
183
+ }
184
+ }
185
+
186
+ return {
187
+ exports: scriptExports,
188
+ options: options
189
+ }
190
+ }
191
+
192
+
193
+ /***/ }),
194
+
195
+ /***/ 101:
196
+ /***/ (function(module, __webpack_exports__, __webpack_require__) {
197
+
198
+ "use strict";
199
+ // ESM COMPAT FLAG
200
+ __webpack_require__.r(__webpack_exports__);
201
+
202
+ // CONCATENATED MODULE: ./node_modules/babel-loader/lib!./node_modules/vue-loader/lib/loaders/templateLoader.js??ref--6!./node_modules/vue-loader/lib??vue-loader-options!./src/components/Attachments/src/main.vue?vue&type=template&id=43b239af&scoped=true
203
+ var render = function render() {
204
+ var _vm = this,
205
+ _c = _vm._self._c;
206
+ return _c("div", {
207
+ ref: "wrapperRef",
208
+ staticClass: "el-x-attachments-wrapper",
209
+ class: {
210
+ "el-x-attachments-overflow-ping-start": _vm.overflow === "scrollX" && _vm.pingStart,
211
+ "el-x-attachments-overflow-ping-end": _vm.overflow === "scrollX" && _vm.pingEnd
212
+ },
213
+ style: {
214
+ ..._vm.listStyle,
215
+ "--el-x-attachments-upload-icon-size": _vm.uploadIconSize
216
+ }
217
+ }, [!_vm.items.length && !_vm.hideUpload ? _c("div", [_vm._t("empty-upload", function () {
218
+ return [_c("el-upload", _vm._b({
219
+ staticClass: "el-x-attachments-upload-btn",
220
+ attrs: {
221
+ action: _vm.uploadAction,
222
+ "http-request": _vm.customUpload,
223
+ "show-file-list": false
224
+ },
225
+ on: {
226
+ change: _vm.handleUploadChange,
227
+ success: _vm.handleUploadSuccess,
228
+ error: _vm.handleUploadError
229
+ }
230
+ }, "el-upload", _vm.$attrs, false), [_c("i", {
231
+ staticClass: "el-icon-plus uploader-icon"
232
+ })])];
233
+ })], 2) : _vm._e(), _vm._v(" "), _c("div", {
234
+ staticClass: "el-x-attachments-background"
235
+ }, [_vm.overflow === "scrollX" && _vm.pingStart ? _c("div", {
236
+ staticClass: "el-x-attachments-background-start"
237
+ }) : _vm._e(), _vm._v(" "), _vm.overflow === "scrollX" && _vm.pingEnd ? _c("div", {
238
+ staticClass: "el-x-attachments-background-end"
239
+ }) : _vm._e()]), _vm._v(" "), _c("div", {
240
+ ref: "containerRef",
241
+ staticClass: "el-x-attachments",
242
+ class: {
243
+ [`el-x-attachments-overflow-${_vm.overflow}`]: _vm.overflow
244
+ },
245
+ style: {
246
+ ...(_vm.overflow === "scrollX" ? {
247
+ whiteSpace: "nowrap",
248
+ overflowX: "auto",
249
+ overflowY: "hidden"
250
+ } : {}),
251
+ ...(_vm.overflow === "scrollY" ? {
252
+ overflowX: "hidden",
253
+ overflowY: "auto"
254
+ } : {}),
255
+ ...(_vm.overflow === "wrap" ? {
256
+ display: "flex",
257
+ flexWrap: "wrap"
258
+ } : {})
259
+ },
260
+ on: {
261
+ scroll: _vm.debouncedCheckPing
262
+ }
263
+ }, [_vm.items.length ? _c("div", {
264
+ class: {
265
+ "el-x-attachments-file-card-wrap": _vm.overflow === "scrollX"
266
+ }
267
+ }, [_vm._t("file-list", function () {
268
+ return _vm._l(_vm.items, function (item, index) {
269
+ return _c("div", {
270
+ key: item.uid,
271
+ staticClass: "el-x-attachments-card"
272
+ }, [_c("transition", {
273
+ attrs: {
274
+ name: "card-motion"
275
+ }
276
+ }, [item.uid ? _c("el-x-files-card", _vm._b({
277
+ staticClass: "el-x-attachments-card-item",
278
+ on: {
279
+ delete: function ($event) {
280
+ return _vm.handleDelete(item, index);
281
+ }
282
+ }
283
+ }, "el-x-files-card", item, false)) : _vm._e()], 1)], 1);
284
+ });
285
+ }, {
286
+ items: _vm.items
287
+ }), _vm._v(" "), _vm.items.length && !_vm.isOverLimit && !_vm.hideUpload ? _c("div", {
288
+ staticClass: "el-x-attachments-upload-placeholder"
289
+ }, [_vm._t("no-empty-upload", function () {
290
+ return [_c("el-upload", _vm._b({
291
+ staticClass: "el-x-attachments-upload-btn",
292
+ style: {
293
+ height: _vm.overflow === "scrollY" && ""
294
+ },
295
+ attrs: {
296
+ action: _vm.uploadAction,
297
+ "http-request": _vm.customUpload,
298
+ "show-file-list": false
299
+ },
300
+ on: {
301
+ change: _vm.handleUploadChange,
302
+ success: _vm.handleUploadSuccess,
303
+ error: _vm.handleUploadError
304
+ }
305
+ }, "el-upload", _vm.$attrs, false), [_c("i", {
306
+ staticClass: "el-icon-plus uploader-icon"
307
+ })])];
308
+ })], 2) : _vm._e()], 2) : _vm._e()]), _vm._v(" "), _vm._t("prev-button", function () {
309
+ return [_vm.overflow === "scrollX" && _vm.pingStart ? _c("el-button", {
310
+ staticClass: "el-x-attachments-prev-btn",
311
+ attrs: {
312
+ size: "small"
313
+ },
314
+ on: {
315
+ click: _vm.onScrollLeft
316
+ }
317
+ }, [_c("i", {
318
+ staticClass: "el-icon-arrow-left"
319
+ })]) : _vm._e()];
320
+ }, {
321
+ show: _vm.overflow === "scrollX" && _vm.pingStart,
322
+ onScrollLeft: _vm.onScrollLeft
323
+ }), _vm._v(" "), _vm._t("next-button", function () {
324
+ return [_vm.overflow === "scrollX" && _vm.pingEnd ? _c("el-button", {
325
+ staticClass: "el-x-attachments-next-btn",
326
+ attrs: {
327
+ size: "small"
328
+ },
329
+ on: {
330
+ click: _vm.onScrollRight
331
+ }
332
+ }, [_c("i", {
333
+ staticClass: "el-icon-arrow-right"
334
+ })]) : _vm._e()];
335
+ }, {
336
+ show: _vm.overflow === "scrollX" && _vm.pingEnd,
337
+ onScrollRight: _vm.onScrollRight
338
+ }), _vm._v(" "), _vm.isTargetDrag ? _c("div", {
339
+ ref: "dropAreaContainer",
340
+ staticStyle: {
341
+ display: "none"
342
+ }
343
+ }, [_vm._t("drop-area", function () {
344
+ return [_c("div", {
345
+ ref: "dropAreaRef",
346
+ staticClass: "el-x-attachments-drop-area"
347
+ }, [_c("i", {
348
+ staticClass: "el-icon-upload el-x-attachments-drop-area-icon"
349
+ }), _vm._v(" "), _c("div", {
350
+ staticClass: "el-x-attachments-drop-area-text"
351
+ }, [_vm._v("在此处拖放文件上传")])])];
352
+ })], 2) : _vm._e()], 2);
353
+ };
354
+ var staticRenderFns = [];
355
+ render._withStripped = true;
356
+
357
+ // CONCATENATED MODULE: ./src/components/Attachments/src/main.vue?vue&type=template&id=43b239af&scoped=true
358
+
359
+ // EXTERNAL MODULE: ./src/components/FilesCard/index.js + 58 modules
360
+ var FilesCard = __webpack_require__(26);
361
+
362
+ // 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
363
+
364
+ /* harmony default export */ var mainvue_type_script_lang_js = ({
365
+ name: 'ElXAttachments',
366
+ components: {
367
+ ElXFilesCard: FilesCard["default"]
368
+ },
369
+ props: {
370
+ items: {
371
+ type: Array,
372
+ default: () => []
373
+ },
374
+ overflow: {
375
+ type: String,
376
+ default: 'scrollX'
377
+ },
378
+ listStyle: {
379
+ type: Object,
380
+ default: () => ({})
381
+ },
382
+ uploadIconSize: {
383
+ type: String,
384
+ default: '64px'
385
+ },
386
+ dragTarget: {
387
+ type: [String, Object],
388
+ default: undefined,
389
+ validator(value) {
390
+ if (value === null || value === undefined) return true;
391
+ if (typeof value === 'string') return true;
392
+ if (typeof value === 'object' && value !== null) return true;
393
+ // 在浏览器环境中验证是否为 HTMLElement
394
+ if (typeof window !== 'undefined' && window.HTMLElement) {
395
+ return value instanceof HTMLElement;
396
+ }
397
+ return false;
398
+ }
399
+ },
400
+ hideUpload: {
401
+ type: Boolean,
402
+ default: false
403
+ },
404
+ limit: {
405
+ type: Number,
406
+ default: undefined
407
+ },
408
+ uploadAction: {
409
+ type: String,
410
+ default: '#'
411
+ }
412
+ },
413
+ data() {
414
+ return {
415
+ containerRef: null,
416
+ wrapperRef: null,
417
+ firstMount: false,
418
+ pingStart: false,
419
+ pingEnd: false,
420
+ TOLERANCE: 1,
421
+ // 上传相关
422
+ targetElement: null,
423
+ isTargetDrag: false,
424
+ dropAreaRef: null,
425
+ dropAreaContainer: null
426
+ };
427
+ },
428
+ computed: {
429
+ isOverLimit() {
430
+ if (this.limit && this.items.length >= this.limit) {
431
+ return true;
432
+ }
433
+ return false;
434
+ }
435
+ },
436
+ mounted() {
437
+ this.firstMount = true;
438
+ this.$nextTick(() => this.debouncedCheckPing());
439
+
440
+ // 检查是否在浏览器环境中
441
+ if (typeof window !== 'undefined') {
442
+ window.addEventListener('resize', this.debouncedCheckPing);
443
+ }
444
+
445
+ // 如果有拖拽目标元素,则监听拖拽事件
446
+ if (this.$refs.wrapperRef) {
447
+ this.targetElement = this.getTargetElement() || this.$refs.wrapperRef;
448
+
449
+ // 监听拖拽事件
450
+ this.targetElement.addEventListener('dragenter', this.targetDragEnter, false);
451
+ this.targetElement.addEventListener('dragleave', this.targetDropLeave, false);
452
+ this.targetElement.addEventListener('drop', this.targetDrop, false);
453
+ this.targetElement.addEventListener('dragover', this.targetDragOver, false);
454
+ }
455
+ },
456
+ beforeDestroy() {
457
+ // 检查是否在浏览器环境中
458
+ if (typeof window !== 'undefined') {
459
+ window.removeEventListener('resize', this.debouncedCheckPing);
460
+ }
461
+ if (this.targetElement) {
462
+ this.targetElement.removeEventListener('dragenter', this.targetDragEnter, false);
463
+ this.targetElement.removeEventListener('dragleave', this.targetDropLeave, false);
464
+ this.targetElement.removeEventListener('drop', this.targetDrop, false);
465
+ this.targetElement.removeEventListener('dragover', this.targetDragOver, false);
466
+ }
467
+
468
+ // 清理可能存在的 dropArea 元素
469
+ this.removeDragArea();
470
+ },
471
+ watch: {
472
+ 'items.length': function () {
473
+ this.$nextTick(() => this.debouncedCheckPing());
474
+ },
475
+ overflow: function () {
476
+ this.$nextTick(() => this.debouncedCheckPing());
477
+ },
478
+ dragTarget: function () {
479
+ this.$nextTick(() => {
480
+ // 如果有拖拽目标元素,则监听拖拽事件
481
+ if (this.$refs.wrapperRef) {
482
+ if (this.targetElement) {
483
+ this.targetElement.removeEventListener('dragenter', this.targetDragEnter, false);
484
+ this.targetElement.removeEventListener('dragleave', this.targetDropLeave, false);
485
+ this.targetElement.removeEventListener('drop', this.targetDrop, false);
486
+ this.targetElement.removeEventListener('dragover', this.targetDragOver, false);
487
+ }
488
+ this.targetElement = this.getTargetElement() || this.$refs.wrapperRef;
489
+
490
+ // 监听拖拽事件
491
+ this.targetElement.addEventListener('dragenter', this.targetDragEnter, false);
492
+ this.targetElement.addEventListener('dragleave', this.targetDropLeave, false);
493
+ this.targetElement.addEventListener('drop', this.targetDrop, false);
494
+ this.targetElement.addEventListener('dragover', this.targetDragOver, false);
495
+ }
496
+ });
497
+ },
498
+ isTargetDrag: function (newVal) {
499
+ if (newVal) {
500
+ this.appendDragArea();
501
+ } else {
502
+ this.removeDragArea();
503
+ }
504
+ }
505
+ },
506
+ methods: {
507
+ // 列表相关方法
508
+ checkPing() {
509
+ const containerEle = this.$refs.containerRef;
510
+ if (!containerEle) return;
511
+ if (this.overflow === 'scrollX') {
512
+ this.pingStart = Math.abs(containerEle.scrollLeft) >= this.TOLERANCE;
513
+ this.pingEnd = containerEle.scrollWidth - containerEle.clientWidth - Math.abs(containerEle.scrollLeft) >= this.TOLERANCE;
514
+ } else if (this.overflow === 'scrollY') {
515
+ this.pingStart = containerEle.scrollTop !== 0;
516
+ this.pingEnd = containerEle.scrollHeight - containerEle.clientHeight !== containerEle.scrollTop;
517
+ } else {
518
+ this.pingStart = false;
519
+ this.pingEnd = false;
520
+ }
521
+ },
522
+ onScrollOffset(offset) {
523
+ const containerEle = this.$refs.containerRef;
524
+ if (containerEle) {
525
+ containerEle.scrollTo({
526
+ left: this.overflow === 'scrollX' ? containerEle.scrollLeft + offset * containerEle.clientWidth : containerEle.scrollLeft,
527
+ top: this.overflow === 'scrollY' ? containerEle.scrollTop + offset * containerEle.clientHeight : containerEle.scrollTop,
528
+ behavior: 'smooth'
529
+ });
530
+ }
531
+ },
532
+ onScrollLeft() {
533
+ this.onScrollOffset(-1);
534
+ },
535
+ onScrollRight() {
536
+ this.onScrollOffset(1);
537
+ },
538
+ // 防抖函数
539
+ debounce(func, wait) {
540
+ let timeout;
541
+ return function () {
542
+ const context = this;
543
+ const args = arguments;
544
+ clearTimeout(timeout);
545
+ timeout = setTimeout(() => {
546
+ func.apply(context, args);
547
+ }, wait);
548
+ };
549
+ },
550
+ customUpload(options) {
551
+ // 自定义上传方法,如果父组件提供了http-request,则使用父组件的
552
+ if (this.$attrs['http-request']) {
553
+ return this.$attrs['http-request'](options);
554
+ }
555
+
556
+ // 默认实现:发出事件,让父组件处理
557
+ const {
558
+ file
559
+ } = options;
560
+ this.$emit('uploadChange', {
561
+ file
562
+ }, [file]);
563
+
564
+ // 如果需要模拟上传进度和成功/失败状态,可以在此实现
565
+ // 例如:options.onProgress({ percent: 50 })
566
+ // options.onSuccess({ url: 'https://example.com/file.jpg' })
567
+ // 或者 options.onError(new Error('Upload failed'))
568
+
569
+ // 由于我们只是返回事件,不实际上传,所以直接返回一个空Promise
570
+ return Promise.resolve();
571
+ },
572
+ handleUploadChange(file, fileList) {
573
+ this.$emit('uploadChange', file, fileList);
574
+ },
575
+ handleUploadSuccess(response, file, fileList) {
576
+ this.$emit('uploadSuccess', response, file, fileList);
577
+ },
578
+ handleUploadError(error, file, fileList) {
579
+ this.$emit('uploadError', error, file, fileList);
580
+ },
581
+ getTargetElement() {
582
+ if (!this.dragTarget) return this.$refs.wrapperRef;
583
+
584
+ // 处理原生 DOM 元素(如 document.body)
585
+ if (typeof window !== 'undefined' && window.HTMLElement && this.dragTarget instanceof HTMLElement) {
586
+ return this.dragTarget;
587
+ }
588
+ if (typeof this.dragTarget === 'string') {
589
+ // 检查是否在浏览器环境中
590
+ if (typeof document !== 'undefined') {
591
+ return document.getElementById(this.dragTarget);
592
+ }
593
+ return this.$refs.wrapperRef;
594
+ }
595
+
596
+ // Vue2 中获取引用
597
+ if (this.dragTarget && this.dragTarget.$el) {
598
+ return this.dragTarget.$el;
599
+ }
600
+
601
+ // 兜底返回 wrapperRef
602
+ return this.$refs.wrapperRef;
603
+ },
604
+ // 修改拖拽样式切换方法
605
+ toggleDragStyle(isDrag) {
606
+ console.log('toggleDragStyle called:', isDrag); // 调试用,可以删除
607
+
608
+ this.isTargetDrag = isDrag;
609
+ if (this.targetElement) {
610
+ // 检查是否在浏览器环境中
611
+ const isBodyTarget = typeof document !== 'undefined' && this.targetElement === document.body;
612
+ if (isDrag) {
613
+ // 立即显示拖拽区域
614
+ this.$nextTick(() => {
615
+ this.appendDragArea();
616
+ });
617
+ if (isBodyTarget && this.$refs.dropAreaRef) {
618
+ this.$refs.dropAreaRef.style.position = 'fixed';
619
+ this.$refs.dropAreaRef.style.width = '100vw';
620
+ this.$refs.dropAreaRef.style.height = '100vh';
621
+ this.$refs.dropAreaRef.style.left = '0';
622
+ this.$refs.dropAreaRef.style.top = '0';
623
+ this.$refs.dropAreaRef.style.zIndex = '9999';
624
+ } else {
625
+ this.targetElement.style.position = 'relative';
626
+ }
627
+ } else {
628
+ // 延迟移除拖拽区域,避免闪烁
629
+ setTimeout(() => {
630
+ this.removeDragArea();
631
+ }, 100);
632
+ if (!isBodyTarget) {
633
+ this.targetElement.style.position = '';
634
+ }
635
+ }
636
+ }
637
+ },
638
+ // 修改事件处理方法
639
+ targetDragEnter(event) {
640
+ event.preventDefault();
641
+ event.stopPropagation();
642
+
643
+ // 移除防抖,直接执行
644
+ this.toggleDragStyle(true);
645
+ },
646
+ targetDropLeave(event) {
647
+ event.preventDefault();
648
+ event.stopPropagation();
649
+ const relatedTarget = event.relatedTarget;
650
+
651
+ // 如果离开后进入的元素仍在目标元素内部,或者进入了拖拽区域本身,不执行样式移除
652
+ if (this.targetElement && (this.targetElement.contains(relatedTarget) || this.$refs.dropAreaRef && this.$refs.dropAreaRef.contains(relatedTarget))) {
653
+ return;
654
+ }
655
+
656
+ // 移除防抖,直接执行
657
+ this.toggleDragStyle(false);
658
+ },
659
+ targetDrop(event) {
660
+ event.preventDefault();
661
+ event.stopPropagation();
662
+
663
+ // 立即移除拖拽样式
664
+ this.toggleDragStyle(false);
665
+ if (event.dataTransfer) {
666
+ const files = event.dataTransfer.files;
667
+ if (files.length) {
668
+ const filesArray = [];
669
+ for (let i = 0; i < files.length; i++) {
670
+ filesArray.push(files[i]);
671
+ }
672
+ this.$emit('upload-drop', filesArray, Object.assign({}, this.$props));
673
+ }
674
+ }
675
+ },
676
+ targetDragOver(event) {
677
+ event.preventDefault();
678
+ event.stopPropagation();
679
+ },
680
+ // 卡片相关方法
681
+ handleDelete(item, index) {
682
+ this.$emit('delete-card', item, index);
683
+ this.$nextTick(() => this.debouncedCheckPing());
684
+ },
685
+ // 修改 DOM 操作方法
686
+ appendDragArea() {
687
+ if (!this.$refs.dropAreaRef || !this.targetElement) {
688
+ return;
689
+ }
690
+
691
+ // 确保元素已经渲染
692
+ this.$nextTick(() => {
693
+ const dragAreaNode = this.$refs.dropAreaRef;
694
+
695
+ // 检查是否已经添加过了
696
+ if (dragAreaNode.parentNode !== this.targetElement) {
697
+ // 显示容器
698
+ if (this.$refs.dropAreaContainer) {
699
+ this.$refs.dropAreaContainer.style.display = 'block';
700
+ }
701
+
702
+ // 添加到目标元素
703
+ this.targetElement.appendChild(dragAreaNode);
704
+
705
+ // 强制重绘
706
+ dragAreaNode.offsetHeight;
707
+ }
708
+ });
709
+ },
710
+ removeDragArea() {
711
+ if (!this.$refs.dropAreaRef || !this.targetElement) {
712
+ return;
713
+ }
714
+ const dragAreaNode = this.$refs.dropAreaRef;
715
+ if (dragAreaNode.parentNode === this.targetElement) {
716
+ this.targetElement.removeChild(dragAreaNode);
717
+ }
718
+
719
+ // 隐藏容器
720
+ if (this.$refs.dropAreaContainer) {
721
+ this.$refs.dropAreaContainer.style.display = 'none';
722
+ }
723
+ }
724
+ },
725
+ created() {
726
+ this.debouncedCheckPing = this.debounce(this.checkPing, 100);
727
+ }
728
+ });
729
+ // CONCATENATED MODULE: ./src/components/Attachments/src/main.vue?vue&type=script&lang=js
730
+ /* harmony default export */ var src_mainvue_type_script_lang_js = (mainvue_type_script_lang_js);
731
+ // EXTERNAL MODULE: ./node_modules/style-loader/dist/runtime/injectStylesIntoStyleTag.js
732
+ var injectStylesIntoStyleTag = __webpack_require__(3);
733
+ var injectStylesIntoStyleTag_default = /*#__PURE__*/__webpack_require__.n(injectStylesIntoStyleTag);
734
+
735
+ // 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=43b239af&prod&lang=scss&scoped=true
736
+ var mainvue_type_style_index_0_id_43b239af_prod_lang_scss_scoped_true = __webpack_require__(85);
737
+
738
+ // 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=43b239af&prod&lang=scss&scoped=true
739
+
740
+
741
+
742
+ var options = {};
743
+
744
+ options.insert = "head";
745
+ options.singleton = false;
746
+
747
+ var update = injectStylesIntoStyleTag_default()(mainvue_type_style_index_0_id_43b239af_prod_lang_scss_scoped_true["a" /* default */], options);
748
+
749
+
750
+
751
+ /* harmony default export */ var src_mainvue_type_style_index_0_id_43b239af_prod_lang_scss_scoped_true = (mainvue_type_style_index_0_id_43b239af_prod_lang_scss_scoped_true["a" /* default */].locals || {});
752
+ // CONCATENATED MODULE: ./src/components/Attachments/src/main.vue?vue&type=style&index=0&id=43b239af&prod&lang=scss&scoped=true
753
+
754
+ // EXTERNAL MODULE: ./node_modules/vue-loader/lib/runtime/componentNormalizer.js
755
+ var componentNormalizer = __webpack_require__(0);
756
+
757
+ // CONCATENATED MODULE: ./src/components/Attachments/src/main.vue
758
+
759
+
760
+
761
+
762
+
763
+
764
+ /* normalize component */
765
+
766
+ var component = Object(componentNormalizer["a" /* default */])(
767
+ src_mainvue_type_script_lang_js,
768
+ render,
769
+ staticRenderFns,
770
+ false,
771
+ null,
772
+ "43b239af",
773
+ null
774
+
775
+ )
776
+
777
+ /* harmony default export */ var main = (component.exports);
778
+ // CONCATENATED MODULE: ./src/components/Attachments/index.js
779
+
780
+
781
+ /* istanbul ignore next */
782
+ main.install = function (Vue) {
783
+ Vue.component(main.name, main);
784
+ };
785
+ /* harmony default export */ var Attachments = __webpack_exports__["default"] = (main);
786
+
787
+ /***/ }),
788
+
789
+ /***/ 2:
790
+ /***/ (function(module, exports, __webpack_require__) {
791
+
792
+ "use strict";
793
+
794
+
795
+ /*
796
+ MIT License http://www.opensource.org/licenses/mit-license.php
797
+ Author Tobias Koppers @sokra
798
+ */
799
+ // css base code, injected by the css-loader
800
+ // eslint-disable-next-line func-names
801
+ module.exports = function (cssWithMappingToString) {
802
+ var list = []; // return the list of modules as css string
803
+
804
+ list.toString = function toString() {
805
+ return this.map(function (item) {
806
+ var content = cssWithMappingToString(item);
807
+
808
+ if (item[2]) {
809
+ return "@media ".concat(item[2], " {").concat(content, "}");
810
+ }
811
+
812
+ return content;
813
+ }).join("");
814
+ }; // import a list of modules into the list
815
+ // eslint-disable-next-line func-names
816
+
817
+
818
+ list.i = function (modules, mediaQuery, dedupe) {
819
+ if (typeof modules === "string") {
820
+ // eslint-disable-next-line no-param-reassign
821
+ modules = [[null, modules, ""]];
822
+ }
823
+
824
+ var alreadyImportedModules = {};
825
+
826
+ if (dedupe) {
827
+ for (var i = 0; i < this.length; i++) {
828
+ // eslint-disable-next-line prefer-destructuring
829
+ var id = this[i][0];
830
+
831
+ if (id != null) {
832
+ alreadyImportedModules[id] = true;
833
+ }
834
+ }
835
+ }
836
+
837
+ for (var _i = 0; _i < modules.length; _i++) {
838
+ var item = [].concat(modules[_i]);
839
+
840
+ if (dedupe && alreadyImportedModules[item[0]]) {
841
+ // eslint-disable-next-line no-continue
842
+ continue;
843
+ }
844
+
845
+ if (mediaQuery) {
846
+ if (!item[2]) {
847
+ item[2] = mediaQuery;
848
+ } else {
849
+ item[2] = "".concat(mediaQuery, " and ").concat(item[2]);
850
+ }
851
+ }
852
+
853
+ list.push(item);
854
+ }
855
+ };
856
+
857
+ return list;
858
+ };
859
+
860
+ /***/ }),
861
+
862
+ /***/ 24:
863
+ /***/ (function(module, __webpack_exports__, __webpack_require__) {
864
+
865
+ "use strict";
866
+ /* harmony import */ var _node_modules_css_loader_dist_runtime_api_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(2);
867
+ /* 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__);
868
+ // Imports
869
+
870
+ var ___CSS_LOADER_EXPORT___ = _node_modules_css_loader_dist_runtime_api_js__WEBPACK_IMPORTED_MODULE_0___default()(function(i){return i[1]});
871
+ // Module
872
+ ___CSS_LOADER_EXPORT___.push([module.i, ".el-x-filescard[data-v-4aa1569e]{width:fit-content;padding:12px;display:flex;flex-wrap:nowrap;gap:8px;align-items:center;border-radius:8px;position:relative;background:rgba(0,0,0,.06);max-width:var(--elx-files-card-max-width)}.el-x-filescard .el-x-filescard-progress[data-v-4aa1569e]{position:absolute;top:0;left:0;bottom:0;background:rgba(0,0,0,.08);border-radius:8px;transition:width .2s ease}.el-x-filescard .el-x-filescard-delete-icon[data-v-4aa1569e]{position:absolute;top:-8px;right:-6px;cursor:pointer;color:rgba(0,0,0,.4);display:none}.el-x-filescard .el-x-filescard-delete-icon[data-v-4aa1569e]:hover{color:#ff4d4f}.el-x-filescard:hover .el-x-filescard-delete-icon[data-v-4aa1569e]{display:block}.el-x-filescard-square[data-v-4aa1569e]{padding:0;margin:0}.el-x-filescard-icon[data-v-4aa1569e]{flex:none;font-size:var(--elx-files-card-icon-size)}.el-x-filescard-img[data-v-4aa1569e]{flex:none;width:var(--elx-files-card-icon-size);height:var(--elx-files-card-icon-size);border-radius:8px;object-fit:cover}.el-x-filescard-content[data-v-4aa1569e]{flex:auto;min-width:0;display:flex;flex-direction:column;align-items:stretch;justify-content:space-between;height:100%}.el-x-filescard-content .el-x-filescard-name[data-v-4aa1569e]{display:flex;flex-wrap:nowrap;max-width:100%;font-size:14px}.el-x-filescard-content .el-x-filescard-name .el-x-filescard-name-prefix[data-v-4aa1569e]{flex:0 1 auto;min-width:0;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.el-x-filescard-content .el-x-filescard-name .el-x-filescard-name-suffix[data-v-4aa1569e]{flex:none}.el-x-filescard-content .el-x-filescard-description[data-v-4aa1569e]{flex:none;min-width:0;overflow:hidden;text-overflow:ellipsis;white-space:nowrap;color:rgba(0,0,0,.4);font-size:12px}.el-x-filescard-content .el-x-filescard-description-error[data-v-4aa1569e]{color:#ff4d4f}.image-preview-container[data-v-4aa1569e]{position:relative;padding:0px;width:var(--elx-files-card-icon-size);height:var(--elx-files-card-icon-size);display:inline-block;border-radius:8px;overflow:hidden;transition:all .3s}.image-preview-container .preview-mask[data-v-4aa1569e]{position:absolute;inset:0;width:100%;display:flex;justify-content:center;align-items:center;opacity:0;background:rgba(0,0,0,.65);color:#fff;font-size:10px;transition:opacity .3s}.image-preview-container .preview-mask .el-icon-view[data-v-4aa1569e]{font-size:10px;margin-right:2px;display:flex;align-items:center;height:100%;margin-top:2px}.image-preview-container .preview-mask[data-v-4aa1569e]:hover{opacity:1;transition:opacity .3s;cursor:pointer}.image-preview-container-square .preview-mask[data-v-4aa1569e]{font-size:14px}.image-preview-container-square .preview-mask .el-icon-view[data-v-4aa1569e]{font-size:12px}.preview-mask-loading[data-v-4aa1569e]{position:absolute;inset:0;width:100%;display:flex;justify-content:center;align-items:center;background:rgba(0,0,0,.65);color:#fff;transition:all .3s}.preview-mask-loading .circle-progress[data-v-4aa1569e]{width:100% !important;height:100% !important;display:flex;justify-content:center;align-items:center}.preview-mask-loading .circle-progress .el-progress-circle[data-v-4aa1569e]{width:calc(100% - 12px) !important;height:calc(100% - 12px) !important}.preview-mask-loading .circle-progress .el-progress-circle svg>path[data-v-4aa1569e]:nth-child(1){stroke:hsla(0,0%,100%,.2);stroke-width:8px}.preview-mask-loading .circle-progress .el-progress__text[data-v-4aa1569e]{color:#fff;font-size:14px}.preview-mask-error[data-v-4aa1569e]{position:absolute;inset:0;width:100%;display:flex;justify-content:center;align-items:center;background:rgba(0,0,0,.5);font-size:12px;transition:all .3s;color:#ff4d4f;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.el-image-viewer__progress[data-v-4aa1569e]{display:none}.fade-enter-active[data-v-4aa1569e],.fade-leave-active[data-v-4aa1569e]{transition:opacity .3s}.fade-enter-from[data-v-4aa1569e],.fade-leave-to[data-v-4aa1569e]{opacity:0}", ""]);
873
+ // Exports
874
+ /* harmony default export */ __webpack_exports__["a"] = (___CSS_LOADER_EXPORT___);
875
+
876
+
877
+ /***/ }),
878
+
879
+ /***/ 26:
880
+ /***/ (function(module, __webpack_exports__, __webpack_require__) {
881
+
882
+ "use strict";
883
+ // ESM COMPAT FLAG
884
+ __webpack_require__.r(__webpack_exports__);
885
+
886
+ // CONCATENATED MODULE: ./node_modules/babel-loader/lib!./node_modules/vue-loader/lib/loaders/templateLoader.js??ref--6!./node_modules/vue-loader/lib??vue-loader-options!./src/components/FilesCard/src/main.vue?vue&type=template&id=4aa1569e&scoped=true
887
+ var render = function render() {
888
+ var _vm = this,
889
+ _c = _vm._self._c;
890
+ return _c("div", {
891
+ staticClass: "el-x-filescard",
892
+ class: {
893
+ "el-x-filescard-square": _vm.isSquareVariant && _vm.isImageFile,
894
+ "el-x-filescard-hovered": _vm.isHovered,
895
+ "el-x-filescard-error": _vm.status === "error",
896
+ "el-x-filescard-done": _vm.status === "done",
897
+ "el-x-filescard-uploading": _vm.status === "uploading"
898
+ },
899
+ style: {
900
+ "--elx-files-card-icon-size": `${_vm._iconSize}`,
901
+ "--elx-files-card-max-width": `${_vm.maxWidth}`,
902
+ ..._vm.styleConfig,
903
+ ...(_vm.isHovered && _vm.hoverStyle ? _vm.hoverStyle : {})
904
+ },
905
+ on: {
906
+ mouseenter: function ($event) {
907
+ _vm.isHovered = true;
908
+ },
909
+ mouseleave: function ($event) {
910
+ _vm.isHovered = false;
911
+ }
912
+ }
913
+ }, [_vm.status === "uploading" && !(_vm.isSquareVariant && _vm.isImageFile) ? _c("div", {
914
+ staticClass: "el-x-filescard-progress",
915
+ style: {
916
+ width: `${_vm.percent || 0}%`
917
+ }
918
+ }) : _vm._e(), _vm._v(" "), _vm.$slots.icon || _vm._fileType ? _vm._t("icon", function () {
919
+ return [!_vm.isImageFile ? _c(_vm.svgIconMap[_vm._fileType], {
920
+ tag: "component",
921
+ staticClass: "el-x-filescard-icon",
922
+ attrs: {
923
+ color: _vm.iconColor || _vm.colorMap[_vm._fileType]
924
+ }
925
+ }) : _vm._e(), _vm._v(" "), _vm.isImageFile ? [_c("div", {
926
+ staticClass: "image-preview-container",
927
+ class: {
928
+ "image-preview-container-square": _vm.isSquareVariant && _vm.isImageFile
929
+ },
930
+ on: {
931
+ mouseenter: function ($event) {
932
+ _vm.imageHovered = true;
933
+ },
934
+ mouseleave: function ($event) {
935
+ _vm.imageHovered = false;
936
+ }
937
+ }
938
+ }, [_vm._previewImgUrl ? _c("el-image", {
939
+ ref: "imgRef",
940
+ staticClass: "el-x-filescard-img",
941
+ attrs: {
942
+ src: _vm._previewImgUrl,
943
+ "preview-src-list": _vm.imgPreview ? [_vm._previewImgUrl] : [],
944
+ fit: "cover",
945
+ "show-progress": false,
946
+ "hide-on-click-modal": ""
947
+ },
948
+ on: {
949
+ show: function ($event) {
950
+ return _vm.handlePreviewAction("self");
951
+ }
952
+ }
953
+ }) : _c(_vm.svgIconMap[_vm._fileType], {
954
+ tag: "component",
955
+ staticClass: "el-x-filescard-img",
956
+ attrs: {
957
+ color: _vm.iconColor || _vm.colorMap[_vm._fileType]
958
+ }
959
+ }), _vm._v(" "), _c("transition", {
960
+ attrs: {
961
+ name: "fade"
962
+ }
963
+ }, [_vm.imageHovered && _vm._previewImgUrl && _vm.imgPreviewMask && _vm.imgPreview ? _vm._t("image-preview-actions", function () {
964
+ return [_c("div", {
965
+ staticClass: "preview-mask",
966
+ on: {
967
+ click: function ($event) {
968
+ return _vm.handlePreviewAction("mask");
969
+ }
970
+ }
971
+ }, [_c("i", {
972
+ staticClass: "el-icon-view"
973
+ }), _vm._v(" "), _c("span", [_vm._v("预览")])])];
974
+ }, {
975
+ item: {
976
+ ..._vm.propsData,
977
+ prefix: _vm.namePrefix,
978
+ suffix: _vm.nameSuffix
979
+ }
980
+ }) : _vm._e()], 2), _vm._v(" "), _vm.status === "uploading" && _vm.isSquareVariant ? _c("div", {
981
+ staticClass: "preview-mask-loading"
982
+ }, [_c("el-progress", {
983
+ staticClass: "circle-progress",
984
+ attrs: {
985
+ color: "#fff",
986
+ type: "circle",
987
+ percentage: _vm.percent
988
+ }
989
+ })], 1) : _vm.status === "error" && _vm.isSquareVariant ? _c("div", {
990
+ staticClass: "preview-mask-error"
991
+ }, [_c("span", {
992
+ staticClass: "error-text"
993
+ }, [_vm._v(_vm._s(_vm.errorTip || "上传失败"))])]) : _vm._e()], 1)] : _vm._e()];
994
+ }, {
995
+ item: _vm.propsData
996
+ }) : _vm._e(), _vm._v(" "), (_vm.$slots.content || _vm.name || _vm.description) && !(_vm.isSquareVariant && _vm.isImageFile) ? _vm._t("content", function () {
997
+ return [_c("div", {
998
+ staticClass: "el-x-filescard-content"
999
+ }, [_vm.name ? _c("div", {
1000
+ staticClass: "el-x-filescard-name"
1001
+ }, [_vm._t("name-prefix", function () {
1002
+ return [_c("div", {
1003
+ staticClass: "el-x-filescard-name-prefix"
1004
+ }, [_vm._v(_vm._s(_vm.namePrefix))])];
1005
+ }, {
1006
+ item: {
1007
+ ..._vm.propsData,
1008
+ prefix: _vm.namePrefix,
1009
+ suffix: _vm.nameSuffix
1010
+ }
1011
+ }), _vm._v(" "), _vm._t("name-suffix", function () {
1012
+ return [_c("div", {
1013
+ staticClass: "el-x-filescard-name-suffix"
1014
+ }, [_vm._v(_vm._s(_vm.nameSuffix))])];
1015
+ }, {
1016
+ item: {
1017
+ ..._vm.propsData,
1018
+ prefix: _vm.namePrefix,
1019
+ suffix: _vm.nameSuffix
1020
+ }
1021
+ })], 2) : _vm._e(), _vm._v(" "), _vm._t("description", function () {
1022
+ return [_c("div", {
1023
+ staticClass: "el-x-filescard-description",
1024
+ class: {
1025
+ "el-x-filescard-description-error": _vm.status === "error",
1026
+ "el-x-filescard-description-done": _vm.status === "done",
1027
+ "el-x-filescard-description-uploading": _vm.status === "uploading"
1028
+ }
1029
+ }, [_vm._v("\n " + _vm._s(_vm._description) + "\n ")])];
1030
+ }, {
1031
+ item: {
1032
+ ..._vm.propsData,
1033
+ prefix: _vm.namePrefix,
1034
+ suffix: _vm.nameSuffix
1035
+ }
1036
+ })], 2)];
1037
+ }, {
1038
+ item: _vm.propsData
1039
+ }) : _vm._e(), _vm._v(" "), _vm.showDelIcon && _vm.isHovered ? _c("div", {
1040
+ staticClass: "el-x-filescard-delete-icon",
1041
+ on: {
1042
+ click: _vm.handleDelete
1043
+ }
1044
+ }, [_vm._t("del-icon", function () {
1045
+ return [_c("i", {
1046
+ staticClass: "el-icon-error"
1047
+ })];
1048
+ }, {
1049
+ item: _vm.propsData
1050
+ })], 2) : _vm._e()], 2);
1051
+ };
1052
+ var staticRenderFns = [];
1053
+ render._withStripped = true;
1054
+
1055
+ // CONCATENATED MODULE: ./src/components/FilesCard/src/main.vue?vue&type=template&id=4aa1569e&scoped=true
1056
+
1057
+ // CONCATENATED MODULE: ./node_modules/babel-loader/lib!./node_modules/vue-loader/lib/loaders/templateLoader.js??ref--6!./node_modules/vue-loader/lib??vue-loader-options!./src/components/FilesCard/src/fileSvg/audio.vue?vue&type=template&id=70981d96
1058
+ var audiovue_type_template_id_70981d96_render = function render() {
1059
+ var _vm = this,
1060
+ _c = _vm._self._c;
1061
+ return _c("svg", {
1062
+ attrs: {
1063
+ xmlns: "http://www.w3.org/2000/svg",
1064
+ "xmlns:xlink": "http://www.w3.org/1999/xlink",
1065
+ fill: "none",
1066
+ version: "1.1",
1067
+ width: "1em",
1068
+ height: "1em",
1069
+ viewBox: "0 0 150 175"
1070
+ }
1071
+ }, [_c("g", [_c("g", [_c("path", {
1072
+ staticStyle: {
1073
+ "mix-blend-mode": "passthrough"
1074
+ },
1075
+ attrs: {
1076
+ d: "M103.622,0L27.5981,0C12.355,0,0,12.3648,0,27.6155L0,147.384C0,162.637,12.357,175,27.5981,175L122.402,175C137.645,175,150,162.635,150,147.384L150,46.405C150,40.1855,147.532,34.2219,143.136,29.8255L120.191,6.86627C115.797,2.46982,109.837,0,103.622,0Z",
1077
+ fill: "currentColor",
1078
+ "fill-opacity": "1"
1079
+ }
1080
+ })]), _vm._v(" "), _c("g", [_c("path", {
1081
+ staticStyle: {
1082
+ "mix-blend-mode": "passthrough"
1083
+ },
1084
+ attrs: {
1085
+ d: "M143.7801,30.808L120.8914,6.73925C117.6075,3.28624,113.4198,0.940079,108.86269999999999,0L108.86269999999999,27.0143C108.86269999999999,35.591,115.4741,42.5433,123.6303,42.5433L150,42.5433C149.003,38.1003,146.849,34.0369,143.7801,30.808ZM112.2728,63.4637C112.273,62.2072,111.6695,61.0158,110.6263,60.2131C109.58279999999999,59.4109,108.20830000000001,59.0807,106.8757,59.3119L63.9774,66.7645C61.8208,67.1384,60.2595,68.883,60.2595,70.9164L60.2891,108.928C59.1133,108.527,57.8701,108.322,56.6172,108.323C50.752629999999996,108.323,46,112.728,46,118.161C46,123.596,50.75427,128,56.6172,128C62.4801,128,67.2343,123.594,67.2343,118.161L67.2343,82.3036L105.3292,75.6853L105.3292,101.475C104.1534,101.074,102.9102,100.869,101.65729999999999,100.87C95.7928,100.87,91.0401,105.276,91.0401,110.709C91.0401,116.142,95.7944,120.547,101.65729999999999,120.547C107.5202,120.547,112.2745,116.142,112.2745,110.709Q112.2728,110.528,112.2728,63.4637Z",
1086
+ fill: "#000000",
1087
+ "fill-opacity": "0.20000000298023224"
1088
+ }
1089
+ })]), _vm._v(" "), _c("g", [_c("path", {
1090
+ staticStyle: {
1091
+ "mix-blend-mode": "passthrough"
1092
+ },
1093
+ attrs: {
1094
+ d: "M107.9983,59.48451C107.9984,58.15049,107.361,56.88564,106.2592,56.03341C105.1571,55.181845,103.7053,54.831213,102.2977,55.0766483L56.987899999999996,62.98886C54.7101,63.38576,53.061099999999996,65.238,53.061099999999996,67.3967L53.0923,107.7516C51.8504,107.3258,50.5373,107.1084,49.214,107.1094C43.01979,107.1094,38,111.7867,38,117.5547C38,123.3243,43.02153,128,49.214,128C55.4065,128,60.428,123.3227,60.428,117.5547L60.428,79.4861L100.6643,72.4596L100.6643,99.8394C99.42240000000001,99.4136,98.10929999999999,99.1962,96.786,99.19720000000001C90.5918,99.19720000000001,85.572,103.8745,85.572,109.6425C85.572,115.4105,90.5935,120.0878,96.786,120.0878C102.9785,120.0878,108,115.4105,108,109.6425Q107.9983,109.4505,107.9983,59.48451Z",
1095
+ fill: "#FFFFFF",
1096
+ "fill-opacity": "1"
1097
+ }
1098
+ })])])]);
1099
+ };
1100
+ var audiovue_type_template_id_70981d96_staticRenderFns = [];
1101
+ audiovue_type_template_id_70981d96_render._withStripped = true;
1102
+
1103
+ // CONCATENATED MODULE: ./src/components/FilesCard/src/fileSvg/audio.vue?vue&type=template&id=70981d96
1104
+
1105
+ // EXTERNAL MODULE: ./node_modules/vue-loader/lib/runtime/componentNormalizer.js
1106
+ var componentNormalizer = __webpack_require__(0);
1107
+
1108
+ // CONCATENATED MODULE: ./src/components/FilesCard/src/fileSvg/audio.vue
1109
+
1110
+ var script = {}
1111
+
1112
+
1113
+ /* normalize component */
1114
+
1115
+ var component = Object(componentNormalizer["a" /* default */])(
1116
+ script,
1117
+ audiovue_type_template_id_70981d96_render,
1118
+ audiovue_type_template_id_70981d96_staticRenderFns,
1119
+ false,
1120
+ null,
1121
+ null,
1122
+ null
1123
+
1124
+ )
1125
+
1126
+ /* harmony default export */ var audio = (component.exports);
1127
+ // CONCATENATED MODULE: ./node_modules/babel-loader/lib!./node_modules/vue-loader/lib/loaders/templateLoader.js??ref--6!./node_modules/vue-loader/lib??vue-loader-options!./src/components/FilesCard/src/fileSvg/code.vue?vue&type=template&id=900b2442
1128
+ var codevue_type_template_id_900b2442_render = function render() {
1129
+ var _vm = this,
1130
+ _c = _vm._self._c;
1131
+ return _c("svg", {
1132
+ attrs: {
1133
+ xmlns: "http://www.w3.org/2000/svg",
1134
+ "xmlns:xlink": "http://www.w3.org/1999/xlink",
1135
+ fill: "none",
1136
+ version: "1.1",
1137
+ width: "1em",
1138
+ height: "1em",
1139
+ viewBox: "0 0 150 175"
1140
+ }
1141
+ }, [_c("g", [_c("g", [_c("path", {
1142
+ attrs: {
1143
+ d: "M103.622,0L27.5981,0C12.355,0,0,12.3648,0,27.6155L0,147.384C0,162.637,12.357,175,27.5981,175L122.402,175C137.645,175,150,162.635,150,147.384L150,46.4069C150,40.1874,147.532,34.2239,143.136,29.8274L120.191,6.86822C115.795,2.47051,109.835,-0.00000298153,103.622,0Z",
1144
+ fill: "currentColor",
1145
+ "fill-opacity": "1"
1146
+ }
1147
+ })]), _vm._v(" "), _c("g", [_c("path", {
1148
+ attrs: {
1149
+ d: "M143.13623844909668,29.827444455909728L120.19133844909668,6.868224455909729C116.89933844909667,3.574394455909729,112.70153844909667,1.336388455909729,108.13313844909668,0.439644455909729L108.13313844909668,26.208644455909727C108.13313844909668,34.38994445590973,114.76073844909668,41.021744455909726,122.93693844909669,41.021744455909726L149.37123844909667,41.021744455909726C148.3722384490967,36.78324445590973,146.21323844909668,32.90694445590973,143.13623844909668,29.827444455909728ZM55.04783844909668,67.17184445590973C53.218138449096685,65.34094445590974,50.249938449096675,65.34094445590974,48.42023844909668,67.17184445590973L28.49052844909668,87.11214445590973C26.66080844909668,88.94304445590973,26.66080844909668,91.91304445590973,28.49052844909668,93.74394445590973L48.41823844909668,113.68464445590973C49.29613844909668,114.56564445590973,50.488838449096676,115.05964445590973,51.73203844909668,115.05764445590972C52.931038449096675,115.05764445590972,54.13203844909668,114.60064445590973,55.04583844909668,113.68464445590973C56.875638449096684,111.85364445590973,56.875638449096684,108.88364445590973,55.04583844909668,107.05264445590973L38.43193844909668,90.42804445590973L55.04593844909668,73.80364445590973C56.877538449096676,71.97274445590973,56.877538449096676,69.00264445590973,55.04783844909668,67.17184445590973ZM101.57783844909667,67.17184445590973C99.74813844909669,65.34094445590974,96.77993844909668,65.34094445590974,94.95023844909667,67.17184445590973C93.12043844909668,69.00264445590973,93.12043844909668,71.97274445590973,94.95023844909667,73.80364445590973L111.56413844909667,90.42804445590973L94.95023844909667,107.05264445590973C93.12043844909668,108.88364445590973,93.12043844909668,111.85364445590973,94.95023844909667,113.68464445590973C95.86603844909668,114.60064445590973,97.06503844909668,115.05764445590972,98.26403844909667,115.05764445590972C99.46293844909668,115.05764445590972,100.66193844909668,114.60064445590973,101.57783844909667,113.68464445590973L121.50553844909668,93.74394445590973C123.33523844909668,91.91304445590973,123.33523844909668,88.94304445590973,121.50553844909668,87.11214445590973L101.57783844909667,67.17184445590973ZM85.38763844909667,57.898244455909726C82.91933844909667,57.11864445590973,80.28703844909668,58.488344455909726,79.50793844909668,60.95814445590973L61.55443844909668,117.86364445590974C60.775238449096676,120.33364445590973,62.14413844909668,122.96764445590973,64.61233844909668,123.74764445590974C65.08103844909668,123.89564445590973,65.55753844909668,123.96564445590973,66.02423844909669,123.96564445590973C68.01403844909669,123.96564445590973,69.86133844909668,122.68664445590973,70.49213844909667,120.68764445590973L88.44563844909668,63.78164445590973C89.22473844909668,61.31184445590973,87.85583844909668,58.67784445590973,85.38763844909667,57.898244455909726Z",
1150
+ fill: "#000000",
1151
+ "fill-opacity": "0.20000000298023224"
1152
+ }
1153
+ })]), _vm._v(" "), _c("g", [_c("path", {
1154
+ attrs: {
1155
+ d: "M55.04783844909668,64.82700524414062C53.218138449096685,62.996135244140625,50.249938449096675,62.996135244140625,48.42023844909668,64.82700524414062L28.49052844909668,84.76732524414062C26.66080844909668,86.59822524414062,26.66080844909668,89.56822524414062,28.49052844909668,91.39912524414063L48.41823844909668,111.33942524414063C49.29613844909668,112.22042524414063,50.488838449096676,112.71482524414063,51.73203844909668,112.71312524414063C52.931038449096675,112.71312524414063,54.13203844909668,112.25582524414062,55.04583844909668,111.33942524414063C56.875638449096684,109.50852524414063,56.875638449096684,106.53852524414063,55.04583844909668,104.70762524414062L38.43193844909668,88.08322524414064L55.04593844909668,71.45882524414063C56.877538449096676,69.62792524414063,56.877538449096676,66.65782524414062,55.04783844909668,64.82700524414062ZM121.50753844909669,84.76732524414062L101.57783844909667,64.82700524414062C99.74813844909669,62.996135244140625,96.77993844909668,62.996135244140625,94.95023844909667,64.82700524414062C93.12043844909668,66.65792524414063,93.12043844909668,69.62792524414063,94.95023844909667,71.45882524414063L111.56413844909667,88.08322524414064L94.95023844909667,104.70762524414062C93.12043844909668,106.53852524414063,93.12043844909668,109.50852524414063,94.95023844909667,111.33942524414063C95.86603844909668,112.25582524414062,97.06503844909668,112.71312524414063,98.26403844909667,112.71312524414063C99.46293844909668,112.71312524414063,100.66193844909668,112.25582524414062,101.57783844909667,111.33942524414063L121.50553844909668,91.39912524414063C123.33723844909667,89.56822524414062,123.33723844909667,86.60012524414063,121.50753844909669,84.76732524414062ZM85.38763844909667,55.55343924414063C82.91933844909667,54.773805244140625,80.28703844909668,56.14353824414062,79.50793844909668,58.613365244140624L61.55433844909668,115.51902524414062C60.775238449096676,117.98882524414063,62.14413844909668,120.62272524414063,64.61233844909668,121.40242524414063C65.08103844909668,121.55092524414063,65.55753844909668,121.62122524414063,66.02423844909669,121.62122524414063C68.01403844909669,121.62122524414063,69.86133844909668,120.34142524414062,70.49213844909667,118.34252524414063L88.44563844909668,61.436855244140624C89.22473844909668,58.96702524414062,87.85583844909668,56.333074244140626,85.38763844909667,55.55343924414063Z",
1156
+ fill: "#FFFFFF",
1157
+ "fill-opacity": "1"
1158
+ }
1159
+ })])])]);
1160
+ };
1161
+ var codevue_type_template_id_900b2442_staticRenderFns = [];
1162
+ codevue_type_template_id_900b2442_render._withStripped = true;
1163
+
1164
+ // CONCATENATED MODULE: ./src/components/FilesCard/src/fileSvg/code.vue?vue&type=template&id=900b2442
1165
+
1166
+ // CONCATENATED MODULE: ./src/components/FilesCard/src/fileSvg/code.vue
1167
+
1168
+ var code_script = {}
1169
+
1170
+
1171
+ /* normalize component */
1172
+
1173
+ var code_component = Object(componentNormalizer["a" /* default */])(
1174
+ code_script,
1175
+ codevue_type_template_id_900b2442_render,
1176
+ codevue_type_template_id_900b2442_staticRenderFns,
1177
+ false,
1178
+ null,
1179
+ null,
1180
+ null
1181
+
1182
+ )
1183
+
1184
+ /* harmony default export */ var code = (code_component.exports);
1185
+ // CONCATENATED MODULE: ./node_modules/babel-loader/lib!./node_modules/vue-loader/lib/loaders/templateLoader.js??ref--6!./node_modules/vue-loader/lib??vue-loader-options!./src/components/FilesCard/src/fileSvg/database.vue?vue&type=template&id=99dc0ab4
1186
+ var databasevue_type_template_id_99dc0ab4_render = function render() {
1187
+ var _vm = this,
1188
+ _c = _vm._self._c;
1189
+ return _c("svg", {
1190
+ attrs: {
1191
+ xmlns: "http://www.w3.org/2000/svg",
1192
+ "xmlns:xlink": "http://www.w3.org/1999/xlink",
1193
+ fill: "none",
1194
+ version: "1.1",
1195
+ width: "1em",
1196
+ height: "1em",
1197
+ viewBox: "0 0 150 175"
1198
+ }
1199
+ }, [_c("g", [_c("g", [_c("path", {
1200
+ staticStyle: {
1201
+ "mix-blend-mode": "passthrough"
1202
+ },
1203
+ attrs: {
1204
+ d: "M103.619,0L27.5941,0C12.3421,0,0,12.3702,0,27.6131L0,147.387C0,162.649,12.3617,175,27.5941,175L122.406,175C137.658,175,150,162.63,150,147.387L150,46.4126C150,40.1982,147.539,34.2379,143.145,29.8213L120.199,6.8593C115.805,2.46231,109.829,0.00000149095,103.619,0Z",
1205
+ fill: "currentColor",
1206
+ "fill-opacity": "1"
1207
+ }
1208
+ })]), _vm._v(" "), _c("g", [_c("path", {
1209
+ staticStyle: {
1210
+ "mix-blend-mode": "passthrough"
1211
+ },
1212
+ attrs: {
1213
+ d: "M143.14539389648436,29.82138343706131L120.19919389648437,6.859353437061309C116.87932389648438,3.53718343706131,112.68065389648437,1.3289224370613097,108.14999389648438,0.4299834370613098L108.14999389648438,26.20608343706131C108.14999389648438,34.39428343706131,114.77023389648437,41.01908343706131,122.95279389648438,41.01908343706131L149.37509389648437,41.01908343706131C148.3790938964844,36.81748343706131,146.2504938964844,32.92858343706131,143.14539389648436,29.82138343706131Z",
1214
+ fill: "#000000",
1215
+ "fill-opacity": "0.20000000298023224"
1216
+ }
1217
+ })]), _vm._v(" "), _c("g", [_c("path", {
1218
+ staticStyle: {
1219
+ "mix-blend-mode": "passthrough"
1220
+ },
1221
+ attrs: {
1222
+ d: "M103.05298260498047,65.48576474853516Q103.05298260498047,65.69012474853515,103.01918260498047,65.89424474853516Q102.98538260498046,66.09836474853516,102.91788260498046,66.30175474853516Q102.85028260498046,66.50513474853516,102.74928260498046,66.70728474853516Q102.64818260498046,66.90944474853515,102.51378260498046,67.10987474853516Q102.37938260498046,67.31030474853516,102.21198260498048,67.50860474853516Q102.04458260498046,67.70680474853515,101.84458260498047,67.90240474853516Q101.64458260498047,68.09790474853516,101.41258260498047,68.29030474853516Q101.18048260498047,68.48280474853516,100.91678260498047,68.67160474853516Q100.65318260498047,68.86040474853516,100.35868260498046,69.04510474853515Q100.06408260498047,69.22990474853516,99.73938260498048,69.41010474853516Q99.41458260498047,69.59030474853516,99.06048260498048,69.76560474853515Q98.70628260498046,69.94090474853516,98.32358260498046,70.11090474853516Q97.94078260498047,70.28080474853516,97.53048260498048,70.44490474853515Q97.12008260498047,70.60910474853516,96.68308260498047,70.76710474853516Q96.24598260498047,70.92500474853516,95.78338260498046,71.07650474853516Q95.32068260498048,71.22790474853515,94.83358260498048,71.37240474853516Q94.34648260498047,71.51690474853515,93.83598260498047,71.65410474853516Q93.32558260498047,71.79140474853516,92.79308260498047,71.92100474853515Q92.26048260498047,72.05070474853515,91.70718260498046,72.17240474853516Q91.15388260498047,72.29420474853515,90.58108260498047,72.40770474853515Q90.00828260498048,72.52120474853515,89.41738260498047,72.62630474853516Q88.82648260498047,72.73140474853516,88.21888260498048,72.82770474853515Q87.61138260498046,72.92400474853515,86.98858260498048,73.01140474853516Q86.36588260498047,73.09880474853516,85.72938260498047,73.17700474853515Q85.09288260498047,73.25520474853516,84.44428260498047,73.32410474853515Q83.79568260498047,73.39290474853516,83.13638260498047,73.45220474853515Q82.47718260498047,73.51160474853515,81.80888260498047,73.56120474853516Q81.14068260498047,73.61090474853515,80.46498260498046,73.65080474853515Q79.78938260498046,73.69060474853515,79.10788260498046,73.72060474853515Q78.42648260498046,73.75060474853515,77.74088260498047,73.77060474853516Q77.05528260498048,73.79070474853515,76.36718260498047,73.80070474853515Q75.67918260498047,73.81070474853516,74.99028260498046,73.81070474853516Q74.30128260498047,73.81070474853516,73.61328260498047,73.80070474853515Q72.92518260498046,73.79070474853515,72.23958260498047,73.77060474853516Q71.55398260498046,73.75060474853515,70.87258260498047,73.72060474853515Q70.19108260498047,73.69060474853515,69.51548260498046,73.65080474853515Q68.83978260498047,73.61090474853515,68.17158260498047,73.56120474853516Q67.50328260498047,73.51160474853515,66.84408260498047,73.45220474853515Q66.18478260498047,73.39290474853516,65.53618260498047,73.32410474853515Q64.88758260498047,73.25520474853516,64.25108260498047,73.17700474853515Q63.61458260498047,73.09880474853516,62.99188260498047,73.01140474853516Q62.36908260498047,72.92410474853516,61.76158260498047,72.82770474853515Q61.15398260498047,72.73140474853516,60.563082604980465,72.62630474853516Q59.97218260498047,72.52120474853515,59.39938260498047,72.40770474853515Q58.82658260498047,72.29420474853515,58.273282604980466,72.17240474853516Q57.71998260498047,72.05070474853515,57.18738260498047,71.92100474853515Q56.65488260498047,71.79140474853516,56.14444260498047,71.65410474853516Q55.634002604980466,71.51690474853515,55.14687260498047,71.37240474853516Q54.659742604980465,71.22790474853515,54.19710260498047,71.07650474853516Q53.73447260498047,70.92500474853516,53.29743260498047,70.76710474853516Q52.86040260498047,70.60910474853516,52.45002260498047,70.44490474853515Q52.03964260498047,70.28080474853516,51.65691260498047,70.11090474853516Q51.27417260498047,69.94090474853516,50.92001260498047,69.76560474853515Q50.56584260498047,69.59030474853516,50.241092604980466,69.41010474853516Q49.91635260498047,69.22990474853516,49.621802604980466,69.04510474853515Q49.32726260498047,68.86040474853516,49.06363260498047,68.67160474853516Q48.80000260498047,68.48280474853516,48.56791260498047,68.29030474853516Q48.33583260498047,68.09790474853516,48.13585260498047,67.90240474853516Q47.93587260498047,67.70680474853515,47.76848760498047,67.50860474853516Q47.60109860498047,67.31030474853516,47.46670060498047,67.10987474853516Q47.33230260498047,66.90944474853515,47.23121960498047,66.70728474853516Q47.13013660498047,66.50513474853516,47.062612604980465,66.30175474853516Q46.99508820498047,66.09836474853516,46.961285404980465,65.89424474853516Q46.92748260498047,65.69012474853515,46.92748260498047,65.48576474853516Q46.92748260498047,65.28139474853515,46.961285404980465,65.07727474853516Q46.99508820498047,64.87315474853516,47.062612604980465,64.66977474853516Q47.13013660498047,64.46639474853515,47.23121960498047,64.26423474853516Q47.33230260498047,64.06208474853516,47.46670060498047,63.861644748535156Q47.60109860498047,63.661204748535155,47.76848760498047,63.46296474853516Q47.93587260498047,63.26472474853516,48.13585260498047,63.069154748535155Q48.33583260498047,62.87358474853516,48.56791260498047,62.68116474853515Q48.80000260498047,62.488744748535154,49.06363260498047,62.29993474853516Q49.32726260498047,62.111124748535154,49.621802604980466,61.926384748535156Q49.91635260498047,61.741634748535155,50.241092604980466,61.56140474853515Q50.56584260498047,61.381164748535156,50.92001260498047,61.20587474853516Q51.27417260498047,61.030584748535155,51.65691260498047,60.86066474853516Q52.03964260498047,60.69073474853516,52.45002260498047,60.52659474853515Q52.86040260498047,60.362444748535154,53.29743260498047,60.20446474853516Q53.73447260498047,60.04648474853516,54.19710260498047,59.895064748535155Q54.659742604980465,59.74363474853516,55.14687260498047,59.599124748535154Q55.634002604980466,59.45461474853516,56.14444260498047,59.31737474853516Q56.65488260498047,59.18013474853515,57.18738260498047,59.050484748535155Q57.71998260498047,58.92083474853516,58.273282604980466,58.799094748535154Q58.82658260498047,58.67735474853516,59.39938260498047,58.56381474853516Q59.97218260498047,58.45027474853516,60.563082604980465,58.34520474853515Q61.15398260498047,58.24014474853516,61.76158260498047,58.14380474853515Q62.36908260498047,58.047467748535155,62.99188260498047,57.960089748535154Q63.61458260498047,57.87271174853515,64.25108260498047,57.794504748535154Q64.88758260498047,57.71629674853516,65.53618260498047,57.64744774853516Q66.18478260498047,57.57859874853516,66.84408260498047,57.51927474853515Q67.50328260498047,57.45994974853516,68.17158260498047,57.41029374853515Q68.83978260498047,57.36063674853516,69.51548260498046,57.320766748535156Q70.19108260498047,57.280896748535156,70.87258260498047,57.25090984853516Q71.55398260498046,57.220923048535155,72.23958260498047,57.200891648535155Q72.92518260498046,57.180860248535154,73.61328260498047,57.17083254853516Q74.30128260498047,57.160804748535156,74.99028260498046,57.160804748535156Q75.67918260498047,57.160804748535156,76.36718260498047,57.17083254853516Q77.05528260498048,57.180860248535154,77.74088260498047,57.200891648535155Q78.42648260498046,57.220923048535155,79.10788260498046,57.25090984853516Q79.78938260498046,57.280896748535156,80.46498260498046,57.320766748535156Q81.14068260498047,57.36063674853516,81.80888260498047,57.41029374853515Q82.47718260498047,57.45994974853516,83.13638260498047,57.51927474853515Q83.79568260498047,57.57859874853516,84.44428260498047,57.64744774853516Q85.09288260498047,57.71629674853516,85.72938260498047,57.794504748535154Q86.36588260498047,57.87271174853515,86.98858260498048,57.960089748535154Q87.61138260498046,58.047467748535155,88.21888260498048,58.14380474853515Q88.82648260498047,58.24014474853516,89.41738260498047,58.34520474853515Q90.00828260498048,58.45027474853516,90.58108260498047,58.56381474853516Q91.15388260498047,58.67735474853516,91.70718260498046,58.799094748535154Q92.26048260498047,58.92083474853516,92.79308260498047,59.050484748535155Q93.32558260498047,59.18013474853515,93.83598260498047,59.31737474853516Q94.34648260498047,59.45461474853516,94.83358260498048,59.599124748535154Q95.32068260498048,59.74363474853516,95.78338260498046,59.895064748535155Q96.24598260498047,60.04648474853516,96.68308260498047,60.20446474853516Q97.12008260498047,60.362444748535154,97.53048260498048,60.52659474853515Q97.94078260498047,60.69073474853516,98.32358260498046,60.86066474853516Q98.70628260498046,61.030584748535155,99.06048260498048,61.20587474853516Q99.41458260498047,61.381164748535156,99.73938260498048,61.56140474853515Q100.06408260498047,61.741634748535155,100.35868260498046,61.926384748535156Q100.65318260498047,62.111124748535154,100.91678260498047,62.29993474853516Q101.18048260498047,62.488744748535154,101.41258260498047,62.68116474853515Q101.64458260498047,62.87358474853516,101.84458260498047,63.069154748535155Q102.04458260498046,63.26472474853516,102.21198260498048,63.46296474853516Q102.37938260498046,63.661204748535155,102.51378260498046,63.861644748535156Q102.64818260498046,64.06208474853516,102.74928260498046,64.26423474853516Q102.85028260498046,64.46639474853515,102.91788260498046,64.66977474853516Q102.98538260498046,64.87315474853516,103.01918260498047,65.07727474853516Q103.05298260498047,65.28139474853515,103.05298260498047,65.48576474853516Z",
1223
+ fill: "#F26C38",
1224
+ "fill-opacity": "1"
1225
+ }
1226
+ })]), _vm._v(" "), _c("g", [_c("path", {
1227
+ staticStyle: {
1228
+ "mix-blend-mode": "passthrough"
1229
+ },
1230
+ attrs: {
1231
+ d: "M74.99021385498047,91.43770888671875C90.47651385498047,91.43770888671875,103.05301385498046,87.70520888671875,103.05301385498046,83.11280888671875L103.05301385498046,71.71969988671874C103.05301385498046,71.56336488671874,103.03351385498047,71.38748088671875,103.01391385498047,71.23114628671875C102.17421385498048,75.60858888671875,89.94921385498047,79.08709888671875,75.00971385498048,79.08709888671875C60.07031385498047,79.08709888671875,47.825805854980466,75.58904888671876,46.986073654980466,71.21160888671875C46.94701385498047,71.36794388671875,46.94701385498047,71.52428488671875,46.94701385498047,71.70016288671874L46.94701385498047,83.09320888671876C46.94701385498047,87.70520888671875,59.50401385498047,91.43770888671875,74.99021385498047,91.43770888671875Z",
1232
+ fill: "#F26C38",
1233
+ "fill-opacity": "1"
1234
+ }
1235
+ })]), _vm._v(" "), _c("g", [_c("path", {
1236
+ staticStyle: {
1237
+ "mix-blend-mode": "passthrough"
1238
+ },
1239
+ attrs: {
1240
+ d: "M74.99021385498047,108.5957830444336C90.47651385498047,108.5957830444336,103.05301385498046,104.8631830444336,103.05301385498046,100.2707830444336L103.05301385498046,88.87773704443359C103.05301385498046,88.72140204443359,103.03351385498047,88.54551804443359,103.01391385498047,88.3891830444336C102.17421385498048,92.76663304443359,89.94921385498047,96.2451330444336,75.00971385498048,96.2451330444336C60.07031385498047,96.2451330444336,47.825805854980466,92.76663304443359,46.986073654980466,88.3891830444336C46.94701385498047,88.54551804443359,46.94701385498047,88.70185304443359,46.94701385498047,88.87773704443359L46.94701385498047,100.2707830444336C46.94701385498047,104.8631830444336,59.50401385498047,108.5957830444336,74.99021385498047,108.5957830444336Z",
1241
+ fill: "#F26C38",
1242
+ "fill-opacity": "1"
1243
+ }
1244
+ })]), _vm._v(" "), _c("g", [_c("path", {
1245
+ staticStyle: {
1246
+ "mix-blend-mode": "passthrough"
1247
+ },
1248
+ attrs: {
1249
+ d: "M75.0097412902832,113.3249670288086C60.0703412902832,113.3249670288086,47.8453332902832,109.84646702880859,47.0056010902832,105.4690170288086C46.9665412902832,105.62535202880859,46.9665412902832,105.78168702880859,46.9665412902832,105.95757102880859L46.9665412902832,117.3506170288086C46.9665412902832,121.9430170288086,59.523541290283205,125.6756170288086,75.02924129028321,125.6756170288086C90.5350412902832,125.6756170288086,103.0920412902832,121.94311702880859,103.0920412902832,117.3506170288086L103.0920412902832,105.9575830288086C103.0920412902832,105.80124802880859,103.0725412902832,105.62536402880859,103.0529412902832,105.4690289564086C102.1741412902832,109.8464770288086,89.9492412902832,113.32497702880859,75.0097412902832,113.3249670288086Z",
1250
+ fill: "#F26C38",
1251
+ "fill-opacity": "1"
1252
+ }
1253
+ })]), _vm._v(" "), _c("g", [_c("path", {
1254
+ staticStyle: {
1255
+ "mix-blend-mode": "passthrough"
1256
+ },
1257
+ attrs: {
1258
+ d: "M103.05298260498047,63.14069867797852Q103.05298260498047,63.345058677978514,103.01918260498047,63.54917867797852Q102.98538260498046,63.75329867797851,102.91788260498046,63.95668867797852Q102.85028260498046,64.16006867797851,102.74928260498046,64.36221867797852Q102.64818260498046,64.56437867797851,102.51378260498046,64.76480867797852Q102.37938260498046,64.96523867797852,102.21198260498048,65.16353867797852Q102.04458260498046,65.36173867797851,101.84458260498047,65.55733867797852Q101.64458260498047,65.75283867797852,101.41258260498047,65.94523867797852Q101.18048260498047,66.13773867797852,100.91678260498047,66.32653867797852Q100.65318260498047,66.51533867797852,100.35868260498046,66.70003867797851Q100.06408260498047,66.88483867797852,99.73938260498048,67.06503867797852Q99.41458260498047,67.24523867797852,99.06048260498048,67.42053867797851Q98.70628260498046,67.59583867797852,98.32358260498046,67.76583867797852Q97.94078260498047,67.93573867797852,97.53048260498048,68.09983867797851Q97.12008260498047,68.26403867797852,96.68308260498047,68.42203867797852Q96.24598260498047,68.57993867797852,95.78338260498046,68.73143867797852Q95.32068260498048,68.88283867797851,94.83358260498048,69.02733867797852Q94.34648260498047,69.17183867797851,93.83598260498047,69.30903867797852Q93.32558260498047,69.44633867797852,92.79308260498047,69.57593867797851Q92.26048260498047,69.70563867797851,91.70718260498046,69.82733867797852Q91.15388260498047,69.94913867797851,90.58108260498047,70.06263867797851Q90.00828260498048,70.17613867797851,89.41738260498047,70.28123867797852Q88.82648260498047,70.38633867797851,88.21888260498048,70.48263867797851Q87.61138260498046,70.57893867797851,86.98858260498048,70.66633867797852Q86.36588260498047,70.75373867797852,85.72938260498047,70.83193867797851Q85.09288260498047,70.91013867797852,84.44428260498047,70.97903867797851Q83.79568260498047,71.04783867797852,83.13638260498047,71.10713867797851Q82.47718260498047,71.16653867797851,81.80888260498047,71.21613867797852Q81.14068260498047,71.26583867797851,80.46498260498046,71.30573867797851Q79.78938260498046,71.34553867797851,79.10788260498046,71.37553867797851Q78.42648260498046,71.40553867797851,77.74088260498047,71.42553867797852Q77.05528260498048,71.44563867797851,76.36718260498047,71.45563867797851Q75.67918260498047,71.46563867797852,74.99028260498046,71.46563867797852Q74.30128260498047,71.46563867797852,73.61328260498047,71.45563867797851Q72.92518260498046,71.44563867797851,72.23958260498047,71.42553867797852Q71.55398260498046,71.40553867797851,70.87258260498047,71.37553867797851Q70.19108260498047,71.34553867797851,69.51548260498046,71.30573867797851Q68.83978260498047,71.26583867797851,68.17158260498047,71.21613867797852Q67.50328260498047,71.16653867797851,66.84408260498047,71.10713867797851Q66.18478260498047,71.04783867797852,65.53618260498047,70.97903867797851Q64.88758260498047,70.91013867797852,64.25108260498047,70.83193867797851Q63.61458260498047,70.75373867797852,62.99188260498047,70.66633867797852Q62.36908260498047,70.57903867797852,61.76158260498047,70.48263867797851Q61.15398260498047,70.38633867797851,60.563082604980465,70.28123867797852Q59.97218260498047,70.17613867797851,59.39938260498047,70.06263867797851Q58.82658260498047,69.94913867797851,58.273282604980466,69.82733867797852Q57.71998260498047,69.70563867797851,57.18738260498047,69.57593867797851Q56.65488260498047,69.44633867797852,56.14444260498047,69.30903867797852Q55.634002604980466,69.17183867797851,55.14687260498047,69.02733867797852Q54.659742604980465,68.88283867797851,54.19710260498047,68.73143867797852Q53.73447260498047,68.57993867797852,53.29743260498047,68.42203867797852Q52.86040260498047,68.26403867797852,52.45002260498047,68.09983867797851Q52.03964260498047,67.93573867797852,51.65691260498047,67.76583867797852Q51.27417260498047,67.59583867797852,50.92001260498047,67.42053867797851Q50.56584260498047,67.24523867797852,50.241092604980466,67.06503867797852Q49.91635260498047,66.88483867797852,49.621802604980466,66.70003867797851Q49.32726260498047,66.51533867797852,49.06363260498047,66.32653867797852Q48.80000260498047,66.13773867797852,48.56791260498047,65.94523867797852Q48.33583260498047,65.75283867797852,48.13585260498047,65.55733867797852Q47.93587260498047,65.36173867797851,47.76848760498047,65.16353867797852Q47.60109860498047,64.96523867797852,47.46670060498047,64.76480867797852Q47.33230260498047,64.56437867797851,47.23121960498047,64.36221867797852Q47.13013660498047,64.16006867797851,47.062612604980465,63.95668867797852Q46.99508820498047,63.75329867797851,46.961285404980465,63.54917867797852Q46.92748260498047,63.345058677978514,46.92748260498047,63.14069867797852Q46.92748260498047,62.936328677978516,46.961285404980465,62.73220867797852Q46.99508820498047,62.528088677978516,47.062612604980465,62.32470867797851Q47.13013660498047,62.12132867797852,47.23121960498047,61.91916867797852Q47.33230260498047,61.717018677978515,47.46670060498047,61.516578677978515Q47.60109860498047,61.316138677978515,47.76848760498047,61.117898677978516Q47.93587260498047,60.91965867797852,48.13585260498047,60.724088677978514Q48.33583260498047,60.52851867797852,48.56791260498047,60.33609867797851Q48.80000260498047,60.143678677978514,49.06363260498047,59.95486867797852Q49.32726260498047,59.76605867797851,49.621802604980466,59.581318677978516Q49.91635260498047,59.396568677978514,50.241092604980466,59.21633867797851Q50.56584260498047,59.036098677978515,50.92001260498047,58.86080867797852Q51.27417260498047,58.685518677978514,51.65691260498047,58.51559867797852Q52.03964260498047,58.345668677978516,52.45002260498047,58.18152867797851Q52.86040260498047,58.01737867797851,53.29743260498047,57.85939867797852Q53.73447260498047,57.701418677978516,54.19710260498047,57.549998677978515Q54.659742604980465,57.39856867797852,55.14687260498047,57.25405867797851Q55.634002604980466,57.109548677978516,56.14444260498047,56.97230867797852Q56.65488260498047,56.83506867797851,57.18738260498047,56.705418677978514Q57.71998260498047,56.575768677978516,58.273282604980466,56.45402867797851Q58.82658260498047,56.33228867797852,59.39938260498047,56.21874867797852Q59.97218260498047,56.10520867797852,60.563082604980465,56.00013867797851Q61.15398260498047,55.89507867797852,61.76158260498047,55.79873867797851Q62.36908260498047,55.702401677978514,62.99188260498047,55.61502367797851Q63.61458260498047,55.52764567797851,64.25108260498047,55.44943867797851Q64.88758260498047,55.37123067797852,65.53618260498047,55.30238167797852Q66.18478260498047,55.233532677978516,66.84408260498047,55.17420867797851Q67.50328260498047,55.11488367797852,68.17158260498047,55.06522767797851Q68.83978260498047,55.015570677978516,69.51548260498046,54.975700677978516Q70.19108260498047,54.935830677978515,70.87258260498047,54.90584377797852Q71.55398260498046,54.875856977978515,72.23958260498047,54.855825577978514Q72.92518260498046,54.835794177978514,73.61328260498047,54.82576647797852Q74.30128260498047,54.815738677978516,74.99028260498046,54.815738677978516Q75.67918260498047,54.815738677978516,76.36718260498047,54.82576647797852Q77.05528260498048,54.835794177978514,77.74088260498047,54.855825577978514Q78.42648260498046,54.875856977978515,79.10788260498046,54.90584377797852Q79.78938260498046,54.935830677978515,80.46498260498046,54.975700677978516Q81.14068260498047,55.015570677978516,81.80888260498047,55.06522767797851Q82.47718260498047,55.11488367797852,83.13638260498047,55.17420867797851Q83.79568260498047,55.233532677978516,84.44428260498047,55.30238167797852Q85.09288260498047,55.37123067797852,85.72938260498047,55.44943867797851Q86.36588260498047,55.52764567797851,86.98858260498048,55.61502367797851Q87.61138260498046,55.702401677978514,88.21888260498048,55.79873867797851Q88.82648260498047,55.89507867797852,89.41738260498047,56.00013867797851Q90.00828260498048,56.10520867797852,90.58108260498047,56.21874867797852Q91.15388260498047,56.33228867797852,91.70718260498046,56.45402867797851Q92.26048260498047,56.575768677978516,92.79308260498047,56.705418677978514Q93.32558260498047,56.83506867797851,93.83598260498047,56.97230867797852Q94.34648260498047,57.109548677978516,94.83358260498048,57.25405867797851Q95.32068260498048,57.39856867797852,95.78338260498046,57.549998677978515Q96.24598260498047,57.701418677978516,96.68308260498047,57.85939867797852Q97.12008260498047,58.01737867797851,97.53048260498048,58.18152867797851Q97.94078260498047,58.345668677978516,98.32358260498046,58.51559867797852Q98.70628260498046,58.685518677978514,99.06048260498048,58.86080867797852Q99.41458260498047,59.036098677978515,99.73938260498048,59.21633867797851Q100.06408260498047,59.396568677978514,100.35868260498046,59.581318677978516Q100.65318260498047,59.76605867797851,100.91678260498047,59.95486867797852Q101.18048260498047,60.143678677978514,101.41258260498047,60.33609867797851Q101.64458260498047,60.52851867797852,101.84458260498047,60.724088677978514Q102.04458260498046,60.91965867797852,102.21198260498048,61.117898677978516Q102.37938260498046,61.316138677978515,102.51378260498046,61.516578677978515Q102.64818260498046,61.717018677978515,102.74928260498046,61.91916867797852Q102.85028260498046,62.12132867797852,102.91788260498046,62.32470867797851Q102.98538260498046,62.528088677978516,103.01918260498047,62.73220867797852Q103.05298260498047,62.936328677978516,103.05298260498047,63.14069867797852Z",
1259
+ fill: "#FFFFFF",
1260
+ "fill-opacity": "1"
1261
+ }
1262
+ })]), _vm._v(" "), _c("g", [_c("path", {
1263
+ staticStyle: {
1264
+ "mix-blend-mode": "passthrough"
1265
+ },
1266
+ attrs: {
1267
+ d: "M74.99021385498047,89.09266951904297C90.47651385498047,89.09266951904297,103.05301385498046,85.36016951904297,103.05301385498046,80.76776951904297L103.05301385498046,69.37466051904296C103.05301385498046,69.21832551904296,103.03351385498047,69.04244151904297,103.01391385498047,68.88610691904297C102.17421385498048,73.26354951904297,89.94921385498047,76.74205951904297,75.00971385498048,76.74205951904297C60.07031385498047,76.74205951904297,47.825805854980466,73.24400951904298,46.986073654980466,68.86656951904297C46.94701385498047,69.02290451904297,46.94701385498047,69.17924551904296,46.94701385498047,69.35512351904296L46.94701385498047,80.74816951904297C46.94701385498047,85.36016951904297,59.50401385498047,89.09266951904297,74.99021385498047,89.09266951904297Z",
1268
+ fill: "#FFFFFF",
1269
+ "fill-opacity": "1"
1270
+ }
1271
+ })]), _vm._v(" "), _c("g", [_c("path", {
1272
+ staticStyle: {
1273
+ "mix-blend-mode": "passthrough"
1274
+ },
1275
+ attrs: {
1276
+ d: "M74.99021385498047,106.25072078857423C90.47651385498047,106.25072078857423,103.05301385498046,102.51812078857422,103.05301385498046,97.92572078857422L103.05301385498046,86.53267478857421C103.05301385498046,86.37633978857421,103.03351385498047,86.20045578857422,103.01391385498047,86.04412078857422C102.17421385498048,90.42157078857421,89.94921385498047,93.90007078857423,75.00971385498048,93.90007078857423C60.07031385498047,93.90007078857423,47.825805854980466,90.42157078857421,46.986073654980466,86.04412078857422C46.94701385498047,86.20045578857422,46.94701385498047,86.35679078857422,46.94701385498047,86.53267478857421L46.94701385498047,97.92572078857422C46.94701385498047,102.51812078857422,59.50401385498047,106.25072078857423,74.99021385498047,106.25072078857423Z",
1277
+ fill: "#FFFFFF",
1278
+ "fill-opacity": "1"
1279
+ }
1280
+ })]), _vm._v(" "), _c("g", [_c("path", {
1281
+ staticStyle: {
1282
+ "mix-blend-mode": "passthrough"
1283
+ },
1284
+ attrs: {
1285
+ d: "M103.01394129028321,103.12396240234375C102.1742412902832,107.50141240234375,89.9492412902832,110.97991240234376,75.0097412902832,110.97991240234376C60.0703412902832,110.97991240234376,47.8453332902832,107.50141240234375,47.0056010902832,103.12396240234375C46.9665412902832,103.28029740234375,46.9665412902832,103.43663240234375,46.9665412902832,103.61251640234374L46.9665412902832,115.00556240234376C46.9665412902832,119.59796240234375,59.523541290283205,123.33056240234376,75.02924129028321,123.33056240234376C90.51554129028321,123.33056240234376,103.0920412902832,119.59796240234375,103.0920412902832,115.00556240234376L103.0920412902832,103.61251640234374C103.0529412902832,103.45618140234374,103.0334412902832,103.28029740234375,103.01394129028321,103.12396240234375Z",
1286
+ fill: "#FFFFFF",
1287
+ "fill-opacity": "1"
1288
+ }
1289
+ })])])]);
1290
+ };
1291
+ var databasevue_type_template_id_99dc0ab4_staticRenderFns = [];
1292
+ databasevue_type_template_id_99dc0ab4_render._withStripped = true;
1293
+
1294
+ // CONCATENATED MODULE: ./src/components/FilesCard/src/fileSvg/database.vue?vue&type=template&id=99dc0ab4
1295
+
1296
+ // CONCATENATED MODULE: ./src/components/FilesCard/src/fileSvg/database.vue
1297
+
1298
+ var database_script = {}
1299
+
1300
+
1301
+ /* normalize component */
1302
+
1303
+ var database_component = Object(componentNormalizer["a" /* default */])(
1304
+ database_script,
1305
+ databasevue_type_template_id_99dc0ab4_render,
1306
+ databasevue_type_template_id_99dc0ab4_staticRenderFns,
1307
+ false,
1308
+ null,
1309
+ null,
1310
+ null
1311
+
1312
+ )
1313
+
1314
+ /* harmony default export */ var database = (database_component.exports);
1315
+ // CONCATENATED MODULE: ./node_modules/babel-loader/lib!./node_modules/vue-loader/lib/loaders/templateLoader.js??ref--6!./node_modules/vue-loader/lib??vue-loader-options!./src/components/FilesCard/src/fileSvg/excel.vue?vue&type=template&id=fc2a1874
1316
+ var excelvue_type_template_id_fc2a1874_render = function render() {
1317
+ var _vm = this,
1318
+ _c = _vm._self._c;
1319
+ return _c("svg", {
1320
+ attrs: {
1321
+ xmlns: "http://www.w3.org/2000/svg",
1322
+ "xmlns:xlink": "http://www.w3.org/1999/xlink",
1323
+ fill: "none",
1324
+ version: "1.1",
1325
+ width: "1em",
1326
+ height: "1em",
1327
+ viewBox: "0 0 150 175"
1328
+ }
1329
+ }, [_c("g", [_c("g", [_c("path", {
1330
+ staticStyle: {
1331
+ "mix-blend-mode": "passthrough"
1332
+ },
1333
+ attrs: {
1334
+ d: "M103.622,0L27.5981,0C12.355,0,0,12.3648,0,27.6155L0,147.384C0,162.637,12.357,175,27.5981,175L122.402,175C137.645,175,150,162.635,150,147.384L150,46.405C150,40.1855,147.532,34.2219,143.136,29.8255L120.191,6.86627C115.797,2.46982,109.837,0,103.622,0Z",
1335
+ fill: "currentColor",
1336
+ "fill-opacity": "1"
1337
+ }
1338
+ })]), _vm._v(" "), _c("g", [_c("path", {
1339
+ staticStyle: {
1340
+ "mix-blend-mode": "passthrough"
1341
+ },
1342
+ attrs: {
1343
+ d: "M102.9993763305664,63.478790526247025C101.1696763305664,61.647890526247025,98.20147633056641,61.647890526247025,96.3717763305664,63.478790526247025L74.74517633056641,85.11909052624702L53.118526330566404,63.478790526247025C51.28880633056641,61.647890526247025,48.32063633056641,61.647890526247025,46.49091633056641,63.478790526247025C44.66119533056641,65.30969052624702,44.66119533056641,68.27969052624702,46.49091633056641,70.11059052624702L68.11757633056641,91.75089052624702L46.488966330566406,113.39069052624703C44.659246330566404,115.22169052624703,44.659246330566404,118.19169052624703,46.488966330566406,120.02269052624702C47.40480633056641,120.93969052624702,48.60378633056641,121.39669052624703,49.8027763305664,121.39669052624703C51.00175633056641,121.39669052624703,52.20073633056641,120.93969052624702,53.1165763305664,120.02269052624702L74.74517633056641,98.38269052624702L96.3698763305664,120.02269052624702C97.2856763305664,120.93969052624702,98.4846763305664,121.39669052624703,99.68367633056641,121.39669052624703C100.88257633056641,121.39669052624703,102.0815763305664,120.93969052624702,102.9974763305664,120.02269052624702C104.8271763305664,118.19169052624703,104.8271763305664,115.22169052624703,102.9974763305664,113.39069052624703L81.37277633056641,91.75089052624702L102.9993763305664,70.11059052624702C104.82917633056641,68.27969052624702,104.82917633056641,65.30969052624702,102.9993763305664,63.478790526247025ZM143.13607633056642,29.825490526247023L120.19137633056641,6.866270526247025C116.89937633056641,3.5724405262470245,112.70147633056641,1.3344315262470245,108.13317633056641,0.43769052624702454L108.13317633056641,26.206690526247023C108.13317633056641,34.38799052624702,114.7607763305664,41.01979052624702,122.93697633056641,41.01979052624702L149.3716763305664,41.01979052624702C148.3716763305664,36.78159052624702,146.2126763305664,32.90549052624702,143.13607633056642,29.825490526247023Z",
1344
+ fill: "#000000",
1345
+ "fill-opacity": "0.20000000298023224"
1346
+ }
1347
+ })]), _vm._v(" "), _c("g", [_c("path", {
1348
+ staticStyle: {
1349
+ "mix-blend-mode": "passthrough"
1350
+ },
1351
+ attrs: {
1352
+ d: "M81.37277633056641,89.4060757019043L102.9993763305664,67.76582570190429C104.82917633056641,65.9349557019043,104.82917633056641,62.9649057019043,102.9993763305664,61.134035701904295C101.1696763305664,59.3031567019043,98.20147633056641,59.3031567019043,96.3717763305664,61.134035701904295L74.74517633056641,82.7742757019043L53.118526330566404,61.134035701904295C51.28880633056641,59.3031567019043,48.32063633056641,59.3031567019043,46.49091633056641,61.134035701904295C44.66119533056641,62.9649057019043,44.66119533056641,65.9349557019043,46.49091633056641,67.76582570190429L68.11757633056641,89.4060757019043L46.488966330566406,111.0463757019043C44.659246330566404,112.8772757019043,44.659246330566404,115.8472757019043,46.488966330566406,117.6781757019043C47.40480633056641,118.59457570190429,48.60378633056641,119.0518757019043,49.8027763305664,119.0518757019043C51.00175633056641,119.0518757019043,52.20073633056641,118.59457570190429,53.1165763305664,117.6781757019043L74.74517633056641,96.0378757019043L96.3698763305664,117.6781757019043C97.2856763305664,118.59457570190429,98.4846763305664,119.0518757019043,99.68367633056641,119.0518757019043C100.88257633056641,119.0518757019043,102.0815763305664,118.59457570190429,102.9974763305664,117.6781757019043C104.8271763305664,115.8472757019043,104.8271763305664,112.8772757019043,102.9974763305664,111.0463757019043L81.37277633056641,89.4060757019043Z",
1353
+ fill: "#FFFFFF",
1354
+ "fill-opacity": "1"
1355
+ }
1356
+ })])])]);
1357
+ };
1358
+ var excelvue_type_template_id_fc2a1874_staticRenderFns = [];
1359
+ excelvue_type_template_id_fc2a1874_render._withStripped = true;
1360
+
1361
+ // CONCATENATED MODULE: ./src/components/FilesCard/src/fileSvg/excel.vue?vue&type=template&id=fc2a1874
1362
+
1363
+ // CONCATENATED MODULE: ./src/components/FilesCard/src/fileSvg/excel.vue
1364
+
1365
+ var excel_script = {}
1366
+
1367
+
1368
+ /* normalize component */
1369
+
1370
+ var excel_component = Object(componentNormalizer["a" /* default */])(
1371
+ excel_script,
1372
+ excelvue_type_template_id_fc2a1874_render,
1373
+ excelvue_type_template_id_fc2a1874_staticRenderFns,
1374
+ false,
1375
+ null,
1376
+ null,
1377
+ null
1378
+
1379
+ )
1380
+
1381
+ /* harmony default export */ var excel = (excel_component.exports);
1382
+ // CONCATENATED MODULE: ./node_modules/babel-loader/lib!./node_modules/vue-loader/lib/loaders/templateLoader.js??ref--6!./node_modules/vue-loader/lib??vue-loader-options!./src/components/FilesCard/src/fileSvg/file.vue?vue&type=template&id=18809ace
1383
+ var filevue_type_template_id_18809ace_render = function render() {
1384
+ var _vm = this,
1385
+ _c = _vm._self._c;
1386
+ return _c("svg", {
1387
+ attrs: {
1388
+ xmlns: "http://www.w3.org/2000/svg",
1389
+ "xmlns:xlink": "http://www.w3.org/1999/xlink",
1390
+ fill: "none",
1391
+ version: "1.1",
1392
+ width: "1em",
1393
+ height: "1em",
1394
+ viewBox: "0 0 150 175"
1395
+ }
1396
+ }, [_c("g", [_c("g", [_c("path", {
1397
+ staticStyle: {
1398
+ "mix-blend-mode": "passthrough"
1399
+ },
1400
+ attrs: {
1401
+ d: "M103.622,0L27.5981,0C12.355,0,0,12.3648,0,27.6155L0,147.384C0,162.637,12.357,175,27.5981,175L122.402,175C137.645,175,150,162.635,150,147.384L150,46.405C150,40.1855,147.532,34.2219,143.136,29.8255L120.191,6.86627C115.797,2.46982,109.837,0,103.622,0Z",
1402
+ fill: "currentColor",
1403
+ "fill-opacity": "1"
1404
+ }
1405
+ })]), _vm._v(" "), _c("g", [_c("path", {
1406
+ staticStyle: {
1407
+ "mix-blend-mode": "passthrough"
1408
+ },
1409
+ attrs: {
1410
+ d: "M119.4187,6.43348L142.679,29.4102C145.799,32.4921,147.987,36.3713,149,40.613L122.202,40.613C113.9134,40.613,107.1945,33.9762,107.1945,25.7887L107.1945,0C111.8257,0.897429,116.0814,3.13714,119.4187,6.43348ZM102.2165,77.5181L78.4159,77.5181C77.3094,77.5182,76.292,76.8169,75.7664,75.6919L66.9447,56.7338C66.4191,55.6088,65.4017,54.9076,64.2951,54.9076L48.02165,54.9076C44.69598,54.9076,42,58.0224,42,61.8647L42,114.043C42,117.885,44.69598,121,48.02165,121L102.2165,121C105.5421,121,108.2381,117.885,108.2381,114.043L108.2381,84.4752C108.2381,80.6329,105.5421,77.5181,102.2165,77.5181ZM79.3878,73.0348C79.78110000000001,73.8506,80.52170000000001,74.3613,81.3298,74.3741L100.9002,74.3741C102.1591,74.3742,103.1751,73.1848,103.1583,71.7304L103.1583,67.2604C103.15,63.9821,100.8474,61.3295,98.0098,61.3295L77.6115,61.3295C75.8888,61.33,74.801,63.4694,75.6394,65.2081L79.3878,73.0348ZM76.6245,107.955L55.5487,107.955C54.3016,107.955,53.2906,106.787,53.2906,105.347C53.2906,103.906,54.3016,102.738,55.5487,102.738L76.6245,102.738C77.8716,102.738,78.8826,103.906,78.8826,105.347C78.8826,106.787,77.8716,107.955,76.6245,107.955ZM87.1623,107.955L84.1515,107.955C82.90440000000001,107.955,81.8934,106.787,81.8934,105.347C81.8934,103.906,82.90440000000001,102.738,84.1515,102.738L87.1623,102.738C88.40950000000001,102.738,89.4205,103.906,89.4205,105.347C89.4205,106.787,88.40950000000001,107.955,87.1623,107.955Z",
1411
+ "fill-rule": "evenodd",
1412
+ fill: "#000000",
1413
+ "fill-opacity": "0.20000000298023224"
1414
+ }
1415
+ })]), _vm._v(" "), _c("g", [_c("path", {
1416
+ staticStyle: {
1417
+ "mix-blend-mode": "passthrough"
1418
+ },
1419
+ attrs: {
1420
+ d: "M80.73519999999999,75.2368L104.0909,75.2368C107.3544,75.2368,110,78.3002,110,82.0789L110,111.1579C110,114.9367,107.3544,118,104.0909,118L50.90909,118C47.64559,118,45,114.9367,45,111.1579L45,59.84211C45,56.06331,47.64559,53,50.90909,53L66.8784,53C67.96430000000001,53,68.9626,53.689657,69.4784,54.79605L78.1352,73.4408C78.65100000000001,74.5472,79.6494,75.23689999999999,80.73519999999999,75.2368ZM83.5947,72.1447C82.8017,72.1322,82.0749,71.62989999999999,81.689,70.8276L78.0106,63.1303C77.1879,61.42029,78.2553,59.31629,79.94579999999999,59.31579L99.96289999999999,59.31579C102.7474,59.31579,105.007,61.92451,105.01509999999999,65.1487L105.01509999999999,69.5447C105.0316,70.9751,104.0347,72.1449,102.7992,72.1447L83.5947,72.1447ZM58.295500000000004,105.1711L78.9773,105.1711C80.2011,105.1711,81.19319999999999,104.0223,81.19319999999999,102.6053C81.19319999999999,101.1882,80.2011,100.0395,78.9773,100.0395L58.295500000000004,100.0395C57.071600000000004,100.0395,56.079499999999996,101.1882,56.079499999999996,102.6053C56.079499999999996,104.0223,57.071600000000004,105.1711,58.295500000000004,105.1711ZM86.36359999999999,105.1711L89.31819999999999,105.1711C90.542,105.1711,91.5341,104.0223,91.5341,102.6053C91.5341,101.1882,90.542,100.0395,89.31819999999999,100.0395L86.36359999999999,100.0395C85.13980000000001,100.0395,84.1477,101.1882,84.1477,102.6053C84.1477,104.0223,85.13980000000001,105.1711,86.36359999999999,105.1711Z",
1421
+ "fill-rule": "evenodd",
1422
+ fill: "#FFFFFF",
1423
+ "fill-opacity": "1"
1424
+ }
1425
+ })])])]);
1426
+ };
1427
+ var filevue_type_template_id_18809ace_staticRenderFns = [];
1428
+ filevue_type_template_id_18809ace_render._withStripped = true;
1429
+
1430
+ // CONCATENATED MODULE: ./src/components/FilesCard/src/fileSvg/file.vue?vue&type=template&id=18809ace
1431
+
1432
+ // CONCATENATED MODULE: ./src/components/FilesCard/src/fileSvg/file.vue
1433
+
1434
+ var file_script = {}
1435
+
1436
+
1437
+ /* normalize component */
1438
+
1439
+ var file_component = Object(componentNormalizer["a" /* default */])(
1440
+ file_script,
1441
+ filevue_type_template_id_18809ace_render,
1442
+ filevue_type_template_id_18809ace_staticRenderFns,
1443
+ false,
1444
+ null,
1445
+ null,
1446
+ null
1447
+
1448
+ )
1449
+
1450
+ /* harmony default export */ var file = (file_component.exports);
1451
+ // CONCATENATED MODULE: ./node_modules/babel-loader/lib!./node_modules/vue-loader/lib/loaders/templateLoader.js??ref--6!./node_modules/vue-loader/lib??vue-loader-options!./src/components/FilesCard/src/fileSvg/image.vue?vue&type=template&id=4ecdf3a4
1452
+ var imagevue_type_template_id_4ecdf3a4_render = function render() {
1453
+ var _vm = this,
1454
+ _c = _vm._self._c;
1455
+ return _c("svg", {
1456
+ attrs: {
1457
+ xmlns: "http://www.w3.org/2000/svg",
1458
+ "xmlns:xlink": "http://www.w3.org/1999/xlink",
1459
+ fill: "none",
1460
+ version: "1.1",
1461
+ width: "1em",
1462
+ height: "1em",
1463
+ viewBox: "0 0 150 175"
1464
+ }
1465
+ }, [_c("g", [_c("g", [_c("path", {
1466
+ staticStyle: {
1467
+ "mix-blend-mode": "passthrough"
1468
+ },
1469
+ attrs: {
1470
+ d: "M103.622,0L27.5981,0C12.355,0,0,12.3648,0,27.6155L0,147.384C0,162.637,12.357,175,27.5981,175L122.402,175C137.645,175,150,162.635,150,147.384L150,46.405C150,40.1855,147.532,34.2219,143.136,29.8255L120.191,6.86627C115.797,2.46982,109.837,0,103.622,0Z",
1471
+ fill: "currentColor",
1472
+ "fill-opacity": "1"
1473
+ }
1474
+ })]), _vm._v(" "), _c("g", [_c("path", {
1475
+ staticStyle: {
1476
+ "mix-blend-mode": "passthrough"
1477
+ },
1478
+ attrs: {
1479
+ d: "M121.4512,6.3707L143.8997,29.1232C146.9096,32.1755,149.022,36.0167,150,40.2167L124.1374,40.2167C116.138,40.2167,109.6537,33.6446,109.6537,25.537L109.6537,0C114.1233,0.888667,118.2304,3.10652,121.4512,6.3707ZM87.7937,65.9973C89.4664,69.7349,93.815,71.3907,97.505,69.6951C101.195,67.9995,102.8281,63.595,101.1519,59.8591C99.4793,56.1216,95.1306,54.4657,91.4406,56.1613C87.75059999999999,57.8569,86.1175,62.2614,87.7937,65.9973ZM110.9348,108.381L102.7132,85.7332C100.8391,80.5692,96.15270000000001,80.5692,94.2787,85.7332L86.48910000000001,107.194L72.0064,67.2953C70.1323,62.1332,65.44839999999999,62.1332,63.5743,67.2953L48.659585,108.385C46.78551,113.547,49.1281,120,52.87625,120L106.71809999999999,120C110.46629999999999,119.998,112.8089,113.545,110.9348,108.381Z",
1480
+ "fill-rule": "evenodd",
1481
+ fill: "#000000",
1482
+ "fill-opacity": "0.20000000298023224"
1483
+ }
1484
+ })]), _vm._v(" "), _c("g", [_c("path", {
1485
+ staticStyle: {
1486
+ "mix-blend-mode": "passthrough"
1487
+ },
1488
+ attrs: {
1489
+ d: "M93.5992,66.3085C89.8277,68.0171,85.3829,66.3485,83.6733,62.582300000000004C81.96000000000001,58.81768,83.6292,54.37933,87.4008,52.670698C91.1723,50.96207,95.6171,52.630641,97.3267,56.39691C99.03999999999999,60.16151,97.3708,64.5999,93.5992,66.3085ZM98.9225,82.4699L107.3258,105.29169999999999C109.2413,110.49539999999999,106.84700000000001,116.9981,103.01599999999999,117L47.98403,117C44.15304,117,41.75867,110.4973,43.674163,105.29560000000001L58.9185,63.8902C60.834,58.68846,65.6215,58.68846,67.537,63.8902L82.3398,104.0961L90.30160000000001,82.4699C92.2171,77.2662,97.007,77.2662,98.9225,82.4699Z",
1490
+ "fill-rule": "evenodd",
1491
+ fill: "#FFFFFF",
1492
+ "fill-opacity": "1"
1493
+ }
1494
+ })])])]);
1495
+ };
1496
+ var imagevue_type_template_id_4ecdf3a4_staticRenderFns = [];
1497
+ imagevue_type_template_id_4ecdf3a4_render._withStripped = true;
1498
+
1499
+ // CONCATENATED MODULE: ./src/components/FilesCard/src/fileSvg/image.vue?vue&type=template&id=4ecdf3a4
1500
+
1501
+ // CONCATENATED MODULE: ./src/components/FilesCard/src/fileSvg/image.vue
1502
+
1503
+ var image_script = {}
1504
+
1505
+
1506
+ /* normalize component */
1507
+
1508
+ var image_component = Object(componentNormalizer["a" /* default */])(
1509
+ image_script,
1510
+ imagevue_type_template_id_4ecdf3a4_render,
1511
+ imagevue_type_template_id_4ecdf3a4_staticRenderFns,
1512
+ false,
1513
+ null,
1514
+ null,
1515
+ null
1516
+
1517
+ )
1518
+
1519
+ /* harmony default export */ var fileSvg_image = (image_component.exports);
1520
+ // CONCATENATED MODULE: ./node_modules/babel-loader/lib!./node_modules/vue-loader/lib/loaders/templateLoader.js??ref--6!./node_modules/vue-loader/lib??vue-loader-options!./src/components/FilesCard/src/fileSvg/link.vue?vue&type=template&id=e4113ea4
1521
+ var linkvue_type_template_id_e4113ea4_render = function render() {
1522
+ var _vm = this,
1523
+ _c = _vm._self._c;
1524
+ return _c("svg", {
1525
+ attrs: {
1526
+ xmlns: "http://www.w3.org/2000/svg",
1527
+ "xmlns:xlink": "http://www.w3.org/1999/xlink",
1528
+ fill: "none",
1529
+ version: "1.1",
1530
+ width: "1em",
1531
+ height: "1em",
1532
+ viewBox: "0 0 150 175"
1533
+ }
1534
+ }, [_c("g", [_c("g", [_c("path", {
1535
+ staticStyle: {
1536
+ "mix-blend-mode": "passthrough"
1537
+ },
1538
+ attrs: {
1539
+ d: "M103.622,0L27.5981,0C12.355,0,0,12.3648,0,27.6155L0,147.384C0,162.637,12.357,175,27.5981,175L122.402,175C137.645,175,150,162.635,150,147.384L150,46.4069C150,40.1874,147.532,34.2239,143.136,29.8274L120.191,6.86822C115.795,2.47051,109.835,-0.00000298153,103.622,0Z",
1540
+ fill: "currentColor",
1541
+ "fill-opacity": "1"
1542
+ }
1543
+ })]), _vm._v(" "), _c("g", [_c("path", {
1544
+ staticStyle: {
1545
+ "mix-blend-mode": "passthrough"
1546
+ },
1547
+ attrs: {
1548
+ d: "M143.13604835205078,29.82753037600517L120.19134835205078,6.868310376005173C116.89934835205078,3.5744803760051727,112.70154835205078,1.3364743760051727,108.13314835205078,0.43973037600517273L108.13314835205078,26.20873037600517C108.13314835205078,34.39003037600517,114.76074835205078,41.02183037600517,122.93694835205079,41.02183037600517L149.37124835205077,41.02183037600517C148.37224835205078,36.783330376005175,146.21324835205078,32.907030376005174,143.13604835205078,29.82753037600517ZM78.17804835205078,58.99253037600517L68.11558835205078,69.06143037600518C66.59049835205079,70.58743037600517,66.59049835205079,73.06123037600517,68.11558835205078,74.58723037600517C69.64067835205078,76.11333037600517,72.11285835205078,76.11333037600517,73.63794835205078,74.58723037600517L83.70044835205078,64.51843037600517C88.81854835205078,59.39703037600517,97.14504835205078,59.39703037600517,102.26324835205078,64.51843037600517C107.38134835205078,69.63973037600518,107.38134835205078,77.97153037600518,102.26324835205078,83.09293037600517L92.20074835205078,93.16173037600517C87.08254835205078,98.28313037600518,78.75604835205078,98.28313037600518,73.63794835205078,93.16173037600517C73.06929835205078,92.59283037600517,72.55419835205078,91.97273037600517,72.09918835205079,91.30933037600518C70.88067835205078,89.52933037600518,68.44950835205078,89.07403037600517,66.67055835205078,90.29523037600518C64.88965895205078,91.51653037600518,64.43662135205078,93.94723037600517,65.65708535205079,95.72733037600517C66.37959835205078,96.78243037600517,67.20756835205079,97.77893037600518,68.11558835205078,98.68753037600517C76.27804835205077,106.85473037600518,89.56064835205078,106.85473037600518,97.72504835205078,98.68753037600517L107.78754835205078,88.61873037600517C115.95004835205077,80.45113037600517,115.95004835205077,67.16013037600517,107.78754835205078,58.99063037600517C99.62314835205078,50.82303037600517,86.34054835205077,50.82303037600517,78.17804835205078,58.99253037600517Z",
1549
+ fill: "#000000",
1550
+ "fill-opacity": "0.20000000298023224"
1551
+ }
1552
+ })]), _vm._v(" "), _c("g", [_c("path", {
1553
+ staticStyle: {
1554
+ "mix-blend-mode": "passthrough"
1555
+ },
1556
+ attrs: {
1557
+ d: "M76.36005356445312,109.01229274902343L66.29765356445313,119.08109274902344C61.17945356445313,124.20249274902343,52.852953564453124,124.20249274902343,47.734853564453125,119.08109274902344C42.616683564453126,113.95969274902345,42.616683564453126,105.62799274902343,47.734853564453125,100.50659274902344L57.797353564453125,90.43779274902343C62.915453564453124,85.31642274902343,71.24195356445313,85.31642274902343,76.36005356445312,90.43779274902343C76.89905356445313,90.97709274902344,77.39115356445313,91.56519274902344,77.82465356445311,92.18469274902344C79.06075356445312,93.95299274902344,81.49585356445313,94.38289274902344,83.26305356445312,93.14599274902343C85.03025356445312,91.90909274902344,85.45985356445313,89.47249274902344,84.22375356445312,87.70418274902343C83.53055356445313,86.71156274902344,82.74165356445312,85.77365274902344,81.88245356445313,84.91390274902344C73.71995356445314,76.74629274902344,60.43745356445312,76.74629274902344,52.272953564453125,84.91390274902344L42.21050356445313,94.98269274902344C34.048043564453124,103.15039274902344,34.048043564453124,116.44129274902343,42.21050356445313,124.60889274902344C50.37295356445313,132.77649274902345,63.65555356445313,132.77649274902345,71.81995356445313,124.60889274902344L81.88245356445313,114.54009274902344C83.40755356445312,113.01399274902343,83.40755356445312,110.54029274902344,81.88245356445313,109.01419274902344C80.35735356445312,107.48619274902345,77.88515356445313,107.48619274902345,76.36005356445312,109.01229274902343Z",
1558
+ fill: "#29A3D3",
1559
+ "fill-opacity": "1"
1560
+ }
1561
+ })]), _vm._v(" "), _c("g", [_c("path", {
1562
+ staticStyle: {
1563
+ "mix-blend-mode": "passthrough"
1564
+ },
1565
+ attrs: {
1566
+ d: "M107.78559522705078,56.64769791503906C99.62309522705078,48.480087915039064,86.34049522705078,48.480087915039064,78.17609522705078,56.64769791503906L68.11363522705078,66.71648791503907C66.58854522705079,68.24258791503907,66.58854522705079,70.71628791503906,68.11363522705078,72.24238791503906C69.63872522705078,73.76838791503906,72.11090522705078,73.76838791503906,73.63599522705078,72.24238791503906L83.69849522705078,62.173587915039064C88.81659522705078,57.05217791503906,97.14309522705078,57.05217791503906,102.26129522705078,62.173587915039064C107.37939522705078,67.29488791503906,107.37939522705078,75.62668791503907,102.26129522705078,80.74798791503906L92.19879522705078,90.81688791503906C87.08059522705078,95.93828791503907,78.75409522705078,95.93828791503907,73.63599522705078,90.81688791503906C73.06733522705078,90.24798791503906,72.55223522705079,89.62788791503905,72.09723522705079,88.96448791503906C70.87872522705078,87.18438791503905,68.44755522705078,86.72918791503906,66.66860522705078,87.95038791503907C64.88770592705077,89.17158791503905,64.43466822705078,91.60238791503906,65.65513222705079,93.38238791503906C66.37764522705078,94.43758791503906,67.20561522705079,95.43408791503907,68.11363522705078,96.34268791503906C76.27609522705077,104.51028791503907,89.55869522705078,104.51028791503907,97.72309522705078,96.34268791503906L107.78559522705078,86.27388791503907C115.94999522705078,78.10628791503906,115.94999522705078,64.81528791503906,107.78559522705078,56.64769791503906Z",
1567
+ fill: "#FFFFFF",
1568
+ "fill-opacity": "1"
1569
+ }
1570
+ })]), _vm._v(" "), _c("g", [_c("path", {
1571
+ staticStyle: {
1572
+ "mix-blend-mode": "passthrough"
1573
+ },
1574
+ attrs: {
1575
+ d: "M76.36005356445312,106.66752803955077L66.29765356445313,116.73632803955078C61.17945356445313,121.85772803955078,52.852953564453124,121.85772803955078,47.734853564453125,116.73632803955078C42.616683564453126,111.61492803955079,42.616683564453126,103.28322803955078,47.734853564453125,98.16182803955078L57.797353564453125,88.09302803955077C62.915453564453124,82.97165803955077,71.24195356445313,82.97165803955077,76.36005356445312,88.09302803955077C76.89905356445313,88.63232803955079,77.39115356445313,89.22042803955078,77.82465356445311,89.83992803955078C79.06075356445312,91.60822803955078,81.49585356445313,92.03812803955078,83.26305356445312,90.80122803955078C85.03025356445312,89.56432803955079,85.45985356445313,87.12772803955079,84.22375356445312,85.35941803955077C83.53055356445313,84.36679803955079,82.74165356445312,83.42888803955078,81.88245356445313,82.56913803955078C73.71995356445314,74.40152803955078,60.43745356445312,74.40152803955078,52.272953564453125,82.56913803955078L42.21050356445313,92.63792803955079C34.048043564453124,100.80562803955078,34.048043564453124,114.09652803955078,42.21050356445313,122.26412803955078C50.37295356445313,130.4317280395508,63.65555356445313,130.4317280395508,71.81995356445313,122.26412803955078L81.88245356445313,112.19532803955079C83.40755356445312,110.66922803955077,83.40755356445312,108.19552803955078,81.88245356445313,106.66942803955078C80.35735356445312,105.14142803955079,77.88515356445313,105.14142803955079,76.36005356445312,106.66752803955077Z",
1576
+ fill: "#FFFFFF",
1577
+ "fill-opacity": "1"
1578
+ }
1579
+ })])])]);
1580
+ };
1581
+ var linkvue_type_template_id_e4113ea4_staticRenderFns = [];
1582
+ linkvue_type_template_id_e4113ea4_render._withStripped = true;
1583
+
1584
+ // CONCATENATED MODULE: ./src/components/FilesCard/src/fileSvg/link.vue?vue&type=template&id=e4113ea4
1585
+
1586
+ // CONCATENATED MODULE: ./src/components/FilesCard/src/fileSvg/link.vue
1587
+
1588
+ var link_script = {}
1589
+
1590
+
1591
+ /* normalize component */
1592
+
1593
+ var link_component = Object(componentNormalizer["a" /* default */])(
1594
+ link_script,
1595
+ linkvue_type_template_id_e4113ea4_render,
1596
+ linkvue_type_template_id_e4113ea4_staticRenderFns,
1597
+ false,
1598
+ null,
1599
+ null,
1600
+ null
1601
+
1602
+ )
1603
+
1604
+ /* harmony default export */ var fileSvg_link = (link_component.exports);
1605
+ // CONCATENATED MODULE: ./node_modules/babel-loader/lib!./node_modules/vue-loader/lib/loaders/templateLoader.js??ref--6!./node_modules/vue-loader/lib??vue-loader-options!./src/components/FilesCard/src/fileSvg/mark.vue?vue&type=template&id=46e2c9a8
1606
+ var markvue_type_template_id_46e2c9a8_render = function render() {
1607
+ var _vm = this,
1608
+ _c = _vm._self._c;
1609
+ return _c("svg", {
1610
+ attrs: {
1611
+ xmlns: "http://www.w3.org/2000/svg",
1612
+ "xmlns:xlink": "http://www.w3.org/1999/xlink",
1613
+ fill: "none",
1614
+ version: "1.1",
1615
+ width: "1em",
1616
+ height: "1em",
1617
+ viewBox: "0 0 150 175"
1618
+ }
1619
+ }, [_c("g", [_c("g", [_c("path", {
1620
+ staticStyle: {
1621
+ "mix-blend-mode": "passthrough"
1622
+ },
1623
+ attrs: {
1624
+ d: "M103.622,0L27.5981,0C12.355,0,0,12.3648,0,27.6155L0,147.384C0,162.637,12.357,175,27.5981,175L122.402,175C137.645,175,150,162.635,150,147.384L150,46.405C150,40.1855,147.532,34.2219,143.136,29.8255L120.191,6.86627C115.797,2.46982,109.837,0,103.622,0Z",
1625
+ fill: "currentColor",
1626
+ "fill-opacity": "1"
1627
+ }
1628
+ })]), _vm._v(" "), _c("g", [_c("path", {
1629
+ staticStyle: {
1630
+ "mix-blend-mode": "passthrough"
1631
+ },
1632
+ attrs: {
1633
+ d: "M143.6847224914551,29.348195451831817L120.64612249145507,6.751235451831818C117.34072249145508,3.5093754518318176,113.12572249145508,1.3066904518318176,108.53872249145508,0.4240954518318176L108.53872249145508,25.78649545183182C108.53872249145508,33.83869545183182,115.19342249145508,40.36589545183182,123.40292249145507,40.36589545183182L149.94502249145506,40.36589545183182C148.94202249145508,36.19419545183182,146.77402249145507,32.379095451831816,143.6847224914551,29.348195451831817ZM101.86832249145507,56.54919545183182C100.65262249145508,56.54919545183182,99.45662249145508,57.010695451831815,98.55852249145508,57.88189545183182L75.34352249145508,80.39609545183181L51.96971249145508,57.87229545183182C50.61767249145508,56.56899545183182,48.60014249145508,56.189195451831814,46.85221249145508,56.908795451831814C45.10387249145508,57.62709545183182,43.96602249145508,59.304995451831815,43.96602249145508,61.16469545183182L43.96602249145508,115.86109545183182C43.96602249145508,118.40909545183182,46.073802491455076,120.47609545183182,48.67177249145508,120.47609545183182C51.26973249145508,120.47609545183182,53.37751249145508,118.40909545183182,53.37751249145508,115.86109545183182L53.37751249145508,72.16889545183182L72.05542249145508,90.16949545183182C73.89062249145508,91.93689545183182,76.83372249145508,91.93309545183182,78.66112249145507,90.15989545183182L97.16052249145508,72.21889545183181L97.16052249145508,115.73409545183182C97.16052249145508,118.28209545183182,99.26832249145508,120.34909545183181,101.86632249145508,120.34909545183181C104.46432249145508,120.34909545183181,106.57202249145507,118.28209545183182,106.57202249145507,115.73409545183182L106.57202249145507,61.16469545183182C106.57202249145507,59.303095451831815,105.43092249145508,57.62229545183182,103.68002249145508,56.90489545183182C103.10582249145509,56.670595451831815,102.49012249145508,56.549695451831816,101.86832249145507,56.54919545183182Z",
1634
+ fill: "#000000",
1635
+ "fill-opacity": "0.20000000298023224"
1636
+ }
1637
+ })]), _vm._v(" "), _c("g", {
1638
+ attrs: {
1639
+ transform: "matrix(1,0,0,-1,0,236)"
1640
+ }
1641
+ }, [_c("path", {
1642
+ staticStyle: {
1643
+ "mix-blend-mode": "passthrough"
1644
+ },
1645
+ attrs: {
1646
+ d: "M101.3418,183C100.1379,183,98.9534,182.5307,98.0641,181.6449L75.0738,158.7528L51.92622,181.65460000000002C50.58726,182.9798,48.58926,183.36599999999999,46.85825,182.6343C45.12683,181.9039,44,180.1979,44,178.30700000000002L44,122.693C44,120.10207,46.08738,118,48.66019,118C51.23301,118,53.32039,120.10207,53.32039,122.693L53.32039,167.1181L71.8175,148.8154C73.635,147.01839999999999,76.5495,147.0223,78.3592,148.8252L96.6796,167.0672L96.6796,122.82205C96.6796,120.23113,98.767,118.129058,101.3398,118.129058C103.9126,118.129058,106,120.23113,106,122.82205L106,178.30700000000002C106,180.1998,104.8699,181.90879999999999,103.13589999999999,182.63819999999998C102.5673,182.8764,101.9576,182.99939999999998,101.3418,183Z",
1647
+ fill: "#FFFFFF",
1648
+ "fill-opacity": "1"
1649
+ }
1650
+ })])])]);
1651
+ };
1652
+ var markvue_type_template_id_46e2c9a8_staticRenderFns = [];
1653
+ markvue_type_template_id_46e2c9a8_render._withStripped = true;
1654
+
1655
+ // CONCATENATED MODULE: ./src/components/FilesCard/src/fileSvg/mark.vue?vue&type=template&id=46e2c9a8
1656
+
1657
+ // CONCATENATED MODULE: ./src/components/FilesCard/src/fileSvg/mark.vue
1658
+
1659
+ var mark_script = {}
1660
+
1661
+
1662
+ /* normalize component */
1663
+
1664
+ var mark_component = Object(componentNormalizer["a" /* default */])(
1665
+ mark_script,
1666
+ markvue_type_template_id_46e2c9a8_render,
1667
+ markvue_type_template_id_46e2c9a8_staticRenderFns,
1668
+ false,
1669
+ null,
1670
+ null,
1671
+ null
1672
+
1673
+ )
1674
+
1675
+ /* harmony default export */ var mark = (mark_component.exports);
1676
+ // CONCATENATED MODULE: ./node_modules/babel-loader/lib!./node_modules/vue-loader/lib/loaders/templateLoader.js??ref--6!./node_modules/vue-loader/lib??vue-loader-options!./src/components/FilesCard/src/fileSvg/pdf.vue?vue&type=template&id=2a5785e0
1677
+ var pdfvue_type_template_id_2a5785e0_render = function render() {
1678
+ var _vm = this,
1679
+ _c = _vm._self._c;
1680
+ return _c("svg", {
1681
+ attrs: {
1682
+ xmlns: "http://www.w3.org/2000/svg",
1683
+ "xmlns:xlink": "http://www.w3.org/1999/xlink",
1684
+ fill: "none",
1685
+ version: "1.1",
1686
+ width: "1em",
1687
+ height: "1em",
1688
+ viewBox: "0 0 150 175"
1689
+ }
1690
+ }, [_c("g", [_c("g", [_c("path", {
1691
+ staticStyle: {
1692
+ "mix-blend-mode": "passthrough"
1693
+ },
1694
+ attrs: {
1695
+ d: "M103.622,0L27.5981,0C12.355,0,0,12.3648,0,27.6155L0,147.384C0,162.637,12.357,175,27.5981,175L122.402,175C137.645,175,150,162.635,150,147.384L150,46.405C150,40.1855,147.532,34.2219,143.136,29.8255L120.191,6.86627C115.797,2.46982,109.837,0,103.622,0Z",
1696
+ fill: "currentColor",
1697
+ "fill-opacity": "1"
1698
+ }
1699
+ })]), _vm._v(" "), _c("g", [_c("path", {
1700
+ staticStyle: {
1701
+ "mix-blend-mode": "passthrough"
1702
+ },
1703
+ attrs: {
1704
+ d: "M143.13620864868165,29.825575939702986L120.19140864868164,6.866355939702988C116.89940864868164,3.5725259397029876,112.70150864868164,1.3345169397029877,108.13320864868165,0.43777593970298767L108.13320864868165,26.206775939702986C108.13320864868165,34.388075939702986,114.76080864868165,41.019875939702985,122.93690864868164,41.019875939702985L149.37120864868166,41.019875939702985C148.37120864868166,36.781675939702986,146.21220864868164,32.905575939702985,143.13620864868165,29.825575939702986ZM101.77890864868164,95.86997593970298C97.32860864868164,95.86997593970298,92.91740864868164,96.51677593970298,88.46900864868164,97.35497593970298C83.22200864868165,92.51687593970298,78.77170864868164,86.80347593970299,75.38760864868163,80.441375939703C79.00020864868165,68.59437593970299,79.18960864868164,60.55767593970299,76.45190864868164,56.74747593970299C75.19620864868165,55.07097593970299,73.10480864868164,54.004075939702986,70.97640864868164,54.004075939702986C68.23860864868163,53.81457593970299,65.69030864868164,55.07097593970299,64.43470864868164,57.39417593970299C60.63270864868164,63.75637593970299,66.14530864868163,76.25007593970298,68.69360864868165,81.31677593970299C65.76450864868164,90.42027593970299,62.15190864868164,99.10567593970299,57.51410864868164,107.56277593970299C37.436047648681644,116.24777593970299,37.01620864868164,121.54077593970298,37.01620864868164,123.44677593970299C37.01620864868164,125.76977593970298,38.27181864868164,128.092775939703,40.59167864868164,129.159775939703C41.42745864868164,129.76977593970298,42.68306864868164,129.997775939703,43.74731864868164,129.997775939703C49.03340864868164,129.997775939703,55.155208648681636,124.05577593970298,61.69690864868164,112.40077593970298C69.94920864868163,109.01077593970298,78.16250864868164,106.26677593970298,86.83460864868164,104.36377593970299C91.28490864868164,108.17177593970298,96.76040864868165,110.30577593970298,102.46440864868164,110.72577593970298C106.07690864868164,110.72577593970298,113.03650864868165,110.72577593970298,112.96030864868165,103.48877593970299C113.18880864868164,100.74477593970299,111.70470864868165,96.09857593970298,101.77890864868164,95.86997593970298ZM44.03437864868164,123.58877593970298L43.39777864868164,123.81777593970298C45.27240864868164,121.07077593970298,47.74460864868164,118.93277593970299,50.89240864868164,117.63577593970298C49.24430864868164,120.42177593970298,46.95762864868164,122.51977593970298,44.03437864868164,123.58877593970298ZM69.92580864868164,60.60067593970299C70.12500864868164,60.37407593970299,70.54480864868164,60.141475939702985,70.78500864868164,60.141475939702985L71.48210864868165,60.37407593970299C72.56000864868165,63.971275939702984,72.56000864868165,67.76007593970299,71.24190864868164,71.32017593970299C69.68760864868165,67.94767593970299,69.04900864868165,64.16087593970299,69.92580864868164,60.60067593970299ZM80.88850864868164,101.61677593970299C76.27810864868164,102.69177593970299,71.21260864868164,104.18977593970298,66.60220864868164,105.87777593970299L66.12380864868165,106.06577593970299L66.18630864868165,105.68677593970298C68.49250864868164,101.00277593970299,70.60730864868164,96.08687593970299,72.49760864868165,91.172575939703L72.72410864868164,90.69387593970299L72.95260864868163,90.98107593970299C75.29580864868164,94.59007593970298,78.26400864868164,98.31047593970298,81.43920864868164,101.49777593970299L80.88850864868164,101.61677593970299ZM102.59710864868164,104.26977593970298C100.47450864868165,104.084775939703,98.39090864868163,103.67577593970299,96.27020864868163,102.63877593970298C98.16440864868164,102.22977593970299,99.83200864868164,102.22977593970299,101.72620864868163,102.22977593970299C105.93240864868164,102.22977593970299,106.76620864868164,103.26977593970298,106.80340864868164,103.861775939703C105.55170864868164,104.26977593970298,104.07340864868164,104.492775939703,102.59710864868164,104.26977593970298Z",
1705
+ fill: "#000000",
1706
+ "fill-opacity": "0.20000000298023224"
1707
+ }
1708
+ })]), _vm._v(" "), _c("g", [_c("path", {
1709
+ staticStyle: {
1710
+ "mix-blend-mode": "passthrough"
1711
+ },
1712
+ attrs: {
1713
+ d: "M101.72420864868164,99.88526478271484C99.83010864868163,99.88526478271484,98.16240864868163,99.88526478271484,96.26830864868164,100.29366478271484C98.39090864868163,101.33316478271485,100.47450864868165,101.73956478271484,102.59520864868163,101.92526478271483C104.07340864868164,102.14796478271484,105.55160864868164,101.92526478271483,106.80140864868164,101.51686478271483C106.76430864868163,100.92476478271485,105.93040864868163,99.88526478271484,101.72420864868164,99.88526478271484ZM72.95250864868164,88.63626478271485L72.72400864868163,88.34896478271484L72.49750864868165,88.82776478271484C70.60730864868164,93.74196478271485,68.49050864868164,98.65816478271483,66.18630864868165,103.34186478271485L66.12380864868165,103.72096478271484L66.60220864868164,103.53336478271484C71.21260864868164,101.84316478271484,76.27800864868163,100.34646478271485,80.88850864868164,99.27176478271485L81.43720864868163,99.15256478271485C78.26400864868164,95.96366478271484,75.29580864868164,92.24526478271484,72.95250864868164,88.63626478271485ZM71.48410864868164,58.02720478271485L70.78690864868165,57.794684782714846C70.54670864868164,57.794684782714846,70.12690864868165,58.02720478271485,69.92770864868163,58.25386478271484C69.04900864868165,61.81396478271485,69.68750864868164,65.60086478271484,71.24580864868165,68.97146478271485C72.56200864868164,65.41326478271485,72.56200864868164,61.626434782714846,71.48410864868164,58.02720478271485ZM43.39776864868164,121.47276478271485L44.03435864868164,121.24416478271485C46.95761864868164,120.17536478271484,49.24430864868164,118.07676478271485,50.89240864868164,115.29036478271485C47.74460864868164,116.58786478271485,45.272398648681644,118.72556478271484,43.39776864868164,121.47276478271485ZM102.46430864868164,108.38116478271485C96.76040864868165,107.96296478271483,91.28490864868164,105.82926478271484,86.83460864868164,102.01896478271485C78.16440864868164,103.92416478271485,69.94920864868163,106.66556478271485,61.69690864868164,110.05566478271484C55.155208648681636,121.71116478271485,49.03340864868164,127.65316478271484,43.74730864868164,127.65316478271484C42.68306864868164,127.65316478271484,41.42745864868164,127.42456478271484,40.59167864868164,126.81496478271484C38.27181864868164,125.74806478271485,37.01620864868164,123.42486478271485,37.01620864868164,121.10156478271485C37.01620864868164,119.19646478271484,37.43409864868164,113.90306478271484,57.51410864868164,105.21766478271485C62.153908648681636,96.76086478271483,65.76640864868165,88.07546478271485,68.69360864868165,78.97186478271485C66.14530864868163,73.90516478271485,60.63070864868164,61.41149478271484,64.43470864868164,55.04935478271484C65.69030864868164,52.726074782714846,68.23670864868164,51.46967078271484,70.97640864868164,51.659206682714846C73.10680864868164,51.659206682714846,75.19820864868164,52.726074782714846,76.45180864868163,54.40259478271484C79.18960864868164,58.21088478271484,79.00020864868165,66.24956478271484,75.38760864868163,78.09646478271485C78.77170864868164,84.45866478271483,83.22200864868165,90.17206478271484,88.46900864868164,95.01016478271484C92.91930864868164,94.17186478271483,97.33060864868165,93.52506478271485,101.77890864868164,93.52506478271485C111.70470864868165,93.75366478271485,113.18680864868163,98.40026478271484,112.95840864868164,101.14366478271484C113.03650864868165,108.38116478271485,106.07690864868164,108.38116478271485,102.46430864868164,108.38116478271485Z",
1714
+ fill: "#FFFFFF",
1715
+ "fill-opacity": "1"
1716
+ }
1717
+ })])])]);
1718
+ };
1719
+ var pdfvue_type_template_id_2a5785e0_staticRenderFns = [];
1720
+ pdfvue_type_template_id_2a5785e0_render._withStripped = true;
1721
+
1722
+ // CONCATENATED MODULE: ./src/components/FilesCard/src/fileSvg/pdf.vue?vue&type=template&id=2a5785e0
1723
+
1724
+ // CONCATENATED MODULE: ./src/components/FilesCard/src/fileSvg/pdf.vue
1725
+
1726
+ var pdf_script = {}
1727
+
1728
+
1729
+ /* normalize component */
1730
+
1731
+ var pdf_component = Object(componentNormalizer["a" /* default */])(
1732
+ pdf_script,
1733
+ pdfvue_type_template_id_2a5785e0_render,
1734
+ pdfvue_type_template_id_2a5785e0_staticRenderFns,
1735
+ false,
1736
+ null,
1737
+ null,
1738
+ null
1739
+
1740
+ )
1741
+
1742
+ /* harmony default export */ var pdf = (pdf_component.exports);
1743
+ // CONCATENATED MODULE: ./node_modules/babel-loader/lib!./node_modules/vue-loader/lib/loaders/templateLoader.js??ref--6!./node_modules/vue-loader/lib??vue-loader-options!./src/components/FilesCard/src/fileSvg/ppt.vue?vue&type=template&id=3e8773e9
1744
+ var pptvue_type_template_id_3e8773e9_render = function render() {
1745
+ var _vm = this,
1746
+ _c = _vm._self._c;
1747
+ return _c("svg", {
1748
+ attrs: {
1749
+ xmlns: "http://www.w3.org/2000/svg",
1750
+ "xmlns:xlink": "http://www.w3.org/1999/xlink",
1751
+ fill: "none",
1752
+ version: "1.1",
1753
+ width: "1em",
1754
+ height: "1em",
1755
+ viewBox: "0 0 150 175"
1756
+ }
1757
+ }, [_c("g", [_c("g", [_c("path", {
1758
+ staticStyle: {
1759
+ "mix-blend-mode": "passthrough"
1760
+ },
1761
+ attrs: {
1762
+ d: "M103.622,0.00000223615L27.5981,0.00000223615C12.355,0.00000223615,0,12.3648,0,27.6155L0,147.384C0,162.637,12.357,175,27.5981,175L122.402,175C137.645,175,150,162.635,150,147.384L150,46.4069C150,40.1874,147.532,34.2239,143.136,29.8274L120.191,6.86823C115.795,2.47051,109.835,7.45383e-7,103.622,0.00000223615Z",
1763
+ fill: "currentColor",
1764
+ "fill-opacity": "1"
1765
+ }
1766
+ })]), _vm._v(" "), _c("g", [_c("path", {
1767
+ staticStyle: {
1768
+ "mix-blend-mode": "passthrough"
1769
+ },
1770
+ attrs: {
1771
+ d: "M143.13607473144532,29.82753037600517L120.19137473144531,6.868310376005173C116.8993747314453,3.5744803760051727,112.70147473144532,1.3364713760051727,108.13317473144531,0.43973037600517273L108.13317473144531,26.20873037600517C108.13317473144531,34.39003037600517,114.76077473144531,41.02183037600517,122.93697473144532,41.02183037600517L149.37147473144532,41.02183037600517C148.37247473144532,36.783130376005175,146.21347473144533,32.90673037600517,143.13607473144532,29.82753037600517ZM83.59497473144532,55.578930376005175L49.29505473144531,55.578930376005175C46.707674731445316,55.578930376005175,44.60847473144531,57.67943037600517,44.60847473144531,60.268530376005174L44.60847473144531,119.42273037600518C44.60847473144531,122.01173037600518,46.707674731445316,124.11273037600517,49.29505473144531,124.11273037600517C51.88244473144531,124.11273037600517,53.981644731445314,122.01173037600518,53.981644731445314,119.42273037600518L53.981644731445314,103.88473037600517L83.59497473144532,103.88473037600517C96.90487473144532,103.88473037600517,107.73287473144532,93.05033037600518,107.73287473144532,79.73203037600517C107.73287473144532,66.41373037600518,96.90487473144532,55.578930376005175,83.59497473144532,55.578930376005175ZM83.59497473144532,94.50603037600517L53.981644731445314,94.50603037600517L53.981644731445314,64.95803037600517L83.59497473144532,64.95803037600517C91.73597473144531,64.95803037600517,98.35967473144531,71.58593037600517,98.35967473144531,79.73203037600517C98.35967473144531,87.87813037600517,91.73597473144531,94.50603037600517,83.59497473144532,94.50603037600517Z",
1772
+ fill: "#000000",
1773
+ "fill-opacity": "0.20000000298023224"
1774
+ }
1775
+ })]), _vm._v(" "), _c("g", [_c("path", {
1776
+ staticStyle: {
1777
+ "mix-blend-mode": "passthrough"
1778
+ },
1779
+ attrs: {
1780
+ d: "M83.59497473144532,53.23410415649414L49.29505473144531,53.23410415649414C46.707674731445316,53.23410415649414,44.60847473144531,55.334624156494144,44.60847473144531,57.92364415649414L44.60847473144531,117.07830415649414C44.60847473144531,119.66730415649414,46.707674731445316,121.76780415649414,49.29505473144531,121.76780415649414C51.88244473144531,121.76780415649414,53.981644731445314,119.66730415649414,53.981644731445314,117.07830415649414L53.981644731445314,101.54030415649413L83.59497473144532,101.54030415649413C96.90487473144532,101.54030415649413,107.73287473144532,90.70550415649414,107.73287473144532,77.38720415649414C107.73287473144532,64.06890415649414,96.90487473144532,53.23410415649414,83.59497473144532,53.23410415649414ZM83.59497473144532,92.16120415649414L53.981644731445314,92.16120415649414L53.981644731445314,62.61318415649414L83.59497473144532,62.61318415649414C91.73597473144531,62.61318415649414,98.35967473144531,69.24110415649415,98.35967473144531,77.38720415649414C98.35967473144531,85.53330415649414,91.73597473144531,92.16120415649414,83.59497473144532,92.16120415649414Z",
1781
+ fill: "#FFFFFF",
1782
+ "fill-opacity": "1"
1783
+ }
1784
+ })])])]);
1785
+ };
1786
+ var pptvue_type_template_id_3e8773e9_staticRenderFns = [];
1787
+ pptvue_type_template_id_3e8773e9_render._withStripped = true;
1788
+
1789
+ // CONCATENATED MODULE: ./src/components/FilesCard/src/fileSvg/ppt.vue?vue&type=template&id=3e8773e9
1790
+
1791
+ // CONCATENATED MODULE: ./src/components/FilesCard/src/fileSvg/ppt.vue
1792
+
1793
+ var ppt_script = {}
1794
+
1795
+
1796
+ /* normalize component */
1797
+
1798
+ var ppt_component = Object(componentNormalizer["a" /* default */])(
1799
+ ppt_script,
1800
+ pptvue_type_template_id_3e8773e9_render,
1801
+ pptvue_type_template_id_3e8773e9_staticRenderFns,
1802
+ false,
1803
+ null,
1804
+ null,
1805
+ null
1806
+
1807
+ )
1808
+
1809
+ /* harmony default export */ var ppt = (ppt_component.exports);
1810
+ // CONCATENATED MODULE: ./node_modules/babel-loader/lib!./node_modules/vue-loader/lib/loaders/templateLoader.js??ref--6!./node_modules/vue-loader/lib??vue-loader-options!./src/components/FilesCard/src/fileSvg/three.vue?vue&type=template&id=318c7d20
1811
+ var threevue_type_template_id_318c7d20_render = function render() {
1812
+ var _vm = this,
1813
+ _c = _vm._self._c;
1814
+ return _c("svg", {
1815
+ attrs: {
1816
+ xmlns: "http://www.w3.org/2000/svg",
1817
+ "xmlns:xlink": "http://www.w3.org/1999/xlink",
1818
+ fill: "none",
1819
+ version: "1.1",
1820
+ width: "1em",
1821
+ height: "1em",
1822
+ viewBox: "0 0 150 175"
1823
+ }
1824
+ }, [_c("g", [_c("g", [_c("path", {
1825
+ staticStyle: {
1826
+ "mix-blend-mode": "passthrough"
1827
+ },
1828
+ attrs: {
1829
+ d: "M103.622,0L27.5981,0C12.355,0,0,12.3648,0,27.6155L0,147.384C0,162.637,12.357,175,27.5981,175L122.402,175C137.645,175,150,162.635,150,147.384L150,46.4069C150,40.1874,147.532,34.2239,143.136,29.8274L120.191,6.86822C115.799,2.4707,109.839,-0.00000298153,103.622,0Z",
1830
+ fill: "currentColor",
1831
+ "fill-opacity": "1"
1832
+ }
1833
+ })]), _vm._v(" "), _c("g", [_c("path", {
1834
+ staticStyle: {
1835
+ "mix-blend-mode": "passthrough"
1836
+ },
1837
+ attrs: {
1838
+ d: "M143.13617915039063,29.825530376005172L120.19137915039063,6.8663503760051725C116.89947915039062,3.5738503760051725,112.70247915039063,1.3366073760051727,108.13517915039063,0.43973037600517273L108.13517915039063,26.20873037600517C108.13517915039063,34.39003037600517,114.76277915039063,41.02183037600517,122.93897915039062,41.02183037600517L149.37087915039064,41.02183037600517C148.37287915039065,36.782730376005176,146.21287915039062,32.90583037600517,143.13617915039063,29.825530376005172ZM66.64137915039063,91.54183037600517L49.033449150390624,81.97323037600518C46.162909150390625,80.62503037600517,43.79618415039062,81.87163037600517,43.770798150390625,84.74403037600517L43.59505197039063,105.53673037600517C43.57161995039063,108.40873037600517,45.89928915039062,111.86373037600518,48.769819150390624,113.21173037600518L66.37767915039063,122.77973037600518C69.24827915039063,124.12873037600517,71.61497915039062,122.88173037600517,71.64037915039063,120.00973037600517L71.81607915039062,99.21713037600517C71.83957915039062,96.34473037600517,69.51187915039063,92.89203037600517,66.64137915039063,91.54183037600517ZM102.39807915039063,76.15233037600517C105.64157915039063,73.96973037600517,105.82507915039062,70.67343037600517,102.80417915039062,68.82883037600517L80.15827915039063,57.82023037600517C76.96747915039063,56.169030376005175,74.18087915039062,56.03813037600517,70.33007915039062,58.04093037600517L47.578649150390625,68.96373037600517C44.33514315039063,71.14633037600517,44.15158515039062,74.44263037600517,47.17247915039062,76.28723037600517L69.03737915039062,88.07753037600517C72.05827915039063,89.92403037600518,76.51047915039062,89.87513037600517,80.42767915039062,87.85663037600517L102.39807915039063,76.15233037600517ZM100.96667915039063,81.58243037600518L81.99187915039062,91.73723037600517C79.12127915039062,93.08553037600517,76.79367915039063,96.54013037600517,76.81707915039063,99.41253037600518L76.99287915039062,120.59573037600518C77.01627915039063,123.46773037600518,79.38497915039062,124.71473037600518,82.25547915039063,123.36673037600518L101.23027915039063,113.21173037600518C104.10087915039063,111.86273037600517,106.42847915039061,108.40873037600517,106.40507915039063,105.53673037600517L106.22927915039062,84.35323037600517C106.20587915039061,81.48083037600517,103.83717915039063,80.23423037600517,100.96667915039063,81.58243037600518Z",
1839
+ fill: "#000000",
1840
+ "fill-opacity": "0.20000000298023224"
1841
+ }
1842
+ })]), _vm._v(" "), _c("g", [_c("path", {
1843
+ staticStyle: {
1844
+ "mix-blend-mode": "passthrough"
1845
+ },
1846
+ attrs: {
1847
+ d: "M66.64137915039063,89.39237504882811L49.03343915039063,79.82377504882813C46.162909150390625,78.47557504882812,43.79618415039062,79.72217504882812,43.770798150390625,82.59457504882812L43.59505197039063,103.38677504882813C43.57162005039063,106.25917504882813,45.89928915039062,109.71377504882813,48.769819150390624,111.06197504882812L66.37767915039063,120.63057504882812C69.24827915039063,121.97887504882813,71.61497915039062,120.73217504882813,71.64037915039063,117.85987504882812L71.81607915039062,97.06767504882812C71.83957915039062,94.19527504882812,69.51187915039063,90.74257504882812,66.64137915039063,89.39237504882811ZM102.39807915039063,74.00287504882812C105.64147915039062,71.82027504882812,105.82507915039062,68.52397504882812,102.80417915039062,66.67937504882812L80.15827915039063,55.67071504882813C76.96747915039063,54.019600048828124,74.18087915039062,53.888687048828125,70.33007915039062,55.891515048828126L47.578649150390625,66.81427504882812C44.33514315039063,68.99687504882813,44.15158515039062,72.29317504882812,47.17247915039062,74.13777504882813L69.03737915039062,85.92807504882812C72.05827915039063,87.77457504882813,76.51047915039062,87.72567504882812,80.42767915039062,85.70717504882813L102.39807915039063,74.00287504882812ZM106.22927915039062,82.20377504882812C106.20587915039061,79.33137504882812,103.83717915039063,78.08477504882812,100.96667915039063,79.43297504882813L81.99187915039062,89.58787504882812C79.12127915039062,90.93607504882812,76.79367915039063,94.39067504882811,76.81707915039063,97.26307504882813L76.99287915039062,118.44607504882812C77.01627915039063,121.31847504882812,79.38497915039062,122.56507504882812,82.25547915039063,121.21687504882813L101.23027915039063,111.06197504882812C104.10077915039062,109.71377504882813,106.42847915039061,106.25917504882813,106.40507915039063,103.38677504882813L106.22927915039062,82.20377504882812Z",
1848
+ fill: "#FFFFFF",
1849
+ "fill-opacity": "1"
1850
+ }
1851
+ })])])]);
1852
+ };
1853
+ var threevue_type_template_id_318c7d20_staticRenderFns = [];
1854
+ threevue_type_template_id_318c7d20_render._withStripped = true;
1855
+
1856
+ // CONCATENATED MODULE: ./src/components/FilesCard/src/fileSvg/three.vue?vue&type=template&id=318c7d20
1857
+
1858
+ // CONCATENATED MODULE: ./src/components/FilesCard/src/fileSvg/three.vue
1859
+
1860
+ var three_script = {}
1861
+
1862
+
1863
+ /* normalize component */
1864
+
1865
+ var three_component = Object(componentNormalizer["a" /* default */])(
1866
+ three_script,
1867
+ threevue_type_template_id_318c7d20_render,
1868
+ threevue_type_template_id_318c7d20_staticRenderFns,
1869
+ false,
1870
+ null,
1871
+ null,
1872
+ null
1873
+
1874
+ )
1875
+
1876
+ /* harmony default export */ var three = (three_component.exports);
1877
+ // CONCATENATED MODULE: ./node_modules/babel-loader/lib!./node_modules/vue-loader/lib/loaders/templateLoader.js??ref--6!./node_modules/vue-loader/lib??vue-loader-options!./src/components/FilesCard/src/fileSvg/txt.vue?vue&type=template&id=100a4af8
1878
+ var txtvue_type_template_id_100a4af8_render = function render() {
1879
+ var _vm = this,
1880
+ _c = _vm._self._c;
1881
+ return _c("svg", {
1882
+ attrs: {
1883
+ xmlns: "http://www.w3.org/2000/svg",
1884
+ "xmlns:xlink": "http://www.w3.org/1999/xlink",
1885
+ fill: "none",
1886
+ version: "1.1",
1887
+ width: "1em",
1888
+ height: "1em",
1889
+ viewBox: "0 0 150 175"
1890
+ }
1891
+ }, [_c("g", [_c("g", [_c("path", {
1892
+ staticStyle: {
1893
+ "mix-blend-mode": "passthrough"
1894
+ },
1895
+ attrs: {
1896
+ d: "M103.622,0L27.5981,0C12.355,0,0,12.3648,0,27.6155L0,147.384C0,162.637,12.357,175,27.5981,175L122.402,175C137.645,175,150,162.635,150,147.384L150,46.4069C150,40.1874,147.532,34.2239,143.136,29.8274L120.191,6.86822C115.795,2.47051,109.835,-0.00000298153,103.622,0Z",
1897
+ fill: "currentColor",
1898
+ "fill-opacity": "1"
1899
+ }
1900
+ })]), _vm._v(" "), _c("g", [_c("path", {
1901
+ staticStyle: {
1902
+ "mix-blend-mode": "passthrough"
1903
+ },
1904
+ attrs: {
1905
+ d: "M143.163625,29.814453125L120.214825,6.865233125C116.922225,3.572843125,112.723525,1.335807125,108.154325,0.439453125L108.154325,26.197253125C108.154325,34.374953125,114.783225,41.003953125,122.960925,41.003953125L149.400625,41.003953125C148.401625,36.767253125,146.241625,32.892653125,143.163625,29.814453125ZM105.699225,62.048853125L75.957025,62.048853125C75.334625,61.921253125,74.692725,61.921253125,74.070325,62.048853125L44.328125,62.048853125C41.740235,62.048853125,39.640625,64.148453125,39.640625,66.736353125C39.640625,69.324253125,41.740235,71.423853125,44.328125,71.423853125L70.326225,71.423853125L70.326225,121.957453125C70.326225,124.544453125,72.425825,126.644453125,75.013725,126.644453125C77.60152500000001,126.644453125,79.701225,124.544453125,79.701225,121.957453125L79.701225,71.423853125L105.699225,71.423853125C108.287125,71.423853125,110.386725,69.324253125,110.386725,66.736353125C110.386725,64.148453125,108.287125,62.048853125,105.699225,62.048853125Z",
1906
+ fill: "#000000",
1907
+ "fill-opacity": "0.20000000298023224"
1908
+ }
1909
+ })]), _vm._v(" "), _c("g", [_c("path", {
1910
+ staticStyle: {
1911
+ "mix-blend-mode": "passthrough"
1912
+ },
1913
+ attrs: {
1914
+ d: "M105.699225,59.7050702L75.957025,59.7050702C75.334625,59.5774746,74.692725,59.5774746,74.070325,59.7050702L44.328125,59.7050702C41.740235,59.7050702,39.640625,61.804675,39.640625,64.392575C39.640625,66.980465,41.740235,69.080065,44.328125,69.080065L70.326225,69.080065L70.326225,119.613275C70.326225,122.201175,72.425825,124.300775,75.013725,124.300775C77.60152500000001,124.300775,79.701225,122.201175,79.701225,119.613275L79.701225,69.080065L105.699225,69.080065C108.287125,69.080065,110.386725,66.980465,110.386725,64.392575C110.386725,61.804675,108.287125,59.7050702,105.699225,59.7050702Z",
1915
+ fill: "#FFFFFF",
1916
+ "fill-opacity": "1"
1917
+ }
1918
+ })])])]);
1919
+ };
1920
+ var txtvue_type_template_id_100a4af8_staticRenderFns = [];
1921
+ txtvue_type_template_id_100a4af8_render._withStripped = true;
1922
+
1923
+ // CONCATENATED MODULE: ./src/components/FilesCard/src/fileSvg/txt.vue?vue&type=template&id=100a4af8
1924
+
1925
+ // CONCATENATED MODULE: ./src/components/FilesCard/src/fileSvg/txt.vue
1926
+
1927
+ var txt_script = {}
1928
+
1929
+
1930
+ /* normalize component */
1931
+
1932
+ var txt_component = Object(componentNormalizer["a" /* default */])(
1933
+ txt_script,
1934
+ txtvue_type_template_id_100a4af8_render,
1935
+ txtvue_type_template_id_100a4af8_staticRenderFns,
1936
+ false,
1937
+ null,
1938
+ null,
1939
+ null
1940
+
1941
+ )
1942
+
1943
+ /* harmony default export */ var txt = (txt_component.exports);
1944
+ // CONCATENATED MODULE: ./node_modules/babel-loader/lib!./node_modules/vue-loader/lib/loaders/templateLoader.js??ref--6!./node_modules/vue-loader/lib??vue-loader-options!./src/components/FilesCard/src/fileSvg/unknown.vue?vue&type=template&id=54eeafc0
1945
+ var unknownvue_type_template_id_54eeafc0_render = function render() {
1946
+ var _vm = this,
1947
+ _c = _vm._self._c;
1948
+ return _c("svg", {
1949
+ attrs: {
1950
+ xmlns: "http://www.w3.org/2000/svg",
1951
+ "xmlns:xlink": "http://www.w3.org/1999/xlink",
1952
+ fill: "none",
1953
+ version: "1.1",
1954
+ width: "1em",
1955
+ height: "1em",
1956
+ viewBox: "0 0 150 175"
1957
+ }
1958
+ }, [_c("g", [_c("g", [_c("path", {
1959
+ staticStyle: {
1960
+ "mix-blend-mode": "passthrough"
1961
+ },
1962
+ attrs: {
1963
+ d: "M103.622,0L27.5981,0C12.355,0,0,12.3648,0,27.6155L0,147.384C0,162.637,12.357,175,27.5981,175L122.402,175C137.645,175,150,162.635,150,147.384L150,46.4069C150,40.1874,147.532,34.2239,143.136,29.8274L120.191,6.86822C115.795,2.47051,109.835,-0.00000298153,103.622,0Z",
1964
+ fill: "currentColor",
1965
+ "fill-opacity": "1"
1966
+ }
1967
+ })]), _vm._v(" "), _c("g", [_c("path", {
1968
+ staticStyle: {
1969
+ "mix-blend-mode": "passthrough"
1970
+ },
1971
+ attrs: {
1972
+ d: "M143.16410000000002,29.814453125L120.2148,6.865233125C116.9222,3.572843125,112.7235,1.335807125,108.1543,0.439453125L108.1543,26.197253125C108.1543,34.374953125,114.7832,41.003953125,122.9609,41.003953125L149.4005,41.003953125C148.4015,36.767253125,146.2415,32.892653125,143.16410000000002,29.814453125ZM74.8945,45.259753125C58.8594,45.259753125,45.8125,58.306653125,45.8125,74.341753125C45.8125,76.789053125,47.79492,78.771453125,50.24219,78.771453125C52.68945,78.771453125,54.67187,76.789053125,54.67187,74.341753125C54.67187,63.191453125,63.7441,54.119153125,74.8945,54.119153125C80.291,54.119153125,85.3672,56.224653125,89.18950000000001,60.046853125C93.01169999999999,63.869153125,95.1172,68.947253125,95.1172,74.341753125C95.1172,78.464853125,93.8848,82.429653125,91.5547,85.808553125C89.27340000000001,89.113253125,86.1074,91.646453125,82.3945,93.128953125C75.1465,96.025353125,70.4648,102.875453125,70.4648,110.576453125L70.4648,110.900453125C70.4648,113.347453125,72.4473,115.330453125,74.8945,115.330453125C77.3418,115.330453125,79.32419999999999,113.347453125,79.32419999999999,110.900453125L79.32419999999999,110.576453125C79.32419999999999,106.517453125,81.8203,102.898453125,85.6836,101.355453125C91.0215,99.222653125,95.5723,95.585953125,98.8476,90.839853125C102.2031,85.976553125,103.97659999999999,80.271453125,103.97659999999999,74.341753125C103.97659999999999,66.580053125,100.94919999999999,59.277353125,95.4531,53.781253125C89.959,48.287153125,82.6562,45.259753125,74.8945,45.259753125Z",
1973
+ fill: "#000000",
1974
+ "fill-opacity": "0.20000000298023224"
1975
+ }
1976
+ })]), _vm._v(" "), _c("g", [_c("path", {
1977
+ staticStyle: {
1978
+ "mix-blend-mode": "passthrough"
1979
+ },
1980
+ attrs: {
1981
+ d: "M72.6373915234375,133.99798798828124C75.65232152343751,135.25198798828126,79.1127115234375,133.82158798828124,80.3623115234375,130.80481798828126C81.6118115234375,127.78806798828126,80.1764115234375,124.32978798828125,77.1578415234375,123.08463798828124C74.1429215234375,121.83063898828125,70.6825415234375,123.26100798828125,69.4329535234375,126.27776798828125C68.1833715234375,129.29452798828126,69.6188065234375,132.75278798828126,72.6373915234375,133.99798798828124Z",
1982
+ fill: "#9DC0C9",
1983
+ "fill-opacity": "1"
1984
+ }
1985
+ })]), _vm._v(" "), _c("g", [_c("path", {
1986
+ staticStyle: {
1987
+ "mix-blend-mode": "passthrough"
1988
+ },
1989
+ attrs: {
1990
+ d: "M95.572240625,51.3906275C90.076140625,45.8945275,82.775340625,42.8671875,75.013640625,42.8671875C58.978540625,42.8671875,45.931640625,55.9140875,45.931640625,71.9491875C45.931640625,74.3964875,47.914060625,76.37888749999999,50.361330625,76.37888749999999C52.808590625,76.37888749999999,54.791010625,74.3964875,54.791010625,71.9491875C54.791010625,60.7987875,63.863240625,51.7265575,75.013640625,51.7265575C80.410140625,51.7265575,85.486340625,53.8319875,89.30864062500001,57.6542875C93.13084062499999,61.4765875,95.236340625,66.5546875,95.236340625,71.9491875C95.236340625,76.0722875,94.003940625,80.0370875,91.673840625,83.4159875C89.39254062500001,86.7206875,86.226540625,89.25388749999999,82.513640625,90.7362875C75.265640625,93.6327875,70.583940625,100.4823875,70.583940625,108.1835875L70.583940625,108.5077875C70.583940625,110.9550875,72.566440625,112.9374875,75.013640625,112.9374875C77.460940625,112.9374875,79.44334062499999,110.9550875,79.44334062499999,108.5077875L79.44334062499999,108.1835875C79.44334062499999,104.1249875,81.939440625,100.5058875,85.802740625,98.9628875C91.140640625,96.83008749999999,95.691440625,93.1933875,98.966740625,88.4472875C102.322240625,83.5839875,104.09574062499999,77.87888749999999,104.09574062499999,71.9491875C104.09574062499999,64.1874875,101.06834062499999,56.8866875,95.572240625,51.3906275Z",
1991
+ fill: "#FFFFFF",
1992
+ "fill-opacity": "1"
1993
+ }
1994
+ })]), _vm._v(" "), _c("g", [_c("path", {
1995
+ staticStyle: {
1996
+ "mix-blend-mode": "passthrough"
1997
+ },
1998
+ attrs: {
1999
+ d: "M80.919921875,126.15234375Q80.919921875,126.29733375,80.912821875,126.44214375Q80.905721875,126.58696375,80.891521875,126.73125375Q80.877221875,126.87554375,80.856021875,127.01896375Q80.834721875,127.16238375,80.806421875,127.30459375Q80.778121875,127.44679375,80.74292187500001,127.58744375Q80.707721875,127.72808375,80.665621875,127.86683375Q80.623521875,128.00558375,80.574621875,128.14209375Q80.525821875,128.27861375,80.470321875,128.41256375Q80.414821875,128.54651375,80.352821875,128.67758375Q80.290821875,128.80865375,80.222521875,128.93652375Q80.154121875,129.06439375,80.079621875,129.18876375Q80.005121875,129.31312375,79.924521875,129.43367375Q79.844021875,129.55423375,79.757621875,129.67069375Q79.671221875,129.78714375,79.579221875,129.89922375Q79.48732187499999,130.01130375,79.389921875,130.11873375Q79.292521875,130.22616375,79.190021875,130.32869375Q79.087491875,130.43119375,78.980061875,130.52859375Q78.872631875,130.62599375,78.760551875,130.71789375Q78.648471875,130.80989375000001,78.532021875,130.89629375Q78.415561875,130.98269375,78.295001875,131.06319375Q78.174451875,131.14379375,78.05009187499999,131.21829375Q77.925721875,131.29279375,77.79785187499999,131.36119375Q77.669981875,131.42949375,77.538911875,131.49149375Q77.407841875,131.55349375,77.273891875,131.60899375Q77.139941875,131.66449375,77.003421875,131.71329375Q76.866911875,131.76219375,76.728161875,131.80429375Q76.589411875,131.84639375,76.448771875,131.88159375Q76.308121875,131.91679375,76.165921875,131.94509375Q76.023721875,131.97339375,75.880291875,131.99469375Q75.736871875,132.01589375,75.592581875,132.03019375Q75.448291875,132.04439375,75.303471875,132.05149375Q75.158661875,132.05859375,75.013671875,132.05859375Q74.868681875,132.05859375,74.723861875,132.05149375Q74.579051875,132.04439375,74.434751875,132.03019375Q74.290461875,132.01589375,74.147041875,131.99469375Q74.003621875,131.97339375,73.861421875,131.94509375Q73.719211875,131.91679375,73.578571875,131.88159375Q73.437921875,131.84639375,73.299171875,131.80429375Q73.160431875,131.76219375,73.023911875,131.71329375Q72.887401875,131.66449375,72.753441875,131.60899375Q72.619491875,131.55349375,72.488421875,131.49149375Q72.357351875,131.42949375,72.229481875,131.36119375Q72.101611875,131.29279375,71.977251875,131.21829375Q71.852891875,131.14379375,71.732331875,131.06319375Q71.611781875,130.98269375,71.495321875,130.89629375Q71.378861875,130.80989375000001,71.266781875,130.71789375Q71.154701875,130.62599375,71.047271875,130.52859375Q70.939841875,130.43119375,70.837321875,130.32869375Q70.734801875,130.22616375,70.637431875,130.11873375Q70.540061875,130.01130375,70.448081875,129.89922375Q70.356101875,129.78714375,70.269731875,129.67069375Q70.183351875,129.55423375,70.102803875,129.43367375Q70.022251875,129.31312375,69.947711875,129.18876375Q69.873171875,129.06439375,69.804823875,128.93652375Q69.736475875,128.80865375,69.674484875,128.67758375Q69.612493875,128.54651375,69.557007875,128.41256375Q69.501522875,128.27861375,69.452676875,128.14209375Q69.403830875,128.00558375,69.361742875,127.86683375Q69.319654875,127.72808375,69.284424875,127.58744375Q69.249194875,127.44679375,69.220908875,127.30459375Q69.192622575,127.16239375,69.171348075,127.01896375Q69.150073575,126.87554375,69.135862075,126.73125375Q69.121650575,126.58696375,69.114536205,126.44214375Q69.107421875,126.29733375,69.107421875,126.15234375Q69.107421875,126.00735375,69.114536205,125.86253375Q69.121650575,125.71772375,69.135862075,125.57342375Q69.150073575,125.42913375,69.171348075,125.28571375Q69.192622575,125.14229375,69.220908875,125.00009375Q69.249194875,124.85788375,69.284424875,124.71724375Q69.319654875,124.57659375,69.361742875,124.43784375Q69.403830875,124.29910375,69.452676875,124.16258375Q69.501522875,124.02607375,69.557007875,123.89211375Q69.612493875,123.75816375,69.674484875,123.62709375Q69.736475875,123.49602375,69.804823875,123.36815375Q69.873171875,123.24028375,69.947711875,123.11592375Q70.022251875,122.99156375,70.102803875,122.87100375Q70.183351875,122.75045375,70.269731875,122.63399375Q70.356101875,122.51753375,70.448081875,122.40545375Q70.540061875,122.29337375,70.637431875,122.18594375Q70.734801875,122.07851375,70.837321875,121.97599375Q70.939841875,121.87347375,71.047271875,121.77610375Q71.154701875,121.67873375,71.266781875,121.58675375Q71.378861875,121.49477375,71.495321875,121.40840375Q71.611781875,121.32202375,71.732331875,121.24147575Q71.852891875,121.16092375,71.977251875,121.08638375Q72.101611875,121.01184375,72.229481875,120.94349575Q72.357351875,120.87514775,72.488421875,120.81315675Q72.619491875,120.75116575,72.753441875,120.69567975Q72.887401875,120.64019475,73.023911875,120.59134875Q73.160431875,120.54250275,73.299171875,120.50041475Q73.437921875,120.45832675,73.578571875,120.42309675Q73.719211875,120.38786675,73.861421875,120.35958075Q74.003621875,120.33129445,74.147041875,120.31001995Q74.290461875,120.28874545,74.434751875,120.27453395Q74.579051875,120.26032245,74.723861875,120.25320808Q74.868681875,120.24609375,75.013671875,120.24609375Q75.158661875,120.24609375,75.303471875,120.25320808Q75.448291875,120.26032245,75.592581875,120.27453395Q75.736871875,120.28874545,75.880291875,120.31001995Q76.023711875,120.33129445,76.165921875,120.35958075Q76.308121875,120.38786675,76.448771875,120.42309675Q76.589411875,120.45832675,76.728161875,120.50041475Q76.866911875,120.54250275,77.003421875,120.59134875Q77.139941875,120.64019475,77.273891875,120.69567975Q77.407841875,120.75116575,77.538911875,120.81315675Q77.669981875,120.87514775,77.79785187499999,120.94349575Q77.925721875,121.01184375,78.05009187499999,121.08638375Q78.174451875,121.16092375,78.295001875,121.24147575Q78.415561875,121.32202375,78.532021875,121.40840375Q78.648471875,121.49477375,78.760551875,121.58675375Q78.872631875,121.67873375,78.980061875,121.77610375Q79.087491875,121.87347375,79.190021875,121.97599375Q79.292521875,122.07851375,79.389921875,122.18594375Q79.48732187499999,122.29337375,79.579221875,122.40545375Q79.671221875,122.51753375,79.757621875,122.63399375Q79.844021875,122.75045375,79.924521875,122.87100375Q80.005121875,122.99156375,80.079621875,123.11592375Q80.154121875,123.24028375,80.222521875,123.36815375Q80.290821875,123.49602375,80.352821875,123.62709375Q80.414821875,123.75816375,80.470321875,123.89211375Q80.525821875,124.02607375,80.574621875,124.16258375Q80.623521875,124.29910375,80.665621875,124.43784375Q80.707721875,124.57659375,80.74292187500001,124.71724375Q80.778121875,124.85788375,80.806421875,125.00009375Q80.834721875,125.14229375,80.856021875,125.28571375Q80.877221875,125.42913375,80.891521875,125.57342375Q80.905721875,125.71772375,80.912821875,125.86253375Q80.919921875,126.00735375,80.919921875,126.15234375Z",
2000
+ fill: "#FFFFFF",
2001
+ "fill-opacity": "1"
2002
+ }
2003
+ })])])]);
2004
+ };
2005
+ var unknownvue_type_template_id_54eeafc0_staticRenderFns = [];
2006
+ unknownvue_type_template_id_54eeafc0_render._withStripped = true;
2007
+
2008
+ // CONCATENATED MODULE: ./src/components/FilesCard/src/fileSvg/unknown.vue?vue&type=template&id=54eeafc0
2009
+
2010
+ // CONCATENATED MODULE: ./src/components/FilesCard/src/fileSvg/unknown.vue
2011
+
2012
+ var unknown_script = {}
2013
+
2014
+
2015
+ /* normalize component */
2016
+
2017
+ var unknown_component = Object(componentNormalizer["a" /* default */])(
2018
+ unknown_script,
2019
+ unknownvue_type_template_id_54eeafc0_render,
2020
+ unknownvue_type_template_id_54eeafc0_staticRenderFns,
2021
+ false,
2022
+ null,
2023
+ null,
2024
+ null
2025
+
2026
+ )
2027
+
2028
+ /* harmony default export */ var unknown = (unknown_component.exports);
2029
+ // CONCATENATED MODULE: ./node_modules/babel-loader/lib!./node_modules/vue-loader/lib/loaders/templateLoader.js??ref--6!./node_modules/vue-loader/lib??vue-loader-options!./src/components/FilesCard/src/fileSvg/video.vue?vue&type=template&id=ab745446
2030
+ var videovue_type_template_id_ab745446_render = function render() {
2031
+ var _vm = this,
2032
+ _c = _vm._self._c;
2033
+ return _c("svg", {
2034
+ attrs: {
2035
+ xmlns: "http://www.w3.org/2000/svg",
2036
+ "xmlns:xlink": "http://www.w3.org/1999/xlink",
2037
+ fill: "none",
2038
+ version: "1.1",
2039
+ width: "1em",
2040
+ height: "1em",
2041
+ viewBox: "0 0 150 175"
2042
+ }
2043
+ }, [_c("g", [_c("g", [_c("path", {
2044
+ staticStyle: {
2045
+ "mix-blend-mode": "passthrough"
2046
+ },
2047
+ attrs: {
2048
+ d: "M103.622,0L27.5981,0C12.355,0,0,12.3648,0,27.6155L0,147.384C0,162.637,12.357,175,27.5981,175L122.402,175C137.645,175,150,162.635,150,147.384L150,46.405C150,40.1855,147.532,34.2219,143.136,29.8255L120.191,6.86627C115.797,2.46982,109.837,0,103.622,0Z",
2049
+ fill: "currentColor",
2050
+ "fill-opacity": "1"
2051
+ }
2052
+ })]), _vm._v(" "), _c("g", [_c("path", {
2053
+ staticStyle: {
2054
+ "mix-blend-mode": "passthrough"
2055
+ },
2056
+ attrs: {
2057
+ d: "M143.6605,30.808L120.3316,6.73925C116.9845,3.28624,112.7164,0.940079,108.0716,0L108.0716,27.0143C108.0716,35.591,114.8101,42.5433,123.1232,42.5433L150,42.5433C148.98399999999998,38.1003,146.788,34.0369,143.6605,30.808ZM72.9483,74.8181L63.1549,63L52.06524,63L61.8587,74.8181L72.9483,74.8181ZM101.7527,74.8181L91.95920000000001,63L80.86959999999999,63L90.663,74.8181L101.7527,74.8181ZM87.3506,74.8181L77.55709999999999,63L66.4674,63L76.26089999999999,74.8181L87.3506,74.8181ZM105.9293,63L95.27170000000001,63L105.0652,74.8181L110.25,74.8181L110.25,67.4318C110.25,64.9204,108.3777,63,105.9293,63ZM48.75271,63L48.32065,63C45.87232,63,44,64.9204,44,67.4318L44,74.8181L58.5462,74.8181L48.75271,63ZM44,123.568C44,126.08,45.87232,128,48.32065,128L105.9293,128C108.3777,128,110.25,126.08,110.25,123.568L110.25,77.7727L44.00000388806,77.7727L44,123.568ZM67.0435,91.0682C67.0435,88.5568,69.0598,87.375,71.3642,87.375C72.0842,87.375,72.9483,87.5227,73.6685,87.9659L90.0869,97.7159C92.9674,99.3409,92.9674,103.477,90.0869,105.102L73.6685,114.852C72.9483,115.295,72.2283,115.443,71.3642,115.443C69.0598,115.443,67.0435,114.261,67.0435,111.75L67.0435,91.0682Z",
2058
+ fill: "#000000",
2059
+ "fill-opacity": "0.20000000298023224"
2060
+ }
2061
+ })]), _vm._v(" "), _c("g", [_c("path", {
2062
+ staticStyle: {
2063
+ "mix-blend-mode": "passthrough"
2064
+ },
2065
+ attrs: {
2066
+ d: "M72.4022,71.8181L62.7935,60.000000528314L51.91306,60.000000528314L61.5218,71.8181L72.4022,71.8181ZM100.663,71.8181L91.0543,60.000000528314L80.1739,60.000000528314L89.7826,71.8181L100.663,71.8181ZM86.5326,71.8181L76.9239,60.000000528314L66.0435,60.000000528314L75.6522,71.8181L86.5326,71.8181ZM104.76089999999999,60L94.3043,60L103.913,71.8181L109,71.8181L109,64.43182C109,61.92043,107.163,60.000000528314,104.76089999999999,60ZM48.66304,60L48.23913,60C45.837,60,44,61.92043,44,64.43182L44,71.8181L58.2718,71.8181L48.66304,60ZM44,120.56819999999999C44,123.0796,45.837,125,48.23913,125L104.76089999999999,125C107.163,125,109,123.0796,109,120.56819999999999L109,74.7727L44.00000202137,74.7727L44,120.56819999999999ZM66.6087,88.0682C66.6087,85.5568,68.5869,84.375,70.8479,84.375C71.5543,84.375,72.4022,84.5227,73.1087,84.9659L89.2174,94.7159C92.0435,96.3409,92.0435,100.4773,89.2174,102.1023L73.1087,111.8523C72.4022,112.2955,71.6957,112.44319999999999,70.8479,112.44319999999999C68.5869,112.44319999999999,66.6087,111.26140000000001,66.6087,108.75L66.6087,88.0682Z",
2067
+ fill: "#FFFFFF",
2068
+ "fill-opacity": "1"
2069
+ }
2070
+ })])])]);
2071
+ };
2072
+ var videovue_type_template_id_ab745446_staticRenderFns = [];
2073
+ videovue_type_template_id_ab745446_render._withStripped = true;
2074
+
2075
+ // CONCATENATED MODULE: ./src/components/FilesCard/src/fileSvg/video.vue?vue&type=template&id=ab745446
2076
+
2077
+ // CONCATENATED MODULE: ./src/components/FilesCard/src/fileSvg/video.vue
2078
+
2079
+ var video_script = {}
2080
+
2081
+
2082
+ /* normalize component */
2083
+
2084
+ var video_component = Object(componentNormalizer["a" /* default */])(
2085
+ video_script,
2086
+ videovue_type_template_id_ab745446_render,
2087
+ videovue_type_template_id_ab745446_staticRenderFns,
2088
+ false,
2089
+ null,
2090
+ null,
2091
+ null
2092
+
2093
+ )
2094
+
2095
+ /* harmony default export */ var video = (video_component.exports);
2096
+ // CONCATENATED MODULE: ./node_modules/babel-loader/lib!./node_modules/vue-loader/lib/loaders/templateLoader.js??ref--6!./node_modules/vue-loader/lib??vue-loader-options!./src/components/FilesCard/src/fileSvg/word.vue?vue&type=template&id=13329af3
2097
+ var wordvue_type_template_id_13329af3_render = function render() {
2098
+ var _vm = this,
2099
+ _c = _vm._self._c;
2100
+ return _c("svg", {
2101
+ attrs: {
2102
+ xmlns: "http://www.w3.org/2000/svg",
2103
+ "xmlns:xlink": "http://www.w3.org/1999/xlink",
2104
+ fill: "none",
2105
+ version: "1.1",
2106
+ width: "1em",
2107
+ height: "1em",
2108
+ viewBox: "0 0 150 175"
2109
+ }
2110
+ }, [_c("g", [_c("g", [_c("path", {
2111
+ staticStyle: {
2112
+ "mix-blend-mode": "passthrough"
2113
+ },
2114
+ attrs: {
2115
+ d: "M103.622,0L27.5981,0C12.355,0,0,12.3648,0,27.6155L0,147.384C0,162.637,12.357,175,27.5981,175L122.402,175C137.645,175,150,162.635,150,147.384L150,46.405C150,40.1855,147.532,34.2219,143.136,29.8255L120.191,6.86627C115.797,2.46982,109.837,0,103.622,0Z",
2116
+ fill: "currentColor",
2117
+ "fill-opacity": "1"
2118
+ }
2119
+ })]), _vm._v(" "), _c("g", [_c("path", {
2120
+ staticStyle: {
2121
+ "mix-blend-mode": "passthrough"
2122
+ },
2123
+ attrs: {
2124
+ d: "M101.48797106933594,57.88857593970299C98.90057106933594,57.88857593970299,96.80137106933594,59.989075939702985,96.80137106933594,62.57807593970299L96.80137106933594,106.78877593970299L78.37727106933593,88.56017593970299C76.55537106933593,86.758575939703,73.62427106933593,86.75267593970298,71.79847106933593,88.55037593970299L53.19664106933594,106.83977593970299L53.19664106933594,62.44917593970299C53.19664106933594,59.86007593970299,51.097441069335936,57.75957593970299,48.51005106933594,57.75957593970299C45.92267106933594,57.75957593970299,43.82347106933594,59.86007593970299,43.82347106933594,62.44917593970299L43.82347106933594,118.02177593970299C43.82347106933594,119.91177593970299,44.95606106933594,121.61577593970298,46.69791106933594,122.346775939703C48.438791069335934,123.07677593970298,50.44772106933594,122.69077593970299,51.79457106933594,121.367775939703L75.07327106933593,98.48237593970299L98.19377106933594,121.35777593970299C99.07137106933594,122.22577593970298,100.25587106933594,122.712775939703,101.48997106933594,122.71177593970299C102.09727106933593,122.71177593970299,102.71037106933593,122.59277593970299,103.29427106933593,122.349775939703C105.03867106933595,121.62177593970299,106.17457106933594,119.91477593970299,106.17457106933594,118.02177593970299L106.17457106933594,62.57807593970299C106.17457106933594,59.989075939702985,104.07737106933594,57.88857593970299,101.48797106933594,57.88857593970299ZM143.13607106933594,29.825575939702986L120.19137106933594,6.866355939702988C116.89937106933594,3.5725259397029876,112.70147106933594,1.3345169397029877,108.13317106933594,0.43777593970298767L108.13317106933594,26.206775939702986C108.13317106933594,34.388075939702986,114.76077106933593,41.019875939702985,122.93687106933594,41.019875939702985L149.37147106933594,41.019875939702985C148.37247106933594,36.78137593970299,146.21347106933592,32.90507593970299,143.13607106933594,29.825575939702986Z",
2125
+ fill: "#000000",
2126
+ "fill-opacity": "0.20000000298023224"
2127
+ }
2128
+ })]), _vm._v(" "), _c("g", [_c("path", {
2129
+ staticStyle: {
2130
+ "mix-blend-mode": "passthrough"
2131
+ },
2132
+ attrs: {
2133
+ d: "M101.48997106933594,120.36685296020508C100.27927106933595,120.36685296020508,99.08807106933594,119.89785296020507,98.19367106933593,119.01275296020508L75.07327106933593,96.13755296020508L51.79457106933594,119.02255296020508C50.44803106933594,120.34665296020508,48.43872106933594,120.73265296020507,46.69791106933594,120.00145296020507C44.956681069335936,119.27155296020507,43.82347106933594,117.56685296020507,43.82347106933594,115.67735296020507L43.82347106933594,60.10429296020508C43.82347106933594,57.51527296020508,45.92267106933594,55.41475296020508,48.51005106933594,55.41475296020508C51.097441069335936,55.41475296020508,53.19664106933594,57.51527296020508,53.19664106933594,60.10429296020508L53.19664106933594,104.49665296020507L71.79847106933593,86.20745296020507C73.62627106933594,84.41175296020508,76.55727106933594,84.41565296020508,78.37727106933593,86.21725296020507L96.80137106933594,104.44585296020509L96.80137106933594,60.23325296020508C96.80137106933594,57.64424296020508,98.90057106933594,55.54371596020508,101.48797106933594,55.54371596020508C104.07537106933594,55.54371596020508,106.17457106933594,57.64424296020508,106.17457106933594,60.23325296020508L106.17457106933594,115.67735296020507C106.17457106933594,117.56875296020507,105.03807106933593,119.27655296020508,103.29427106933593,120.00535296020507C102.72247106933594,120.24345296020508,102.10927106933593,120.36625296020507,101.48997106933594,120.36685296020508Z",
2134
+ fill: "#FFFFFF",
2135
+ "fill-opacity": "1"
2136
+ }
2137
+ })])])]);
2138
+ };
2139
+ var wordvue_type_template_id_13329af3_staticRenderFns = [];
2140
+ wordvue_type_template_id_13329af3_render._withStripped = true;
2141
+
2142
+ // CONCATENATED MODULE: ./src/components/FilesCard/src/fileSvg/word.vue?vue&type=template&id=13329af3
2143
+
2144
+ // CONCATENATED MODULE: ./src/components/FilesCard/src/fileSvg/word.vue
2145
+
2146
+ var word_script = {}
2147
+
2148
+
2149
+ /* normalize component */
2150
+
2151
+ var word_component = Object(componentNormalizer["a" /* default */])(
2152
+ word_script,
2153
+ wordvue_type_template_id_13329af3_render,
2154
+ wordvue_type_template_id_13329af3_staticRenderFns,
2155
+ false,
2156
+ null,
2157
+ null,
2158
+ null
2159
+
2160
+ )
2161
+
2162
+ /* harmony default export */ var word = (word_component.exports);
2163
+ // CONCATENATED MODULE: ./node_modules/babel-loader/lib!./node_modules/vue-loader/lib/loaders/templateLoader.js??ref--6!./node_modules/vue-loader/lib??vue-loader-options!./src/components/FilesCard/src/fileSvg/zip.vue?vue&type=template&id=65118298
2164
+ var zipvue_type_template_id_65118298_render = function render() {
2165
+ var _vm = this,
2166
+ _c = _vm._self._c;
2167
+ return _c("svg", {
2168
+ attrs: {
2169
+ xmlns: "http://www.w3.org/2000/svg",
2170
+ "xmlns:xlink": "http://www.w3.org/1999/xlink",
2171
+ fill: "none",
2172
+ version: "1.1",
2173
+ width: "1em",
2174
+ height: "1em",
2175
+ viewBox: "0 0 150 175"
2176
+ }
2177
+ }, [_c("g", [_c("g", [_c("path", {
2178
+ staticStyle: {
2179
+ "mix-blend-mode": "passthrough"
2180
+ },
2181
+ attrs: {
2182
+ d: "M103.622,0L27.5981,0C12.355,0,0,12.3648,0,27.6155L0,147.384C0,162.637,12.357,175,27.5981,175L122.402,175C137.645,175,150,162.635,150,147.384L150,46.405C150,40.1855,147.532,34.2219,143.136,29.8255L120.191,6.86627C115.797,2.46982,109.837,-0.00000447229,103.622,0Z",
2183
+ fill: "currentColor",
2184
+ "fill-opacity": "1"
2185
+ }
2186
+ })]), _vm._v(" "), _c("g", [_c("path", {
2187
+ staticStyle: {
2188
+ "mix-blend-mode": "passthrough"
2189
+ },
2190
+ attrs: {
2191
+ d: "M34.325330513916015,25.79257593970299L48.29132051391602,25.79257593970299C49.82622051391601,25.79257593970299,51.072020513916016,24.545875939702988,51.072020513916016,23.010075939702986L51.072020513916016,9.035265939702988C51.072020513916016,7.497485939702988,49.82622051391601,6.252805939702988,48.29132051391602,6.252805939702988L34.325330513916015,6.252805939702988C32.790480513916016,6.252805939702988,31.544626473216017,7.499445939702988,31.544626473216017,9.035265939702988L31.544626473216017,23.010075939702986C31.544626473216017,24.545875939702988,32.790480513916016,25.79257593970299,34.325330513916015,25.79257593970299ZM67.81882051391602,25.79257593970299L53.85272051391601,25.79257593970299C52.317920513916015,25.79257593970299,51.072020513916016,27.03917593970299,51.072020513916016,28.574975939702988L51.072020513916016,42.549875939702986C51.072020513916016,44.08767593970299,52.317920513916015,45.33227593970299,53.85272051391601,45.33227593970299L67.81882051391602,45.33227593970299C69.35362051391601,45.33227593970299,70.59952051391602,44.08567593970299,70.59952051391602,42.549875939702986L70.59952051391602,28.575075939702987C70.59952051391602,27.03917593970299,69.35362051391601,25.79257593970299,67.81882051391602,25.79257593970299ZM34.325330513916015,64.87207593970298L48.29132051391602,64.87207593970298C49.82622051391601,64.87207593970298,51.072020513916016,63.62547593970299,51.072020513916016,62.08957593970299L51.072020513916016,48.11477593970299C51.072020513916016,46.57697593970299,49.82622051391601,45.33227593970299,48.29132051391602,45.33227593970299L34.325330513916015,45.33227593970299C32.790480513916016,45.33227593970299,31.544626473216017,46.578975939702985,31.544626473216017,48.11477593970299L31.544626473216017,62.08957593970299C31.544626473216017,63.62547593970299,32.790480513916016,64.87207593970298,34.325330513916015,64.87207593970298ZM67.81882051391602,64.87207593970298L53.85272051391601,64.87207593970298C52.317920513916015,64.87207593970298,51.072020513916016,66.11867593970298,51.072020513916016,67.65447593970299L51.072020513916016,81.62937593970298C51.072020513916016,83.16717593970299,52.317920513916015,84.411875939703,53.85272051391601,84.411875939703L67.81882051391602,84.411875939703C69.35362051391601,84.411875939703,70.59952051391602,83.16517593970299,70.59952051391602,81.62937593970298L70.59952051391602,67.65447593970299C70.59952051391602,66.11867593970298,69.35362051391601,64.87207593970298,67.81882051391602,64.87207593970298ZM63.77272051391601,95.19977593970299L37.580550513916016,95.19977593970299C34.24722051391601,95.19977593970299,31.544620513916016,97.90407593970299,31.544620513916016,101.239775939703L31.544620513916016,131.61977593970298C31.544620513916016,134.955775939703,34.24722051391601,137.659775939703,37.580550513916016,137.659775939703L63.77272051391601,137.659775939703C67.10602051391601,137.659775939703,69.80862051391603,134.955775939703,69.80862051391603,131.61977593970298L69.80862051391603,101.239775939703C69.80862051391603,97.90407593970299,67.10602051391601,95.19977593970299,63.77272051391601,95.19977593970299ZM62.810020513916015,127.35977593970298C62.810020513916015,130.040775939703,60.63852051391602,132.213775939703,57.959420513916015,132.213775939703L43.39192051391602,132.213775939703C40.71275051391601,132.213775939703,38.54130051391601,130.040775939703,38.54130051391601,127.35977593970298L38.54130051391601,122.01377593970298C38.54130051391601,119.33377593970299,40.71275051391601,117.16077593970299,43.39192051391602,117.16077593970299L57.959420513916015,117.16077593970299C60.63852051391602,117.16077593970299,62.810020513916015,119.33277593970298,62.810020513916015,122.01377593970298L62.810020513916015,127.35977593970298ZM143.13562051391602,29.825575939702986L120.19142051391601,6.866355939702988C116.89942051391601,3.5725259397029876,112.70152051391601,1.3345199397029877,108.13322051391602,0.43777593970298767L108.13322051391602,26.206775939702986C108.13322051391602,34.388075939702986,114.76082051391602,41.019875939702985,122.93692051391602,41.019875939702985L149.371620513916,41.019875939702985C148.371620513916,36.78157593970299,146.21262051391602,32.905375939702985,143.13562051391602,29.825575939702986Z",
2192
+ fill: "#000000",
2193
+ "fill-opacity": "0.20000000298023224"
2194
+ }
2195
+ })]), _vm._v(" "), _c("g", [_c("path", {
2196
+ staticStyle: {
2197
+ "mix-blend-mode": "passthrough"
2198
+ },
2199
+ attrs: {
2200
+ d: "M34.325330513916015,23.44775087814331L48.29132051391602,23.44775087814331C49.82622051391601,23.44775087814331,51.072020513916016,22.20105087814331,51.072020513916016,20.66525087814331L51.072020513916016,6.690410878143311C51.072020513916016,5.15263087814331,49.82622051391601,3.9079508781433105,48.29132051391602,3.9079508781433105L34.325330513916015,3.9079508781433105C32.790480513916016,3.9079508781433105,31.544626473216017,5.154590878143311,31.544626473216017,6.690410878143311L31.544626473216017,20.66525087814331C31.544626473216017,22.20105087814331,32.790480513916016,23.44775087814331,34.325330513916015,23.44775087814331ZM67.81882051391602,23.44775087814331L53.85272051391601,23.44775087814331C52.317920513916015,23.44775087814331,51.072020513916016,24.69435087814331,51.072020513916016,26.23015087814331L51.072020513916016,40.20505087814331C51.072020513916016,41.74275087814331,52.317920513916015,42.987450878143314,53.85272051391601,42.987450878143314L67.81882051391602,42.987450878143314C69.35362051391601,42.987450878143314,70.59952051391602,41.74085087814331,70.59952051391602,40.20505087814331L70.59952051391602,26.23015087814331C70.59952051391602,24.69435087814331,69.35362051391601,23.44775087814331,67.81882051391602,23.44775087814331ZM34.325330513916015,62.52725087814331L48.29132051391602,62.52725087814331C49.82622051391601,62.52725087814331,51.072020513916016,61.28055087814331,51.072020513916016,59.74475087814331L51.072020513916016,45.76995087814331C51.072020513916016,44.23215087814331,49.82622051391601,42.987450878143314,48.29132051391602,42.987450878143314L34.325330513916015,42.987450878143314C32.790480513916016,42.987450878143314,31.544626473216017,44.23405087814331,31.544626473216017,45.76995087814331L31.544626473216017,59.74475087814331C31.544626473216017,61.28055087814331,32.790480513916016,62.52725087814331,34.325330513916015,62.52725087814331ZM67.81882051391602,62.52725087814331L53.85272051391601,62.52725087814331C52.317920513916015,62.52725087814331,51.072020513916016,63.773850878143314,51.072020513916016,65.30965087814332L51.072020513916016,79.2845508781433C51.072020513916016,80.82235087814331,52.317920513916015,82.06695087814332,53.85272051391601,82.06695087814332L67.81882051391602,82.06695087814332C69.35362051391601,82.06695087814332,70.59952051391602,80.82035087814332,70.59952051391602,79.2845508781433L70.59952051391602,65.30965087814332C70.59952051391602,63.773850878143314,69.35362051391601,62.52725087814331,67.81882051391602,62.52725087814331ZM63.77272051391601,92.85485087814331L37.580550513916016,92.85485087814331C34.24722051391601,92.85485087814331,31.544620513916016,95.55915087814331,31.544620513916016,98.8945508781433L31.544620513916016,129.27495087814333C31.544620513916016,132.6099508781433,34.24722051391601,135.31495087814332,37.580550513916016,135.31495087814332L63.77272051391601,135.31495087814332C67.10602051391601,135.31495087814332,69.80862051391603,132.6099508781433,69.80862051391603,129.27495087814333L69.80862051391603,98.8945508781433C69.80862051391603,95.55915087814331,67.10602051391601,92.85485087814331,63.77272051391601,92.85485087814331ZM62.810020513916015,125.01495087814331C62.810020513916015,127.69595087814331,60.63852051391602,129.86895087814332,57.959420513916015,129.86895087814332L43.39192051391602,129.86895087814332C40.71275051391601,129.86895087814332,38.54130051391601,127.69595087814331,38.54130051391601,125.01495087814331L38.54130051391601,119.6689508781433C38.54130051391601,116.98795087814331,40.71275051391601,114.81595087814331,43.39192051391602,114.81595087814331L57.959420513916015,114.81595087814331C60.63852051391602,114.81595087814331,62.810020513916015,116.98795087814331,62.810020513916015,119.6689508781433L62.810020513916015,125.01495087814331Z",
2201
+ fill: "#FFFFFF",
2202
+ "fill-opacity": "1"
2203
+ }
2204
+ })])])]);
2205
+ };
2206
+ var zipvue_type_template_id_65118298_staticRenderFns = [];
2207
+ zipvue_type_template_id_65118298_render._withStripped = true;
2208
+
2209
+ // CONCATENATED MODULE: ./src/components/FilesCard/src/fileSvg/zip.vue?vue&type=template&id=65118298
2210
+
2211
+ // CONCATENATED MODULE: ./src/components/FilesCard/src/fileSvg/zip.vue
2212
+
2213
+ var zip_script = {}
2214
+
2215
+
2216
+ /* normalize component */
2217
+
2218
+ var zip_component = Object(componentNormalizer["a" /* default */])(
2219
+ zip_script,
2220
+ zipvue_type_template_id_65118298_render,
2221
+ zipvue_type_template_id_65118298_staticRenderFns,
2222
+ false,
2223
+ null,
2224
+ null,
2225
+ null
2226
+
2227
+ )
2228
+
2229
+ /* harmony default export */ var zip = (zip_component.exports);
2230
+ // CONCATENATED MODULE: ./src/components/FilesCard/src/fileSvg/index.js
2231
+
2232
+
2233
+
2234
+
2235
+
2236
+
2237
+
2238
+
2239
+
2240
+
2241
+
2242
+
2243
+
2244
+
2245
+
2246
+
2247
+ /* harmony default export */ var fileSvg = ({
2248
+ // 文档类
2249
+ word: word,
2250
+ excel: excel,
2251
+ ppt: ppt,
2252
+ pdf: pdf,
2253
+ txt: txt,
2254
+ mark: mark,
2255
+ // 图片类
2256
+ image: fileSvg_image,
2257
+ // 音频类
2258
+ audio: audio,
2259
+ // 视频类
2260
+ video: video,
2261
+ // 3D 模型类
2262
+ three: three,
2263
+ // 可执行程序类
2264
+ code: code,
2265
+ // 数据库类
2266
+ database: database,
2267
+ // 链接文件类
2268
+ link: fileSvg_link,
2269
+ // 压缩包类
2270
+ zip: zip,
2271
+ // 通用文件/文件夹类
2272
+ file: file,
2273
+ // 未知文件类
2274
+ unknown: unknown
2275
+ });
2276
+ // CONCATENATED MODULE: ./src/components/FilesCard/src/options.js
2277
+ const colorMap = {
2278
+ word: '#0078D4',
2279
+ excel: '#00C851',
2280
+ ppt: '#FF5722',
2281
+ pdf: '#E53935',
2282
+ txt: '#424242',
2283
+ mark: '#6C6C6C',
2284
+ image: '#FF80AB',
2285
+ audio: '#FF7878',
2286
+ video: '#8B72F7',
2287
+ three: '#29B6F6',
2288
+ code: '#00008B',
2289
+ database: '#FF9800',
2290
+ link: '#2962FF',
2291
+ zip: '#673AB7',
2292
+ file: '#FFC757',
2293
+ unknown: '#6E9DA4'
2294
+ };
2295
+ // CONCATENATED MODULE: ./src/utils/index.js
2296
+ /**
2297
+ * 判断文件类型是否为图片
2298
+ * @param {string} type 文件类型
2299
+ * @returns {boolean} 是否为图片类型
2300
+ */
2301
+ const isImageFileType = type => type.indexOf('image/') === 0;
2302
+ const MEASURE_SIZE = 200;
2303
+
2304
+ /**
2305
+ * 预览图片文件并生成预览URL
2306
+ * @param {File|Blob} file 图片文件对象
2307
+ * @returns {Promise<string>} 返回图片预览URL的Promise
2308
+ */
2309
+ function previewImage(file) {
2310
+ return new Promise(resolve => {
2311
+ // 检查是否在浏览器环境中
2312
+ if (typeof window === 'undefined' || typeof document === 'undefined') {
2313
+ resolve('');
2314
+ return;
2315
+ }
2316
+ if (!file || !file.type || !isImageFileType(file.type)) {
2317
+ resolve('');
2318
+ return;
2319
+ }
2320
+ const img = new Image();
2321
+ img.onload = () => {
2322
+ const {
2323
+ width,
2324
+ height
2325
+ } = img;
2326
+ const ratio = width / height;
2327
+ const MEASURE_SIZE_WIDTH = ratio > 1 ? MEASURE_SIZE : MEASURE_SIZE * ratio;
2328
+ const MEASURE_SIZE_HEIGHT = ratio > 1 ? MEASURE_SIZE / ratio : MEASURE_SIZE;
2329
+ const canvas = document.createElement('canvas');
2330
+ canvas.width = MEASURE_SIZE_WIDTH;
2331
+ canvas.height = MEASURE_SIZE_HEIGHT;
2332
+ canvas.style.cssText = `position: fixed; left: 0; top: 0; width: ${MEASURE_SIZE_WIDTH}px; height: ${MEASURE_SIZE_HEIGHT}px; z-index: 9999; display: none;`;
2333
+ document.body.appendChild(canvas);
2334
+ const ctx = canvas.getContext('2d');
2335
+ ctx.drawImage(img, 0, 0, MEASURE_SIZE_WIDTH, MEASURE_SIZE_HEIGHT);
2336
+ const dataURL = canvas.toDataURL();
2337
+ document.body.removeChild(canvas);
2338
+ window.URL.revokeObjectURL(img.src);
2339
+ resolve(dataURL);
2340
+ };
2341
+ img.crossOrigin = 'anonymous';
2342
+ if (file.type.startsWith('image/svg+xml')) {
2343
+ const reader = new FileReader();
2344
+ reader.onload = () => {
2345
+ if (reader.result && typeof reader.result === 'string') {
2346
+ img.src = reader.result;
2347
+ }
2348
+ };
2349
+ reader.readAsDataURL(file);
2350
+ } else if (file.type.startsWith('image/gif')) {
2351
+ const reader = new FileReader();
2352
+ reader.onload = () => {
2353
+ if (reader.result) {
2354
+ resolve(reader.result);
2355
+ }
2356
+ };
2357
+ reader.readAsDataURL(file);
2358
+ } else {
2359
+ img.src = window.URL.createObjectURL(file);
2360
+ }
2361
+ });
2362
+ }
2363
+
2364
+ /**
2365
+ * 根据文件后缀名获取文件类型
2366
+ * @param {string} fileExtension 文件后缀名
2367
+ * @returns {{lowerCase: string, upperCase: string}} 返回文件类型对象
2368
+ */
2369
+ function getFileType(fileExtension) {
2370
+ // 去除后缀名开头的点,并转换为小写
2371
+ const cleanExtension = fileExtension.replace('.', '').toLowerCase();
2372
+ if (!cleanExtension) {
2373
+ return {
2374
+ lowerCase: 'unknown',
2375
+ upperCase: 'Unknown'
2376
+ };
2377
+ }
2378
+ const imageExtensions = ['png', 'jpg', 'jpeg', 'gif', 'bmp', 'svg', 'webp'];
2379
+ const wordExtensions = ['doc', 'docx'];
2380
+ const excelExtensions = ['xls', 'xlsx'];
2381
+ const pptExtensions = ['ppt', 'pptx'];
2382
+ const audioExtensions = ['mp3', 'wav', 'ogg', 'flac'];
2383
+ const videoExtensions = ['mp4', 'avi', 'mov', 'mkv'];
2384
+ const codeExtensions = ['js', 'ts', 'html', 'css', 'py', 'java', 'c', 'cpp', 'json', 'php'];
2385
+ const databaseExtensions = ['sql', 'db', 'sqlite'];
2386
+ const zipExtensions = ['zip', 'rar', '7z'];
2387
+ const markExtensions = ['md', 'mdx'];
2388
+ if (imageExtensions.includes(cleanExtension)) {
2389
+ return {
2390
+ lowerCase: 'image',
2391
+ upperCase: 'Image'
2392
+ };
2393
+ }
2394
+ if (wordExtensions.includes(cleanExtension)) {
2395
+ return {
2396
+ lowerCase: 'word',
2397
+ upperCase: 'Word'
2398
+ };
2399
+ }
2400
+ if (excelExtensions.includes(cleanExtension)) {
2401
+ return {
2402
+ lowerCase: 'excel',
2403
+ upperCase: 'Excel'
2404
+ };
2405
+ }
2406
+ if (pptExtensions.includes(cleanExtension)) {
2407
+ return {
2408
+ lowerCase: 'ppt',
2409
+ upperCase: 'Ppt'
2410
+ };
2411
+ }
2412
+ if (cleanExtension === 'pdf') {
2413
+ return {
2414
+ lowerCase: 'pdf',
2415
+ upperCase: 'Pdf'
2416
+ };
2417
+ }
2418
+ if (cleanExtension === 'txt') {
2419
+ return {
2420
+ lowerCase: 'txt',
2421
+ upperCase: 'Txt'
2422
+ };
2423
+ }
2424
+ if (markExtensions.includes(cleanExtension)) {
2425
+ return {
2426
+ lowerCase: 'mark',
2427
+ upperCase: 'Markdown'
2428
+ };
2429
+ }
2430
+ if (audioExtensions.includes(cleanExtension)) {
2431
+ return {
2432
+ lowerCase: 'audio',
2433
+ upperCase: 'Audio'
2434
+ };
2435
+ }
2436
+ if (videoExtensions.includes(cleanExtension)) {
2437
+ return {
2438
+ lowerCase: 'video',
2439
+ upperCase: 'Video'
2440
+ };
2441
+ }
2442
+ if (codeExtensions.includes(cleanExtension)) {
2443
+ return {
2444
+ lowerCase: 'code',
2445
+ upperCase: 'Code'
2446
+ };
2447
+ }
2448
+ if (databaseExtensions.includes(cleanExtension)) {
2449
+ return {
2450
+ lowerCase: 'database',
2451
+ upperCase: 'Database'
2452
+ };
2453
+ }
2454
+ if (cleanExtension === 'lnk') {
2455
+ return {
2456
+ lowerCase: 'link',
2457
+ upperCase: 'Link'
2458
+ };
2459
+ }
2460
+ if (zipExtensions.includes(cleanExtension)) {
2461
+ return {
2462
+ lowerCase: 'zip',
2463
+ upperCase: 'Zip'
2464
+ };
2465
+ }
2466
+ if (cleanExtension === 'obj' || cleanExtension === 'fbx' || cleanExtension === 'glb') {
2467
+ return {
2468
+ lowerCase: 'three',
2469
+ upperCase: '3D'
2470
+ };
2471
+ }
2472
+ return {
2473
+ lowerCase: 'file',
2474
+ upperCase: 'File'
2475
+ };
2476
+ }
2477
+
2478
+ /**
2479
+ * 获取文件大小
2480
+ * @param {number} size 文件大小
2481
+ * @returns {string} 返回文件大小
2482
+ */
2483
+ function getSize(size) {
2484
+ let retSize = size;
2485
+ const units = ['B', 'KB', 'MB', 'GB', 'TB', 'PB', 'EB'];
2486
+ let unitIndex = 0;
2487
+ while (retSize >= 1024 && unitIndex < units.length - 1) {
2488
+ retSize /= 1024;
2489
+ unitIndex++;
2490
+ }
2491
+ return `${retSize.toFixed(0)} ${units[unitIndex]}`;
2492
+ }
2493
+ // CONCATENATED MODULE: ./node_modules/babel-loader/lib!./node_modules/vue-loader/lib??vue-loader-options!./src/components/FilesCard/src/main.vue?vue&type=script&lang=js
2494
+
2495
+
2496
+
2497
+ /* harmony default export */ var mainvue_type_script_lang_js = ({
2498
+ name: 'ElXFilesCard',
2499
+ props: {
2500
+ uid: {
2501
+ type: [String, Number],
2502
+ default: undefined
2503
+ },
2504
+ name: {
2505
+ type: String,
2506
+ default: undefined
2507
+ },
2508
+ fileSize: {
2509
+ type: [String, Number],
2510
+ default: undefined
2511
+ },
2512
+ fileType: {
2513
+ type: String,
2514
+ default: undefined
2515
+ },
2516
+ description: {
2517
+ type: String,
2518
+ default: undefined
2519
+ },
2520
+ url: {
2521
+ type: String,
2522
+ default: undefined
2523
+ },
2524
+ thumbUrl: {
2525
+ type: String,
2526
+ default: undefined
2527
+ },
2528
+ imgFile: {
2529
+ type: Object,
2530
+ default: undefined,
2531
+ validator(value) {
2532
+ // 在浏览器环境中验证是否为 File 对象或普通对象
2533
+ if (value === null || value === undefined) return true;
2534
+ if (typeof window !== 'undefined' && window.File) {
2535
+ return value instanceof File || typeof value === 'object' && value !== null;
2536
+ }
2537
+ // 服务端环境只验证是否为对象
2538
+ return typeof value === 'object' && value !== null;
2539
+ }
2540
+ },
2541
+ iconSize: {
2542
+ type: String,
2543
+ default: '42px'
2544
+ },
2545
+ iconColor: {
2546
+ type: String,
2547
+ default: undefined
2548
+ },
2549
+ showDelIcon: {
2550
+ type: Boolean,
2551
+ default: false
2552
+ },
2553
+ maxWidth: {
2554
+ type: String,
2555
+ default: '236px'
2556
+ },
2557
+ styleConfig: {
2558
+ type: Object,
2559
+ default: undefined
2560
+ },
2561
+ hoverStyle: {
2562
+ type: Object,
2563
+ default: undefined
2564
+ },
2565
+ imgVariant: {
2566
+ type: String,
2567
+ default: 'rectangle'
2568
+ },
2569
+ imgPreview: {
2570
+ type: Boolean,
2571
+ default: true
2572
+ },
2573
+ imgPreviewMask: {
2574
+ type: Boolean,
2575
+ default: true
2576
+ },
2577
+ status: {
2578
+ type: String,
2579
+ default: undefined
2580
+ },
2581
+ percent: {
2582
+ type: Number,
2583
+ default: undefined
2584
+ },
2585
+ errorTip: {
2586
+ type: String,
2587
+ default: undefined
2588
+ }
2589
+ },
2590
+ data() {
2591
+ return {
2592
+ namePrefix: '',
2593
+ nameSuffix: '',
2594
+ isHovered: false,
2595
+ imageHovered: false,
2596
+ svgIconMap: fileSvg,
2597
+ colorMap: colorMap,
2598
+ previewImg: undefined
2599
+ };
2600
+ },
2601
+ computed: {
2602
+ propsData() {
2603
+ return {
2604
+ uid: this.uid,
2605
+ name: this.name,
2606
+ fileSize: this.fileSize,
2607
+ fileType: this.fileType,
2608
+ description: this.description,
2609
+ url: this.url,
2610
+ thumbUrl: this.thumbUrl,
2611
+ imgFile: this.imgFile,
2612
+ iconSize: this.iconSize,
2613
+ iconColor: this.iconColor,
2614
+ showDelIcon: this.showDelIcon,
2615
+ maxWidth: this.maxWidth,
2616
+ styleConfig: this.styleConfig,
2617
+ hoverStyle: this.hoverStyle,
2618
+ imgVariant: this.imgVariant,
2619
+ imgPreview: this.imgPreview,
2620
+ imgPreviewMask: this.imgPreviewMask,
2621
+ status: this.status,
2622
+ percent: this.percent,
2623
+ errorTip: this.errorTip
2624
+ };
2625
+ },
2626
+ _fileType() {
2627
+ if (this.fileType) return this.fileType;
2628
+ if (!this.name) return undefined;
2629
+ if (!this.nameSuffix) {
2630
+ return 'unknown';
2631
+ }
2632
+ return getFileType(this.nameSuffix).lowerCase;
2633
+ },
2634
+ _fileTypeUpperCase() {
2635
+ if (this.fileType) return this.fileType;
2636
+ if (!this.name) return '';
2637
+ if (!this.nameSuffix) {
2638
+ return 'Unknown';
2639
+ }
2640
+ return getFileType(this.nameSuffix).upperCase;
2641
+ },
2642
+ _description() {
2643
+ if (this.description) {
2644
+ return this.description;
2645
+ }
2646
+ const typeStr = this._fileTypeUpperCase;
2647
+ const sizeStr = this.fileSize ? `・${getSize(this.fileSize)}` : '';
2648
+ if (this.status === 'uploading') {
2649
+ return `上传中...${`・${this.percent || 0}`}%${sizeStr}`;
2650
+ }
2651
+ if (this.status === 'error') {
2652
+ return this.errorTip || '上传失败';
2653
+ }
2654
+ return `${typeStr}${sizeStr}`;
2655
+ },
2656
+ isImageFile() {
2657
+ return this._fileType === 'image';
2658
+ },
2659
+ isSquareVariant() {
2660
+ return this.imgVariant === 'square';
2661
+ },
2662
+ _previewImgUrl() {
2663
+ if (!this.isImageFile) return undefined;
2664
+ if (this.thumbUrl) return this.thumbUrl;
2665
+ if (this.url) return this.url;
2666
+ return this.previewImg;
2667
+ },
2668
+ _iconSize() {
2669
+ if (this.isSquareVariant && this.isImageFile && !this.iconSize || this.isSquareVariant && this.isImageFile && this.iconSize === '42px') return '64px';
2670
+ return this.iconSize;
2671
+ }
2672
+ },
2673
+ watch: {
2674
+ imgFile: {
2675
+ handler: async function (newFile) {
2676
+ if (newFile) {
2677
+ try {
2678
+ const url = await previewImage(newFile);
2679
+ this.previewImg = url;
2680
+ // this.$set(this, 'previewImg', url)
2681
+ } catch (error) {
2682
+ console.error('Preview failed:', error);
2683
+ this.previewImg = undefined;
2684
+ }
2685
+ } else {
2686
+ this.$set(this, 'previewImg', undefined);
2687
+ this.previewImg = undefined;
2688
+ }
2689
+ },
2690
+ deep: true,
2691
+ immediate: true
2692
+ }
2693
+ },
2694
+ mounted() {
2695
+ this.parseFileName();
2696
+ },
2697
+ methods: {
2698
+ handleDelete() {
2699
+ this.$emit('delete', {
2700
+ ...this.propsData
2701
+ });
2702
+ },
2703
+ handlePreviewAction(type) {
2704
+ if (this.imgPreview && this.$refs.imgRef && this._previewImgUrl && type === 'mask') {
2705
+ console.log(this.$refs.imgRef);
2706
+ this.$refs.imgRef.clickHandler();
2707
+ // this.$refs.imgRef.showPreview()
2708
+ }
2709
+ if (type === 'self') {
2710
+ this.$emit('imagePreview', {
2711
+ ...this.propsData
2712
+ });
2713
+ }
2714
+ },
2715
+ parseFileName() {
2716
+ if (!this.name) {
2717
+ this.namePrefix = '';
2718
+ this.nameSuffix = '';
2719
+ return;
2720
+ }
2721
+ const lastDotIndex = this.name.lastIndexOf('.');
2722
+ if (lastDotIndex === -1) {
2723
+ this.namePrefix = this.name;
2724
+ this.nameSuffix = '';
2725
+ } else {
2726
+ this.namePrefix = this.name.substring(0, lastDotIndex);
2727
+ this.nameSuffix = this.name.substring(lastDotIndex);
2728
+ }
2729
+ }
2730
+ }
2731
+ });
2732
+ // CONCATENATED MODULE: ./src/components/FilesCard/src/main.vue?vue&type=script&lang=js
2733
+ /* harmony default export */ var src_mainvue_type_script_lang_js = (mainvue_type_script_lang_js);
2734
+ // EXTERNAL MODULE: ./node_modules/style-loader/dist/runtime/injectStylesIntoStyleTag.js
2735
+ var injectStylesIntoStyleTag = __webpack_require__(3);
2736
+ var injectStylesIntoStyleTag_default = /*#__PURE__*/__webpack_require__.n(injectStylesIntoStyleTag);
2737
+
2738
+ // 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=4aa1569e&prod&lang=scss&scoped=true
2739
+ var mainvue_type_style_index_0_id_4aa1569e_prod_lang_scss_scoped_true = __webpack_require__(24);
2740
+
2741
+ // 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=4aa1569e&prod&lang=scss&scoped=true
2742
+
2743
+
2744
+
2745
+ var options = {};
2746
+
2747
+ options.insert = "head";
2748
+ options.singleton = false;
2749
+
2750
+ var update = injectStylesIntoStyleTag_default()(mainvue_type_style_index_0_id_4aa1569e_prod_lang_scss_scoped_true["a" /* default */], options);
2751
+
2752
+
2753
+
2754
+ /* harmony default export */ var src_mainvue_type_style_index_0_id_4aa1569e_prod_lang_scss_scoped_true = (mainvue_type_style_index_0_id_4aa1569e_prod_lang_scss_scoped_true["a" /* default */].locals || {});
2755
+ // CONCATENATED MODULE: ./src/components/FilesCard/src/main.vue?vue&type=style&index=0&id=4aa1569e&prod&lang=scss&scoped=true
2756
+
2757
+ // CONCATENATED MODULE: ./src/components/FilesCard/src/main.vue
2758
+
2759
+
2760
+
2761
+
2762
+
2763
+
2764
+ /* normalize component */
2765
+
2766
+ var main_component = Object(componentNormalizer["a" /* default */])(
2767
+ src_mainvue_type_script_lang_js,
2768
+ render,
2769
+ staticRenderFns,
2770
+ false,
2771
+ null,
2772
+ "4aa1569e",
2773
+ null
2774
+
2775
+ )
2776
+
2777
+ /* harmony default export */ var main = (main_component.exports);
2778
+ // CONCATENATED MODULE: ./src/components/FilesCard/index.js
2779
+
2780
+
2781
+ /* istanbul ignore next */
2782
+ main.install = function (Vue) {
2783
+ Vue.component(main.name, main);
2784
+ };
2785
+ /* harmony default export */ var FilesCard = __webpack_exports__["default"] = (main);
2786
+
2787
+ /***/ }),
2788
+
2789
+ /***/ 3:
2790
+ /***/ (function(module, exports, __webpack_require__) {
2791
+
2792
+ "use strict";
2793
+
2794
+
2795
+ var isOldIE = function isOldIE() {
2796
+ var memo;
2797
+ return function memorize() {
2798
+ if (typeof memo === 'undefined') {
2799
+ // Test for IE <= 9 as proposed by Browserhacks
2800
+ // @see http://browserhacks.com/#hack-e71d8692f65334173fee715c222cb805
2801
+ // Tests for existence of standard globals is to allow style-loader
2802
+ // to operate correctly into non-standard environments
2803
+ // @see https://github.com/webpack-contrib/style-loader/issues/177
2804
+ memo = Boolean(window && document && document.all && !window.atob);
2805
+ }
2806
+
2807
+ return memo;
2808
+ };
2809
+ }();
2810
+
2811
+ var getTarget = function getTarget() {
2812
+ var memo = {};
2813
+ return function memorize(target) {
2814
+ if (typeof memo[target] === 'undefined') {
2815
+ var styleTarget = document.querySelector(target); // Special case to return head of iframe instead of iframe itself
2816
+
2817
+ if (window.HTMLIFrameElement && styleTarget instanceof window.HTMLIFrameElement) {
2818
+ try {
2819
+ // This will throw an exception if access to iframe is blocked
2820
+ // due to cross-origin restrictions
2821
+ styleTarget = styleTarget.contentDocument.head;
2822
+ } catch (e) {
2823
+ // istanbul ignore next
2824
+ styleTarget = null;
2825
+ }
2826
+ }
2827
+
2828
+ memo[target] = styleTarget;
2829
+ }
2830
+
2831
+ return memo[target];
2832
+ };
2833
+ }();
2834
+
2835
+ var stylesInDom = [];
2836
+
2837
+ function getIndexByIdentifier(identifier) {
2838
+ var result = -1;
2839
+
2840
+ for (var i = 0; i < stylesInDom.length; i++) {
2841
+ if (stylesInDom[i].identifier === identifier) {
2842
+ result = i;
2843
+ break;
2844
+ }
2845
+ }
2846
+
2847
+ return result;
2848
+ }
2849
+
2850
+ function modulesToDom(list, options) {
2851
+ var idCountMap = {};
2852
+ var identifiers = [];
2853
+
2854
+ for (var i = 0; i < list.length; i++) {
2855
+ var item = list[i];
2856
+ var id = options.base ? item[0] + options.base : item[0];
2857
+ var count = idCountMap[id] || 0;
2858
+ var identifier = "".concat(id, " ").concat(count);
2859
+ idCountMap[id] = count + 1;
2860
+ var index = getIndexByIdentifier(identifier);
2861
+ var obj = {
2862
+ css: item[1],
2863
+ media: item[2],
2864
+ sourceMap: item[3]
2865
+ };
2866
+
2867
+ if (index !== -1) {
2868
+ stylesInDom[index].references++;
2869
+ stylesInDom[index].updater(obj);
2870
+ } else {
2871
+ stylesInDom.push({
2872
+ identifier: identifier,
2873
+ updater: addStyle(obj, options),
2874
+ references: 1
2875
+ });
2876
+ }
2877
+
2878
+ identifiers.push(identifier);
2879
+ }
2880
+
2881
+ return identifiers;
2882
+ }
2883
+
2884
+ function insertStyleElement(options) {
2885
+ var style = document.createElement('style');
2886
+ var attributes = options.attributes || {};
2887
+
2888
+ if (typeof attributes.nonce === 'undefined') {
2889
+ var nonce = true ? __webpack_require__.nc : undefined;
2890
+
2891
+ if (nonce) {
2892
+ attributes.nonce = nonce;
2893
+ }
2894
+ }
2895
+
2896
+ Object.keys(attributes).forEach(function (key) {
2897
+ style.setAttribute(key, attributes[key]);
2898
+ });
2899
+
2900
+ if (typeof options.insert === 'function') {
2901
+ options.insert(style);
2902
+ } else {
2903
+ var target = getTarget(options.insert || 'head');
2904
+
2905
+ if (!target) {
2906
+ throw new Error("Couldn't find a style target. This probably means that the value for the 'insert' parameter is invalid.");
2907
+ }
2908
+
2909
+ target.appendChild(style);
2910
+ }
2911
+
2912
+ return style;
2913
+ }
2914
+
2915
+ function removeStyleElement(style) {
2916
+ // istanbul ignore if
2917
+ if (style.parentNode === null) {
2918
+ return false;
2919
+ }
2920
+
2921
+ style.parentNode.removeChild(style);
2922
+ }
2923
+ /* istanbul ignore next */
2924
+
2925
+
2926
+ var replaceText = function replaceText() {
2927
+ var textStore = [];
2928
+ return function replace(index, replacement) {
2929
+ textStore[index] = replacement;
2930
+ return textStore.filter(Boolean).join('\n');
2931
+ };
2932
+ }();
2933
+
2934
+ function applyToSingletonTag(style, index, remove, obj) {
2935
+ var css = remove ? '' : obj.media ? "@media ".concat(obj.media, " {").concat(obj.css, "}") : obj.css; // For old IE
2936
+
2937
+ /* istanbul ignore if */
2938
+
2939
+ if (style.styleSheet) {
2940
+ style.styleSheet.cssText = replaceText(index, css);
2941
+ } else {
2942
+ var cssNode = document.createTextNode(css);
2943
+ var childNodes = style.childNodes;
2944
+
2945
+ if (childNodes[index]) {
2946
+ style.removeChild(childNodes[index]);
2947
+ }
2948
+
2949
+ if (childNodes.length) {
2950
+ style.insertBefore(cssNode, childNodes[index]);
2951
+ } else {
2952
+ style.appendChild(cssNode);
2953
+ }
2954
+ }
2955
+ }
2956
+
2957
+ function applyToTag(style, options, obj) {
2958
+ var css = obj.css;
2959
+ var media = obj.media;
2960
+ var sourceMap = obj.sourceMap;
2961
+
2962
+ if (media) {
2963
+ style.setAttribute('media', media);
2964
+ } else {
2965
+ style.removeAttribute('media');
2966
+ }
2967
+
2968
+ if (sourceMap && typeof btoa !== 'undefined') {
2969
+ css += "\n/*# sourceMappingURL=data:application/json;base64,".concat(btoa(unescape(encodeURIComponent(JSON.stringify(sourceMap)))), " */");
2970
+ } // For old IE
2971
+
2972
+ /* istanbul ignore if */
2973
+
2974
+
2975
+ if (style.styleSheet) {
2976
+ style.styleSheet.cssText = css;
2977
+ } else {
2978
+ while (style.firstChild) {
2979
+ style.removeChild(style.firstChild);
2980
+ }
2981
+
2982
+ style.appendChild(document.createTextNode(css));
2983
+ }
2984
+ }
2985
+
2986
+ var singleton = null;
2987
+ var singletonCounter = 0;
2988
+
2989
+ function addStyle(obj, options) {
2990
+ var style;
2991
+ var update;
2992
+ var remove;
2993
+
2994
+ if (options.singleton) {
2995
+ var styleIndex = singletonCounter++;
2996
+ style = singleton || (singleton = insertStyleElement(options));
2997
+ update = applyToSingletonTag.bind(null, style, styleIndex, false);
2998
+ remove = applyToSingletonTag.bind(null, style, styleIndex, true);
2999
+ } else {
3000
+ style = insertStyleElement(options);
3001
+ update = applyToTag.bind(null, style, options);
3002
+
3003
+ remove = function remove() {
3004
+ removeStyleElement(style);
3005
+ };
3006
+ }
3007
+
3008
+ update(obj);
3009
+ return function updateStyle(newObj) {
3010
+ if (newObj) {
3011
+ if (newObj.css === obj.css && newObj.media === obj.media && newObj.sourceMap === obj.sourceMap) {
3012
+ return;
3013
+ }
3014
+
3015
+ update(obj = newObj);
3016
+ } else {
3017
+ remove();
3018
+ }
3019
+ };
3020
+ }
3021
+
3022
+ module.exports = function (list, options) {
3023
+ options = options || {}; // Force single-tag solution on IE6-9, which has a hard limit on the # of <style>
3024
+ // tags it will allow on a page
3025
+
3026
+ if (!options.singleton && typeof options.singleton !== 'boolean') {
3027
+ options.singleton = isOldIE();
3028
+ }
3029
+
3030
+ list = list || [];
3031
+ var lastIdentifiers = modulesToDom(list, options);
3032
+ return function update(newList) {
3033
+ newList = newList || [];
3034
+
3035
+ if (Object.prototype.toString.call(newList) !== '[object Array]') {
3036
+ return;
3037
+ }
3038
+
3039
+ for (var i = 0; i < lastIdentifiers.length; i++) {
3040
+ var identifier = lastIdentifiers[i];
3041
+ var index = getIndexByIdentifier(identifier);
3042
+ stylesInDom[index].references--;
3043
+ }
3044
+
3045
+ var newLastIdentifiers = modulesToDom(newList, options);
3046
+
3047
+ for (var _i = 0; _i < lastIdentifiers.length; _i++) {
3048
+ var _identifier = lastIdentifiers[_i];
3049
+
3050
+ var _index = getIndexByIdentifier(_identifier);
3051
+
3052
+ if (stylesInDom[_index].references === 0) {
3053
+ stylesInDom[_index].updater();
3054
+
3055
+ stylesInDom.splice(_index, 1);
3056
+ }
3057
+ }
3058
+
3059
+ lastIdentifiers = newLastIdentifiers;
3060
+ };
3061
+ };
3062
+
3063
+ /***/ }),
3064
+
3065
+ /***/ 85:
3066
+ /***/ (function(module, __webpack_exports__, __webpack_require__) {
3067
+
3068
+ "use strict";
3069
+ /* harmony import */ var _node_modules_css_loader_dist_runtime_api_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(2);
3070
+ /* 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__);
3071
+ // Imports
3072
+
3073
+ var ___CSS_LOADER_EXPORT___ = _node_modules_css_loader_dist_runtime_api_js__WEBPACK_IMPORTED_MODULE_0___default()(function(i){return i[1]});
3074
+ // Module
3075
+ ___CSS_LOADER_EXPORT___.push([module.i, "[data-v-43b239af]:root{--color-primary: #409EFF;--color-success: #67C23A;--color-warning: #E6A23C;--color-danger: #F56C6C;--color-info: #909399}.card-motion-enter-active[data-v-43b239af],.card-motion-move[data-v-43b239af],.card-motion-leave-active[data-v-43b239af]{transition:all .3s ease;opacity:1;transform:translateX(0)}.card-motion-enter[data-v-43b239af],.card-motion-leave-to[data-v-43b239af]{opacity:0;transform:translateX(-100%)}.card-motion-leave-active[data-v-43b239af]{transform:translateX(100%);opacity:0}.el-x-attachments-file-card-wrap[data-v-43b239af]{display:flex;height:100%;align-items:center}.el-x-attachments-upload-placeholder[data-v-43b239af]{display:inline-block;width:fit-content;align-self:center;margin:6px}.el-x-attachments-card[data-v-43b239af]{display:inline-block;vertical-align:top}.el-x-attachments-card-item[data-v-43b239af]{margin:6px}.el-x-attachments-prev-btn[data-v-43b239af],.el-x-attachments-next-btn[data-v-43b239af]{position:absolute;top:50%;transform:translateY(-50%);z-index:10;background-color:rgba(0,0,0,.3);color:#fff;border:none;padding:4px 0px;border-radius:3px;transition:background-color .3s ease}.el-x-attachments-prev-btn[data-v-43b239af]:hover,.el-x-attachments-next-btn[data-v-43b239af]:hover{background-color:rgba(0,0,0,.5)}.el-x-attachments-prev-btn[data-v-43b239af]:active,.el-x-attachments-next-btn[data-v-43b239af]:active{background-color:rgba(0,0,0,.7)}.el-x-attachments-prev-btn[data-v-43b239af]{left:8px;border-top-left-radius:0px;border-bottom-left-radius:0px}.el-x-attachments-next-btn[data-v-43b239af]{right:8px;border-top-right-radius:0px;border-bottom-right-radius:0px}.el-x-attachments-background[data-v-43b239af]{position:absolute;top:0;left:0;right:0;bottom:0;width:100%;pointer-events:none}.el-x-attachments-background-start[data-v-43b239af]{position:absolute;top:0;left:0;bottom:0;width:50px;background:linear-gradient(to right, rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0));z-index:5}.el-x-attachments-background-end[data-v-43b239af]{position:absolute;top:0;right:0;bottom:0;width:50px;background:linear-gradient(to left, rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0));z-index:5}.el-x-attachments-overflow-scrollX[data-v-43b239af]{height:100%;scrollbar-width:none}.el-x-attachments-overflow-scrollX[data-v-43b239af]::-webkit-scrollbar{display:none}.el-x-attachments-overflow-scrollY[data-v-43b239af]{width:100%;height:100%}.el-x-attachments-wrapper[data-v-43b239af]{position:relative;display:block}.el-x-attachments-upload-btn[data-v-43b239af]{display:flex}.el-x-attachments-upload-btn[data-v-43b239af] .el-upload{border:1px dashed #dcdfe6;border-radius:6px;cursor:pointer;position:relative;overflow:hidden;transition:all .3s cubic-bezier(0.645, 0.045, 0.355, 1);box-sizing:border-box;text-align:center}.el-x-attachments-upload-btn[data-v-43b239af] .el-upload:hover{border-color:#409eff}.el-x-attachments-upload-btn[data-v-43b239af] .el-upload:hover .uploader-icon{color:#409eff}.el-x-attachments-upload-btn .uploader-icon[data-v-43b239af]{font-size:28px;color:#8c939d;text-align:center;width:var(--el-x-attachments-upload-icon-size);height:var(--el-x-attachments-upload-icon-size);line-height:var(--el-x-attachments-upload-icon-size)}.el-x-attachments-upload-btn[data-v-43b239af] .el-upload-dragger{padding:0;width:auto !important;height:auto !important;background-color:rgba(0,0,0,0)}.el-x-attachments-upload-btn[data-v-43b239af] .el-upload-dragger:hover .el-icon{color:#409eff}.el-x-attachments-drop-area[data-v-43b239af]{position:absolute !important;top:0 !important;left:0 !important;width:calc(100% - 4px) !important;height:calc(100% - 4px) !important;border-radius:15px !important;border:2px dashed #409eff !important;z-index:9999 !important;display:flex !important;align-items:center !important;justify-content:center !important;flex-direction:column !important;background:rgba(225,225,225,.8) !important;backdrop-filter:blur(4px) !important;animation:dragAreaShow-43b239af .3s ease-in-out !important;pointer-events:none !important}.el-x-attachments-drop-area-icon[data-v-43b239af]{font-size:50px !important;color:#409eff !important;animation:bounce-43b239af 1s infinite alternate !important}.el-x-attachments-drop-area-text[data-v-43b239af]{font-size:16px !important;color:#409eff !important;margin-top:10px !important;text-align:center !important;width:100% !important;max-width:300px !important;font-weight:bold !important}@keyframes dragAreaShow-43b239af{from{opacity:0;transform:scale(0.9)}to{opacity:1;transform:scale(1)}}@keyframes bounce-43b239af{from{transform:translateY(0)}to{transform:translateY(-10px)}}", ""]);
3076
+ // Exports
3077
+ /* harmony default export */ __webpack_exports__["a"] = (___CSS_LOADER_EXPORT___);
3078
+
3079
+
3080
+ /***/ })
3081
+
3082
+ /******/ });