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

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (92) hide show
  1. package/lib/attachments.js +3082 -0
  2. package/lib/bubble-list.js +13840 -0
  3. package/lib/bubble.js +13125 -0
  4. package/lib/components/Attachments/index.js +2 -2
  5. package/lib/components/Bubble/index.js +74 -79
  6. package/lib/components/BubbleList/index.js +75 -80
  7. package/lib/components/Conversations/index.js +6 -6
  8. package/lib/components/FilesCard/index.js +1 -1
  9. package/lib/components/Prompts/index.js +21 -21
  10. package/lib/components/Sender/index.js +4 -4
  11. package/lib/components/Think/index.js +1 -1
  12. package/lib/components/Thinking/index.js +11 -11
  13. package/lib/components/ThoughtChain/index.js +77 -82
  14. package/lib/components/Typewriter/index.js +73 -78
  15. package/lib/components/Welcome/index.js +1 -1
  16. package/lib/conversations.js +18825 -0
  17. package/lib/files-card.js +2471 -0
  18. package/lib/index.common.js +1 -1
  19. package/lib/index.esm.js +1 -1
  20. package/lib/index.js +1463 -1457
  21. package/lib/index.umd.js +1 -1
  22. package/lib/mixins/index.js +2 -2
  23. package/lib/mixins.js +1016 -0
  24. package/lib/prompts.js +832 -0
  25. package/lib/sender.js +1911 -0
  26. package/lib/think.js +799 -0
  27. package/lib/thinking.js +809 -0
  28. package/lib/thought-chain.js +30391 -0
  29. package/lib/typewriter.js +12788 -0
  30. package/lib/welcome.js +755 -0
  31. package/package.json +1 -2
  32. package/src/components/Attachments/index.js +8 -8
  33. package/src/components/Bubble/index.js +6 -6
  34. package/src/components/Bubble/src/main.vue +299 -299
  35. package/src/components/BubbleList/index.js +8 -8
  36. package/src/components/BubbleList/src/loading.vue +75 -75
  37. package/src/components/BubbleList/src/main.vue +466 -466
  38. package/src/components/Conversations/index.js +8 -8
  39. package/src/components/Conversations/src/main.vue +635 -635
  40. package/src/components/FilesCard/index.js +8 -8
  41. package/src/components/FilesCard/src/fileSvg/audio.vue +38 -38
  42. package/src/components/FilesCard/src/fileSvg/code.vue +35 -35
  43. package/src/components/FilesCard/src/fileSvg/database.vue +94 -94
  44. package/src/components/FilesCard/src/fileSvg/excel.vue +38 -38
  45. package/src/components/FilesCard/src/fileSvg/file.vue +40 -40
  46. package/src/components/FilesCard/src/fileSvg/image.vue +40 -40
  47. package/src/components/FilesCard/src/fileSvg/index.js +46 -46
  48. package/src/components/FilesCard/src/fileSvg/link.vue +54 -54
  49. package/src/components/FilesCard/src/fileSvg/mark.vue +38 -38
  50. package/src/components/FilesCard/src/fileSvg/pdf.vue +38 -38
  51. package/src/components/FilesCard/src/fileSvg/ppt.vue +38 -38
  52. package/src/components/FilesCard/src/fileSvg/three.vue +38 -38
  53. package/src/components/FilesCard/src/fileSvg/txt.vue +38 -38
  54. package/src/components/FilesCard/src/fileSvg/unknown.vue +54 -54
  55. package/src/components/FilesCard/src/fileSvg/video.vue +38 -38
  56. package/src/components/FilesCard/src/fileSvg/word.vue +38 -38
  57. package/src/components/FilesCard/src/fileSvg/zip.vue +38 -38
  58. package/src/components/FilesCard/src/options.js +18 -18
  59. package/src/components/Prompts/index.js +8 -8
  60. package/src/components/Prompts/src/main.vue +248 -248
  61. package/src/components/Sender/index.js +8 -8
  62. package/src/components/Sender/src/components/ClearButton.vue +28 -28
  63. package/src/components/Sender/src/components/Loading.vue +53 -53
  64. package/src/components/Sender/src/components/LoadingButton.vue +39 -39
  65. package/src/components/Sender/src/components/SendButton.vue +26 -26
  66. package/src/components/Sender/src/components/SpeechButton.vue +24 -24
  67. package/src/components/Sender/src/components/SpeechLoading.vue +87 -87
  68. package/src/components/Sender/src/components/SpeechLoadingButton.vue +43 -43
  69. package/src/components/Think/index.js +8 -8
  70. package/src/components/Think/src/main.vue +190 -190
  71. package/src/components/Thinking/index.js +8 -8
  72. package/src/components/Thinking/src/main.vue +1 -1
  73. package/src/components/ThoughtChain/index.js +8 -8
  74. package/src/components/ThoughtChain/src/main.vue +293 -293
  75. package/src/components/Typewriter/index.js +8 -8
  76. package/src/components/Welcome/index.js +8 -8
  77. package/src/components/Welcome/src/main.vue +151 -151
  78. package/src/index.js +23 -3
  79. package/src/styles/Attachments.scss +236 -236
  80. package/src/styles/Bubble.scss +157 -157
  81. package/src/styles/BubbleList.scss +148 -148
  82. package/src/styles/Conversations.scss +260 -260
  83. package/src/styles/FilesCard.scss +221 -221
  84. package/src/styles/Prompts.scss +195 -195
  85. package/src/styles/Sender.scss +199 -199
  86. package/src/styles/Think.scss +134 -134
  87. package/src/styles/Thinking.scss +2 -2
  88. package/src/styles/ThoughtChain.scss +113 -113
  89. package/src/styles/Typewriter.scss +66 -66
  90. package/src/styles/button.scss +302 -0
  91. package/src/styles/var.scss +1052 -0
  92. package/src/theme/var.scss +72 -72
@@ -0,0 +1,2471 @@
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 = 26);
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
+ /***/ 2:
196
+ /***/ (function(module, exports, __webpack_require__) {
197
+
198
+ "use strict";
199
+
200
+
201
+ /*
202
+ MIT License http://www.opensource.org/licenses/mit-license.php
203
+ Author Tobias Koppers @sokra
204
+ */
205
+ // css base code, injected by the css-loader
206
+ // eslint-disable-next-line func-names
207
+ module.exports = function (cssWithMappingToString) {
208
+ var list = []; // return the list of modules as css string
209
+
210
+ list.toString = function toString() {
211
+ return this.map(function (item) {
212
+ var content = cssWithMappingToString(item);
213
+
214
+ if (item[2]) {
215
+ return "@media ".concat(item[2], " {").concat(content, "}");
216
+ }
217
+
218
+ return content;
219
+ }).join("");
220
+ }; // import a list of modules into the list
221
+ // eslint-disable-next-line func-names
222
+
223
+
224
+ list.i = function (modules, mediaQuery, dedupe) {
225
+ if (typeof modules === "string") {
226
+ // eslint-disable-next-line no-param-reassign
227
+ modules = [[null, modules, ""]];
228
+ }
229
+
230
+ var alreadyImportedModules = {};
231
+
232
+ if (dedupe) {
233
+ for (var i = 0; i < this.length; i++) {
234
+ // eslint-disable-next-line prefer-destructuring
235
+ var id = this[i][0];
236
+
237
+ if (id != null) {
238
+ alreadyImportedModules[id] = true;
239
+ }
240
+ }
241
+ }
242
+
243
+ for (var _i = 0; _i < modules.length; _i++) {
244
+ var item = [].concat(modules[_i]);
245
+
246
+ if (dedupe && alreadyImportedModules[item[0]]) {
247
+ // eslint-disable-next-line no-continue
248
+ continue;
249
+ }
250
+
251
+ if (mediaQuery) {
252
+ if (!item[2]) {
253
+ item[2] = mediaQuery;
254
+ } else {
255
+ item[2] = "".concat(mediaQuery, " and ").concat(item[2]);
256
+ }
257
+ }
258
+
259
+ list.push(item);
260
+ }
261
+ };
262
+
263
+ return list;
264
+ };
265
+
266
+ /***/ }),
267
+
268
+ /***/ 24:
269
+ /***/ (function(module, __webpack_exports__, __webpack_require__) {
270
+
271
+ "use strict";
272
+ /* harmony import */ var _node_modules_css_loader_dist_runtime_api_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(2);
273
+ /* 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__);
274
+ // Imports
275
+
276
+ var ___CSS_LOADER_EXPORT___ = _node_modules_css_loader_dist_runtime_api_js__WEBPACK_IMPORTED_MODULE_0___default()(function(i){return i[1]});
277
+ // Module
278
+ ___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}", ""]);
279
+ // Exports
280
+ /* harmony default export */ __webpack_exports__["a"] = (___CSS_LOADER_EXPORT___);
281
+
282
+
283
+ /***/ }),
284
+
285
+ /***/ 26:
286
+ /***/ (function(module, __webpack_exports__, __webpack_require__) {
287
+
288
+ "use strict";
289
+ // ESM COMPAT FLAG
290
+ __webpack_require__.r(__webpack_exports__);
291
+
292
+ // 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
293
+ var render = function render() {
294
+ var _vm = this,
295
+ _c = _vm._self._c;
296
+ return _c("div", {
297
+ staticClass: "el-x-filescard",
298
+ class: {
299
+ "el-x-filescard-square": _vm.isSquareVariant && _vm.isImageFile,
300
+ "el-x-filescard-hovered": _vm.isHovered,
301
+ "el-x-filescard-error": _vm.status === "error",
302
+ "el-x-filescard-done": _vm.status === "done",
303
+ "el-x-filescard-uploading": _vm.status === "uploading"
304
+ },
305
+ style: {
306
+ "--elx-files-card-icon-size": `${_vm._iconSize}`,
307
+ "--elx-files-card-max-width": `${_vm.maxWidth}`,
308
+ ..._vm.styleConfig,
309
+ ...(_vm.isHovered && _vm.hoverStyle ? _vm.hoverStyle : {})
310
+ },
311
+ on: {
312
+ mouseenter: function ($event) {
313
+ _vm.isHovered = true;
314
+ },
315
+ mouseleave: function ($event) {
316
+ _vm.isHovered = false;
317
+ }
318
+ }
319
+ }, [_vm.status === "uploading" && !(_vm.isSquareVariant && _vm.isImageFile) ? _c("div", {
320
+ staticClass: "el-x-filescard-progress",
321
+ style: {
322
+ width: `${_vm.percent || 0}%`
323
+ }
324
+ }) : _vm._e(), _vm._v(" "), _vm.$slots.icon || _vm._fileType ? _vm._t("icon", function () {
325
+ return [!_vm.isImageFile ? _c(_vm.svgIconMap[_vm._fileType], {
326
+ tag: "component",
327
+ staticClass: "el-x-filescard-icon",
328
+ attrs: {
329
+ color: _vm.iconColor || _vm.colorMap[_vm._fileType]
330
+ }
331
+ }) : _vm._e(), _vm._v(" "), _vm.isImageFile ? [_c("div", {
332
+ staticClass: "image-preview-container",
333
+ class: {
334
+ "image-preview-container-square": _vm.isSquareVariant && _vm.isImageFile
335
+ },
336
+ on: {
337
+ mouseenter: function ($event) {
338
+ _vm.imageHovered = true;
339
+ },
340
+ mouseleave: function ($event) {
341
+ _vm.imageHovered = false;
342
+ }
343
+ }
344
+ }, [_vm._previewImgUrl ? _c("el-image", {
345
+ ref: "imgRef",
346
+ staticClass: "el-x-filescard-img",
347
+ attrs: {
348
+ src: _vm._previewImgUrl,
349
+ "preview-src-list": _vm.imgPreview ? [_vm._previewImgUrl] : [],
350
+ fit: "cover",
351
+ "show-progress": false,
352
+ "hide-on-click-modal": ""
353
+ },
354
+ on: {
355
+ show: function ($event) {
356
+ return _vm.handlePreviewAction("self");
357
+ }
358
+ }
359
+ }) : _c(_vm.svgIconMap[_vm._fileType], {
360
+ tag: "component",
361
+ staticClass: "el-x-filescard-img",
362
+ attrs: {
363
+ color: _vm.iconColor || _vm.colorMap[_vm._fileType]
364
+ }
365
+ }), _vm._v(" "), _c("transition", {
366
+ attrs: {
367
+ name: "fade"
368
+ }
369
+ }, [_vm.imageHovered && _vm._previewImgUrl && _vm.imgPreviewMask && _vm.imgPreview ? _vm._t("image-preview-actions", function () {
370
+ return [_c("div", {
371
+ staticClass: "preview-mask",
372
+ on: {
373
+ click: function ($event) {
374
+ return _vm.handlePreviewAction("mask");
375
+ }
376
+ }
377
+ }, [_c("i", {
378
+ staticClass: "el-icon-view"
379
+ }), _vm._v(" "), _c("span", [_vm._v("预览")])])];
380
+ }, {
381
+ item: {
382
+ ..._vm.propsData,
383
+ prefix: _vm.namePrefix,
384
+ suffix: _vm.nameSuffix
385
+ }
386
+ }) : _vm._e()], 2), _vm._v(" "), _vm.status === "uploading" && _vm.isSquareVariant ? _c("div", {
387
+ staticClass: "preview-mask-loading"
388
+ }, [_c("el-progress", {
389
+ staticClass: "circle-progress",
390
+ attrs: {
391
+ color: "#fff",
392
+ type: "circle",
393
+ percentage: _vm.percent
394
+ }
395
+ })], 1) : _vm.status === "error" && _vm.isSquareVariant ? _c("div", {
396
+ staticClass: "preview-mask-error"
397
+ }, [_c("span", {
398
+ staticClass: "error-text"
399
+ }, [_vm._v(_vm._s(_vm.errorTip || "上传失败"))])]) : _vm._e()], 1)] : _vm._e()];
400
+ }, {
401
+ item: _vm.propsData
402
+ }) : _vm._e(), _vm._v(" "), (_vm.$slots.content || _vm.name || _vm.description) && !(_vm.isSquareVariant && _vm.isImageFile) ? _vm._t("content", function () {
403
+ return [_c("div", {
404
+ staticClass: "el-x-filescard-content"
405
+ }, [_vm.name ? _c("div", {
406
+ staticClass: "el-x-filescard-name"
407
+ }, [_vm._t("name-prefix", function () {
408
+ return [_c("div", {
409
+ staticClass: "el-x-filescard-name-prefix"
410
+ }, [_vm._v(_vm._s(_vm.namePrefix))])];
411
+ }, {
412
+ item: {
413
+ ..._vm.propsData,
414
+ prefix: _vm.namePrefix,
415
+ suffix: _vm.nameSuffix
416
+ }
417
+ }), _vm._v(" "), _vm._t("name-suffix", function () {
418
+ return [_c("div", {
419
+ staticClass: "el-x-filescard-name-suffix"
420
+ }, [_vm._v(_vm._s(_vm.nameSuffix))])];
421
+ }, {
422
+ item: {
423
+ ..._vm.propsData,
424
+ prefix: _vm.namePrefix,
425
+ suffix: _vm.nameSuffix
426
+ }
427
+ })], 2) : _vm._e(), _vm._v(" "), _vm._t("description", function () {
428
+ return [_c("div", {
429
+ staticClass: "el-x-filescard-description",
430
+ class: {
431
+ "el-x-filescard-description-error": _vm.status === "error",
432
+ "el-x-filescard-description-done": _vm.status === "done",
433
+ "el-x-filescard-description-uploading": _vm.status === "uploading"
434
+ }
435
+ }, [_vm._v("\n " + _vm._s(_vm._description) + "\n ")])];
436
+ }, {
437
+ item: {
438
+ ..._vm.propsData,
439
+ prefix: _vm.namePrefix,
440
+ suffix: _vm.nameSuffix
441
+ }
442
+ })], 2)];
443
+ }, {
444
+ item: _vm.propsData
445
+ }) : _vm._e(), _vm._v(" "), _vm.showDelIcon && _vm.isHovered ? _c("div", {
446
+ staticClass: "el-x-filescard-delete-icon",
447
+ on: {
448
+ click: _vm.handleDelete
449
+ }
450
+ }, [_vm._t("del-icon", function () {
451
+ return [_c("i", {
452
+ staticClass: "el-icon-error"
453
+ })];
454
+ }, {
455
+ item: _vm.propsData
456
+ })], 2) : _vm._e()], 2);
457
+ };
458
+ var staticRenderFns = [];
459
+ render._withStripped = true;
460
+
461
+ // CONCATENATED MODULE: ./src/components/FilesCard/src/main.vue?vue&type=template&id=4aa1569e&scoped=true
462
+
463
+ // 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
464
+ var audiovue_type_template_id_70981d96_render = function render() {
465
+ var _vm = this,
466
+ _c = _vm._self._c;
467
+ return _c("svg", {
468
+ attrs: {
469
+ xmlns: "http://www.w3.org/2000/svg",
470
+ "xmlns:xlink": "http://www.w3.org/1999/xlink",
471
+ fill: "none",
472
+ version: "1.1",
473
+ width: "1em",
474
+ height: "1em",
475
+ viewBox: "0 0 150 175"
476
+ }
477
+ }, [_c("g", [_c("g", [_c("path", {
478
+ staticStyle: {
479
+ "mix-blend-mode": "passthrough"
480
+ },
481
+ attrs: {
482
+ 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",
483
+ fill: "currentColor",
484
+ "fill-opacity": "1"
485
+ }
486
+ })]), _vm._v(" "), _c("g", [_c("path", {
487
+ staticStyle: {
488
+ "mix-blend-mode": "passthrough"
489
+ },
490
+ attrs: {
491
+ 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",
492
+ fill: "#000000",
493
+ "fill-opacity": "0.20000000298023224"
494
+ }
495
+ })]), _vm._v(" "), _c("g", [_c("path", {
496
+ staticStyle: {
497
+ "mix-blend-mode": "passthrough"
498
+ },
499
+ attrs: {
500
+ 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",
501
+ fill: "#FFFFFF",
502
+ "fill-opacity": "1"
503
+ }
504
+ })])])]);
505
+ };
506
+ var audiovue_type_template_id_70981d96_staticRenderFns = [];
507
+ audiovue_type_template_id_70981d96_render._withStripped = true;
508
+
509
+ // CONCATENATED MODULE: ./src/components/FilesCard/src/fileSvg/audio.vue?vue&type=template&id=70981d96
510
+
511
+ // EXTERNAL MODULE: ./node_modules/vue-loader/lib/runtime/componentNormalizer.js
512
+ var componentNormalizer = __webpack_require__(0);
513
+
514
+ // CONCATENATED MODULE: ./src/components/FilesCard/src/fileSvg/audio.vue
515
+
516
+ var script = {}
517
+
518
+
519
+ /* normalize component */
520
+
521
+ var component = Object(componentNormalizer["a" /* default */])(
522
+ script,
523
+ audiovue_type_template_id_70981d96_render,
524
+ audiovue_type_template_id_70981d96_staticRenderFns,
525
+ false,
526
+ null,
527
+ null,
528
+ null
529
+
530
+ )
531
+
532
+ /* harmony default export */ var audio = (component.exports);
533
+ // 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
534
+ var codevue_type_template_id_900b2442_render = function render() {
535
+ var _vm = this,
536
+ _c = _vm._self._c;
537
+ return _c("svg", {
538
+ attrs: {
539
+ xmlns: "http://www.w3.org/2000/svg",
540
+ "xmlns:xlink": "http://www.w3.org/1999/xlink",
541
+ fill: "none",
542
+ version: "1.1",
543
+ width: "1em",
544
+ height: "1em",
545
+ viewBox: "0 0 150 175"
546
+ }
547
+ }, [_c("g", [_c("g", [_c("path", {
548
+ attrs: {
549
+ 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",
550
+ fill: "currentColor",
551
+ "fill-opacity": "1"
552
+ }
553
+ })]), _vm._v(" "), _c("g", [_c("path", {
554
+ attrs: {
555
+ 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",
556
+ fill: "#000000",
557
+ "fill-opacity": "0.20000000298023224"
558
+ }
559
+ })]), _vm._v(" "), _c("g", [_c("path", {
560
+ attrs: {
561
+ 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",
562
+ fill: "#FFFFFF",
563
+ "fill-opacity": "1"
564
+ }
565
+ })])])]);
566
+ };
567
+ var codevue_type_template_id_900b2442_staticRenderFns = [];
568
+ codevue_type_template_id_900b2442_render._withStripped = true;
569
+
570
+ // CONCATENATED MODULE: ./src/components/FilesCard/src/fileSvg/code.vue?vue&type=template&id=900b2442
571
+
572
+ // CONCATENATED MODULE: ./src/components/FilesCard/src/fileSvg/code.vue
573
+
574
+ var code_script = {}
575
+
576
+
577
+ /* normalize component */
578
+
579
+ var code_component = Object(componentNormalizer["a" /* default */])(
580
+ code_script,
581
+ codevue_type_template_id_900b2442_render,
582
+ codevue_type_template_id_900b2442_staticRenderFns,
583
+ false,
584
+ null,
585
+ null,
586
+ null
587
+
588
+ )
589
+
590
+ /* harmony default export */ var code = (code_component.exports);
591
+ // 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
592
+ var databasevue_type_template_id_99dc0ab4_render = function render() {
593
+ var _vm = this,
594
+ _c = _vm._self._c;
595
+ return _c("svg", {
596
+ attrs: {
597
+ xmlns: "http://www.w3.org/2000/svg",
598
+ "xmlns:xlink": "http://www.w3.org/1999/xlink",
599
+ fill: "none",
600
+ version: "1.1",
601
+ width: "1em",
602
+ height: "1em",
603
+ viewBox: "0 0 150 175"
604
+ }
605
+ }, [_c("g", [_c("g", [_c("path", {
606
+ staticStyle: {
607
+ "mix-blend-mode": "passthrough"
608
+ },
609
+ attrs: {
610
+ 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",
611
+ fill: "currentColor",
612
+ "fill-opacity": "1"
613
+ }
614
+ })]), _vm._v(" "), _c("g", [_c("path", {
615
+ staticStyle: {
616
+ "mix-blend-mode": "passthrough"
617
+ },
618
+ attrs: {
619
+ 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",
620
+ fill: "#000000",
621
+ "fill-opacity": "0.20000000298023224"
622
+ }
623
+ })]), _vm._v(" "), _c("g", [_c("path", {
624
+ staticStyle: {
625
+ "mix-blend-mode": "passthrough"
626
+ },
627
+ attrs: {
628
+ 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",
629
+ fill: "#F26C38",
630
+ "fill-opacity": "1"
631
+ }
632
+ })]), _vm._v(" "), _c("g", [_c("path", {
633
+ staticStyle: {
634
+ "mix-blend-mode": "passthrough"
635
+ },
636
+ attrs: {
637
+ 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",
638
+ fill: "#F26C38",
639
+ "fill-opacity": "1"
640
+ }
641
+ })]), _vm._v(" "), _c("g", [_c("path", {
642
+ staticStyle: {
643
+ "mix-blend-mode": "passthrough"
644
+ },
645
+ attrs: {
646
+ 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",
647
+ fill: "#F26C38",
648
+ "fill-opacity": "1"
649
+ }
650
+ })]), _vm._v(" "), _c("g", [_c("path", {
651
+ staticStyle: {
652
+ "mix-blend-mode": "passthrough"
653
+ },
654
+ attrs: {
655
+ 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",
656
+ fill: "#F26C38",
657
+ "fill-opacity": "1"
658
+ }
659
+ })]), _vm._v(" "), _c("g", [_c("path", {
660
+ staticStyle: {
661
+ "mix-blend-mode": "passthrough"
662
+ },
663
+ attrs: {
664
+ 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",
665
+ fill: "#FFFFFF",
666
+ "fill-opacity": "1"
667
+ }
668
+ })]), _vm._v(" "), _c("g", [_c("path", {
669
+ staticStyle: {
670
+ "mix-blend-mode": "passthrough"
671
+ },
672
+ attrs: {
673
+ 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",
674
+ fill: "#FFFFFF",
675
+ "fill-opacity": "1"
676
+ }
677
+ })]), _vm._v(" "), _c("g", [_c("path", {
678
+ staticStyle: {
679
+ "mix-blend-mode": "passthrough"
680
+ },
681
+ attrs: {
682
+ 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",
683
+ fill: "#FFFFFF",
684
+ "fill-opacity": "1"
685
+ }
686
+ })]), _vm._v(" "), _c("g", [_c("path", {
687
+ staticStyle: {
688
+ "mix-blend-mode": "passthrough"
689
+ },
690
+ attrs: {
691
+ 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",
692
+ fill: "#FFFFFF",
693
+ "fill-opacity": "1"
694
+ }
695
+ })])])]);
696
+ };
697
+ var databasevue_type_template_id_99dc0ab4_staticRenderFns = [];
698
+ databasevue_type_template_id_99dc0ab4_render._withStripped = true;
699
+
700
+ // CONCATENATED MODULE: ./src/components/FilesCard/src/fileSvg/database.vue?vue&type=template&id=99dc0ab4
701
+
702
+ // CONCATENATED MODULE: ./src/components/FilesCard/src/fileSvg/database.vue
703
+
704
+ var database_script = {}
705
+
706
+
707
+ /* normalize component */
708
+
709
+ var database_component = Object(componentNormalizer["a" /* default */])(
710
+ database_script,
711
+ databasevue_type_template_id_99dc0ab4_render,
712
+ databasevue_type_template_id_99dc0ab4_staticRenderFns,
713
+ false,
714
+ null,
715
+ null,
716
+ null
717
+
718
+ )
719
+
720
+ /* harmony default export */ var database = (database_component.exports);
721
+ // 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
722
+ var excelvue_type_template_id_fc2a1874_render = function render() {
723
+ var _vm = this,
724
+ _c = _vm._self._c;
725
+ return _c("svg", {
726
+ attrs: {
727
+ xmlns: "http://www.w3.org/2000/svg",
728
+ "xmlns:xlink": "http://www.w3.org/1999/xlink",
729
+ fill: "none",
730
+ version: "1.1",
731
+ width: "1em",
732
+ height: "1em",
733
+ viewBox: "0 0 150 175"
734
+ }
735
+ }, [_c("g", [_c("g", [_c("path", {
736
+ staticStyle: {
737
+ "mix-blend-mode": "passthrough"
738
+ },
739
+ attrs: {
740
+ 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",
741
+ fill: "currentColor",
742
+ "fill-opacity": "1"
743
+ }
744
+ })]), _vm._v(" "), _c("g", [_c("path", {
745
+ staticStyle: {
746
+ "mix-blend-mode": "passthrough"
747
+ },
748
+ attrs: {
749
+ 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",
750
+ fill: "#000000",
751
+ "fill-opacity": "0.20000000298023224"
752
+ }
753
+ })]), _vm._v(" "), _c("g", [_c("path", {
754
+ staticStyle: {
755
+ "mix-blend-mode": "passthrough"
756
+ },
757
+ attrs: {
758
+ 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",
759
+ fill: "#FFFFFF",
760
+ "fill-opacity": "1"
761
+ }
762
+ })])])]);
763
+ };
764
+ var excelvue_type_template_id_fc2a1874_staticRenderFns = [];
765
+ excelvue_type_template_id_fc2a1874_render._withStripped = true;
766
+
767
+ // CONCATENATED MODULE: ./src/components/FilesCard/src/fileSvg/excel.vue?vue&type=template&id=fc2a1874
768
+
769
+ // CONCATENATED MODULE: ./src/components/FilesCard/src/fileSvg/excel.vue
770
+
771
+ var excel_script = {}
772
+
773
+
774
+ /* normalize component */
775
+
776
+ var excel_component = Object(componentNormalizer["a" /* default */])(
777
+ excel_script,
778
+ excelvue_type_template_id_fc2a1874_render,
779
+ excelvue_type_template_id_fc2a1874_staticRenderFns,
780
+ false,
781
+ null,
782
+ null,
783
+ null
784
+
785
+ )
786
+
787
+ /* harmony default export */ var excel = (excel_component.exports);
788
+ // 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
789
+ var filevue_type_template_id_18809ace_render = function render() {
790
+ var _vm = this,
791
+ _c = _vm._self._c;
792
+ return _c("svg", {
793
+ attrs: {
794
+ xmlns: "http://www.w3.org/2000/svg",
795
+ "xmlns:xlink": "http://www.w3.org/1999/xlink",
796
+ fill: "none",
797
+ version: "1.1",
798
+ width: "1em",
799
+ height: "1em",
800
+ viewBox: "0 0 150 175"
801
+ }
802
+ }, [_c("g", [_c("g", [_c("path", {
803
+ staticStyle: {
804
+ "mix-blend-mode": "passthrough"
805
+ },
806
+ attrs: {
807
+ 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",
808
+ fill: "currentColor",
809
+ "fill-opacity": "1"
810
+ }
811
+ })]), _vm._v(" "), _c("g", [_c("path", {
812
+ staticStyle: {
813
+ "mix-blend-mode": "passthrough"
814
+ },
815
+ attrs: {
816
+ 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",
817
+ "fill-rule": "evenodd",
818
+ fill: "#000000",
819
+ "fill-opacity": "0.20000000298023224"
820
+ }
821
+ })]), _vm._v(" "), _c("g", [_c("path", {
822
+ staticStyle: {
823
+ "mix-blend-mode": "passthrough"
824
+ },
825
+ attrs: {
826
+ 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",
827
+ "fill-rule": "evenodd",
828
+ fill: "#FFFFFF",
829
+ "fill-opacity": "1"
830
+ }
831
+ })])])]);
832
+ };
833
+ var filevue_type_template_id_18809ace_staticRenderFns = [];
834
+ filevue_type_template_id_18809ace_render._withStripped = true;
835
+
836
+ // CONCATENATED MODULE: ./src/components/FilesCard/src/fileSvg/file.vue?vue&type=template&id=18809ace
837
+
838
+ // CONCATENATED MODULE: ./src/components/FilesCard/src/fileSvg/file.vue
839
+
840
+ var file_script = {}
841
+
842
+
843
+ /* normalize component */
844
+
845
+ var file_component = Object(componentNormalizer["a" /* default */])(
846
+ file_script,
847
+ filevue_type_template_id_18809ace_render,
848
+ filevue_type_template_id_18809ace_staticRenderFns,
849
+ false,
850
+ null,
851
+ null,
852
+ null
853
+
854
+ )
855
+
856
+ /* harmony default export */ var file = (file_component.exports);
857
+ // 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
858
+ var imagevue_type_template_id_4ecdf3a4_render = function render() {
859
+ var _vm = this,
860
+ _c = _vm._self._c;
861
+ return _c("svg", {
862
+ attrs: {
863
+ xmlns: "http://www.w3.org/2000/svg",
864
+ "xmlns:xlink": "http://www.w3.org/1999/xlink",
865
+ fill: "none",
866
+ version: "1.1",
867
+ width: "1em",
868
+ height: "1em",
869
+ viewBox: "0 0 150 175"
870
+ }
871
+ }, [_c("g", [_c("g", [_c("path", {
872
+ staticStyle: {
873
+ "mix-blend-mode": "passthrough"
874
+ },
875
+ attrs: {
876
+ 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",
877
+ fill: "currentColor",
878
+ "fill-opacity": "1"
879
+ }
880
+ })]), _vm._v(" "), _c("g", [_c("path", {
881
+ staticStyle: {
882
+ "mix-blend-mode": "passthrough"
883
+ },
884
+ attrs: {
885
+ 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",
886
+ "fill-rule": "evenodd",
887
+ fill: "#000000",
888
+ "fill-opacity": "0.20000000298023224"
889
+ }
890
+ })]), _vm._v(" "), _c("g", [_c("path", {
891
+ staticStyle: {
892
+ "mix-blend-mode": "passthrough"
893
+ },
894
+ attrs: {
895
+ 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",
896
+ "fill-rule": "evenodd",
897
+ fill: "#FFFFFF",
898
+ "fill-opacity": "1"
899
+ }
900
+ })])])]);
901
+ };
902
+ var imagevue_type_template_id_4ecdf3a4_staticRenderFns = [];
903
+ imagevue_type_template_id_4ecdf3a4_render._withStripped = true;
904
+
905
+ // CONCATENATED MODULE: ./src/components/FilesCard/src/fileSvg/image.vue?vue&type=template&id=4ecdf3a4
906
+
907
+ // CONCATENATED MODULE: ./src/components/FilesCard/src/fileSvg/image.vue
908
+
909
+ var image_script = {}
910
+
911
+
912
+ /* normalize component */
913
+
914
+ var image_component = Object(componentNormalizer["a" /* default */])(
915
+ image_script,
916
+ imagevue_type_template_id_4ecdf3a4_render,
917
+ imagevue_type_template_id_4ecdf3a4_staticRenderFns,
918
+ false,
919
+ null,
920
+ null,
921
+ null
922
+
923
+ )
924
+
925
+ /* harmony default export */ var fileSvg_image = (image_component.exports);
926
+ // 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
927
+ var linkvue_type_template_id_e4113ea4_render = function render() {
928
+ var _vm = this,
929
+ _c = _vm._self._c;
930
+ return _c("svg", {
931
+ attrs: {
932
+ xmlns: "http://www.w3.org/2000/svg",
933
+ "xmlns:xlink": "http://www.w3.org/1999/xlink",
934
+ fill: "none",
935
+ version: "1.1",
936
+ width: "1em",
937
+ height: "1em",
938
+ viewBox: "0 0 150 175"
939
+ }
940
+ }, [_c("g", [_c("g", [_c("path", {
941
+ staticStyle: {
942
+ "mix-blend-mode": "passthrough"
943
+ },
944
+ attrs: {
945
+ 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",
946
+ fill: "currentColor",
947
+ "fill-opacity": "1"
948
+ }
949
+ })]), _vm._v(" "), _c("g", [_c("path", {
950
+ staticStyle: {
951
+ "mix-blend-mode": "passthrough"
952
+ },
953
+ attrs: {
954
+ 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",
955
+ fill: "#000000",
956
+ "fill-opacity": "0.20000000298023224"
957
+ }
958
+ })]), _vm._v(" "), _c("g", [_c("path", {
959
+ staticStyle: {
960
+ "mix-blend-mode": "passthrough"
961
+ },
962
+ attrs: {
963
+ 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",
964
+ fill: "#29A3D3",
965
+ "fill-opacity": "1"
966
+ }
967
+ })]), _vm._v(" "), _c("g", [_c("path", {
968
+ staticStyle: {
969
+ "mix-blend-mode": "passthrough"
970
+ },
971
+ attrs: {
972
+ 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",
973
+ fill: "#FFFFFF",
974
+ "fill-opacity": "1"
975
+ }
976
+ })]), _vm._v(" "), _c("g", [_c("path", {
977
+ staticStyle: {
978
+ "mix-blend-mode": "passthrough"
979
+ },
980
+ attrs: {
981
+ 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",
982
+ fill: "#FFFFFF",
983
+ "fill-opacity": "1"
984
+ }
985
+ })])])]);
986
+ };
987
+ var linkvue_type_template_id_e4113ea4_staticRenderFns = [];
988
+ linkvue_type_template_id_e4113ea4_render._withStripped = true;
989
+
990
+ // CONCATENATED MODULE: ./src/components/FilesCard/src/fileSvg/link.vue?vue&type=template&id=e4113ea4
991
+
992
+ // CONCATENATED MODULE: ./src/components/FilesCard/src/fileSvg/link.vue
993
+
994
+ var link_script = {}
995
+
996
+
997
+ /* normalize component */
998
+
999
+ var link_component = Object(componentNormalizer["a" /* default */])(
1000
+ link_script,
1001
+ linkvue_type_template_id_e4113ea4_render,
1002
+ linkvue_type_template_id_e4113ea4_staticRenderFns,
1003
+ false,
1004
+ null,
1005
+ null,
1006
+ null
1007
+
1008
+ )
1009
+
1010
+ /* harmony default export */ var fileSvg_link = (link_component.exports);
1011
+ // 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
1012
+ var markvue_type_template_id_46e2c9a8_render = function render() {
1013
+ var _vm = this,
1014
+ _c = _vm._self._c;
1015
+ return _c("svg", {
1016
+ attrs: {
1017
+ xmlns: "http://www.w3.org/2000/svg",
1018
+ "xmlns:xlink": "http://www.w3.org/1999/xlink",
1019
+ fill: "none",
1020
+ version: "1.1",
1021
+ width: "1em",
1022
+ height: "1em",
1023
+ viewBox: "0 0 150 175"
1024
+ }
1025
+ }, [_c("g", [_c("g", [_c("path", {
1026
+ staticStyle: {
1027
+ "mix-blend-mode": "passthrough"
1028
+ },
1029
+ attrs: {
1030
+ 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",
1031
+ fill: "currentColor",
1032
+ "fill-opacity": "1"
1033
+ }
1034
+ })]), _vm._v(" "), _c("g", [_c("path", {
1035
+ staticStyle: {
1036
+ "mix-blend-mode": "passthrough"
1037
+ },
1038
+ attrs: {
1039
+ 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",
1040
+ fill: "#000000",
1041
+ "fill-opacity": "0.20000000298023224"
1042
+ }
1043
+ })]), _vm._v(" "), _c("g", {
1044
+ attrs: {
1045
+ transform: "matrix(1,0,0,-1,0,236)"
1046
+ }
1047
+ }, [_c("path", {
1048
+ staticStyle: {
1049
+ "mix-blend-mode": "passthrough"
1050
+ },
1051
+ attrs: {
1052
+ 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",
1053
+ fill: "#FFFFFF",
1054
+ "fill-opacity": "1"
1055
+ }
1056
+ })])])]);
1057
+ };
1058
+ var markvue_type_template_id_46e2c9a8_staticRenderFns = [];
1059
+ markvue_type_template_id_46e2c9a8_render._withStripped = true;
1060
+
1061
+ // CONCATENATED MODULE: ./src/components/FilesCard/src/fileSvg/mark.vue?vue&type=template&id=46e2c9a8
1062
+
1063
+ // CONCATENATED MODULE: ./src/components/FilesCard/src/fileSvg/mark.vue
1064
+
1065
+ var mark_script = {}
1066
+
1067
+
1068
+ /* normalize component */
1069
+
1070
+ var mark_component = Object(componentNormalizer["a" /* default */])(
1071
+ mark_script,
1072
+ markvue_type_template_id_46e2c9a8_render,
1073
+ markvue_type_template_id_46e2c9a8_staticRenderFns,
1074
+ false,
1075
+ null,
1076
+ null,
1077
+ null
1078
+
1079
+ )
1080
+
1081
+ /* harmony default export */ var mark = (mark_component.exports);
1082
+ // 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
1083
+ var pdfvue_type_template_id_2a5785e0_render = function render() {
1084
+ var _vm = this,
1085
+ _c = _vm._self._c;
1086
+ return _c("svg", {
1087
+ attrs: {
1088
+ xmlns: "http://www.w3.org/2000/svg",
1089
+ "xmlns:xlink": "http://www.w3.org/1999/xlink",
1090
+ fill: "none",
1091
+ version: "1.1",
1092
+ width: "1em",
1093
+ height: "1em",
1094
+ viewBox: "0 0 150 175"
1095
+ }
1096
+ }, [_c("g", [_c("g", [_c("path", {
1097
+ staticStyle: {
1098
+ "mix-blend-mode": "passthrough"
1099
+ },
1100
+ attrs: {
1101
+ 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",
1102
+ fill: "currentColor",
1103
+ "fill-opacity": "1"
1104
+ }
1105
+ })]), _vm._v(" "), _c("g", [_c("path", {
1106
+ staticStyle: {
1107
+ "mix-blend-mode": "passthrough"
1108
+ },
1109
+ attrs: {
1110
+ 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",
1111
+ fill: "#000000",
1112
+ "fill-opacity": "0.20000000298023224"
1113
+ }
1114
+ })]), _vm._v(" "), _c("g", [_c("path", {
1115
+ staticStyle: {
1116
+ "mix-blend-mode": "passthrough"
1117
+ },
1118
+ attrs: {
1119
+ 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",
1120
+ fill: "#FFFFFF",
1121
+ "fill-opacity": "1"
1122
+ }
1123
+ })])])]);
1124
+ };
1125
+ var pdfvue_type_template_id_2a5785e0_staticRenderFns = [];
1126
+ pdfvue_type_template_id_2a5785e0_render._withStripped = true;
1127
+
1128
+ // CONCATENATED MODULE: ./src/components/FilesCard/src/fileSvg/pdf.vue?vue&type=template&id=2a5785e0
1129
+
1130
+ // CONCATENATED MODULE: ./src/components/FilesCard/src/fileSvg/pdf.vue
1131
+
1132
+ var pdf_script = {}
1133
+
1134
+
1135
+ /* normalize component */
1136
+
1137
+ var pdf_component = Object(componentNormalizer["a" /* default */])(
1138
+ pdf_script,
1139
+ pdfvue_type_template_id_2a5785e0_render,
1140
+ pdfvue_type_template_id_2a5785e0_staticRenderFns,
1141
+ false,
1142
+ null,
1143
+ null,
1144
+ null
1145
+
1146
+ )
1147
+
1148
+ /* harmony default export */ var pdf = (pdf_component.exports);
1149
+ // 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
1150
+ var pptvue_type_template_id_3e8773e9_render = function render() {
1151
+ var _vm = this,
1152
+ _c = _vm._self._c;
1153
+ return _c("svg", {
1154
+ attrs: {
1155
+ xmlns: "http://www.w3.org/2000/svg",
1156
+ "xmlns:xlink": "http://www.w3.org/1999/xlink",
1157
+ fill: "none",
1158
+ version: "1.1",
1159
+ width: "1em",
1160
+ height: "1em",
1161
+ viewBox: "0 0 150 175"
1162
+ }
1163
+ }, [_c("g", [_c("g", [_c("path", {
1164
+ staticStyle: {
1165
+ "mix-blend-mode": "passthrough"
1166
+ },
1167
+ attrs: {
1168
+ 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",
1169
+ fill: "currentColor",
1170
+ "fill-opacity": "1"
1171
+ }
1172
+ })]), _vm._v(" "), _c("g", [_c("path", {
1173
+ staticStyle: {
1174
+ "mix-blend-mode": "passthrough"
1175
+ },
1176
+ attrs: {
1177
+ 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",
1178
+ fill: "#000000",
1179
+ "fill-opacity": "0.20000000298023224"
1180
+ }
1181
+ })]), _vm._v(" "), _c("g", [_c("path", {
1182
+ staticStyle: {
1183
+ "mix-blend-mode": "passthrough"
1184
+ },
1185
+ attrs: {
1186
+ 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",
1187
+ fill: "#FFFFFF",
1188
+ "fill-opacity": "1"
1189
+ }
1190
+ })])])]);
1191
+ };
1192
+ var pptvue_type_template_id_3e8773e9_staticRenderFns = [];
1193
+ pptvue_type_template_id_3e8773e9_render._withStripped = true;
1194
+
1195
+ // CONCATENATED MODULE: ./src/components/FilesCard/src/fileSvg/ppt.vue?vue&type=template&id=3e8773e9
1196
+
1197
+ // CONCATENATED MODULE: ./src/components/FilesCard/src/fileSvg/ppt.vue
1198
+
1199
+ var ppt_script = {}
1200
+
1201
+
1202
+ /* normalize component */
1203
+
1204
+ var ppt_component = Object(componentNormalizer["a" /* default */])(
1205
+ ppt_script,
1206
+ pptvue_type_template_id_3e8773e9_render,
1207
+ pptvue_type_template_id_3e8773e9_staticRenderFns,
1208
+ false,
1209
+ null,
1210
+ null,
1211
+ null
1212
+
1213
+ )
1214
+
1215
+ /* harmony default export */ var ppt = (ppt_component.exports);
1216
+ // 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
1217
+ var threevue_type_template_id_318c7d20_render = function render() {
1218
+ var _vm = this,
1219
+ _c = _vm._self._c;
1220
+ return _c("svg", {
1221
+ attrs: {
1222
+ xmlns: "http://www.w3.org/2000/svg",
1223
+ "xmlns:xlink": "http://www.w3.org/1999/xlink",
1224
+ fill: "none",
1225
+ version: "1.1",
1226
+ width: "1em",
1227
+ height: "1em",
1228
+ viewBox: "0 0 150 175"
1229
+ }
1230
+ }, [_c("g", [_c("g", [_c("path", {
1231
+ staticStyle: {
1232
+ "mix-blend-mode": "passthrough"
1233
+ },
1234
+ attrs: {
1235
+ 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",
1236
+ fill: "currentColor",
1237
+ "fill-opacity": "1"
1238
+ }
1239
+ })]), _vm._v(" "), _c("g", [_c("path", {
1240
+ staticStyle: {
1241
+ "mix-blend-mode": "passthrough"
1242
+ },
1243
+ attrs: {
1244
+ 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",
1245
+ fill: "#000000",
1246
+ "fill-opacity": "0.20000000298023224"
1247
+ }
1248
+ })]), _vm._v(" "), _c("g", [_c("path", {
1249
+ staticStyle: {
1250
+ "mix-blend-mode": "passthrough"
1251
+ },
1252
+ attrs: {
1253
+ 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",
1254
+ fill: "#FFFFFF",
1255
+ "fill-opacity": "1"
1256
+ }
1257
+ })])])]);
1258
+ };
1259
+ var threevue_type_template_id_318c7d20_staticRenderFns = [];
1260
+ threevue_type_template_id_318c7d20_render._withStripped = true;
1261
+
1262
+ // CONCATENATED MODULE: ./src/components/FilesCard/src/fileSvg/three.vue?vue&type=template&id=318c7d20
1263
+
1264
+ // CONCATENATED MODULE: ./src/components/FilesCard/src/fileSvg/three.vue
1265
+
1266
+ var three_script = {}
1267
+
1268
+
1269
+ /* normalize component */
1270
+
1271
+ var three_component = Object(componentNormalizer["a" /* default */])(
1272
+ three_script,
1273
+ threevue_type_template_id_318c7d20_render,
1274
+ threevue_type_template_id_318c7d20_staticRenderFns,
1275
+ false,
1276
+ null,
1277
+ null,
1278
+ null
1279
+
1280
+ )
1281
+
1282
+ /* harmony default export */ var three = (three_component.exports);
1283
+ // 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
1284
+ var txtvue_type_template_id_100a4af8_render = function render() {
1285
+ var _vm = this,
1286
+ _c = _vm._self._c;
1287
+ return _c("svg", {
1288
+ attrs: {
1289
+ xmlns: "http://www.w3.org/2000/svg",
1290
+ "xmlns:xlink": "http://www.w3.org/1999/xlink",
1291
+ fill: "none",
1292
+ version: "1.1",
1293
+ width: "1em",
1294
+ height: "1em",
1295
+ viewBox: "0 0 150 175"
1296
+ }
1297
+ }, [_c("g", [_c("g", [_c("path", {
1298
+ staticStyle: {
1299
+ "mix-blend-mode": "passthrough"
1300
+ },
1301
+ attrs: {
1302
+ 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",
1303
+ fill: "currentColor",
1304
+ "fill-opacity": "1"
1305
+ }
1306
+ })]), _vm._v(" "), _c("g", [_c("path", {
1307
+ staticStyle: {
1308
+ "mix-blend-mode": "passthrough"
1309
+ },
1310
+ attrs: {
1311
+ 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",
1312
+ fill: "#000000",
1313
+ "fill-opacity": "0.20000000298023224"
1314
+ }
1315
+ })]), _vm._v(" "), _c("g", [_c("path", {
1316
+ staticStyle: {
1317
+ "mix-blend-mode": "passthrough"
1318
+ },
1319
+ attrs: {
1320
+ 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",
1321
+ fill: "#FFFFFF",
1322
+ "fill-opacity": "1"
1323
+ }
1324
+ })])])]);
1325
+ };
1326
+ var txtvue_type_template_id_100a4af8_staticRenderFns = [];
1327
+ txtvue_type_template_id_100a4af8_render._withStripped = true;
1328
+
1329
+ // CONCATENATED MODULE: ./src/components/FilesCard/src/fileSvg/txt.vue?vue&type=template&id=100a4af8
1330
+
1331
+ // CONCATENATED MODULE: ./src/components/FilesCard/src/fileSvg/txt.vue
1332
+
1333
+ var txt_script = {}
1334
+
1335
+
1336
+ /* normalize component */
1337
+
1338
+ var txt_component = Object(componentNormalizer["a" /* default */])(
1339
+ txt_script,
1340
+ txtvue_type_template_id_100a4af8_render,
1341
+ txtvue_type_template_id_100a4af8_staticRenderFns,
1342
+ false,
1343
+ null,
1344
+ null,
1345
+ null
1346
+
1347
+ )
1348
+
1349
+ /* harmony default export */ var txt = (txt_component.exports);
1350
+ // 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
1351
+ var unknownvue_type_template_id_54eeafc0_render = function render() {
1352
+ var _vm = this,
1353
+ _c = _vm._self._c;
1354
+ return _c("svg", {
1355
+ attrs: {
1356
+ xmlns: "http://www.w3.org/2000/svg",
1357
+ "xmlns:xlink": "http://www.w3.org/1999/xlink",
1358
+ fill: "none",
1359
+ version: "1.1",
1360
+ width: "1em",
1361
+ height: "1em",
1362
+ viewBox: "0 0 150 175"
1363
+ }
1364
+ }, [_c("g", [_c("g", [_c("path", {
1365
+ staticStyle: {
1366
+ "mix-blend-mode": "passthrough"
1367
+ },
1368
+ attrs: {
1369
+ 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",
1370
+ fill: "currentColor",
1371
+ "fill-opacity": "1"
1372
+ }
1373
+ })]), _vm._v(" "), _c("g", [_c("path", {
1374
+ staticStyle: {
1375
+ "mix-blend-mode": "passthrough"
1376
+ },
1377
+ attrs: {
1378
+ 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",
1379
+ fill: "#000000",
1380
+ "fill-opacity": "0.20000000298023224"
1381
+ }
1382
+ })]), _vm._v(" "), _c("g", [_c("path", {
1383
+ staticStyle: {
1384
+ "mix-blend-mode": "passthrough"
1385
+ },
1386
+ attrs: {
1387
+ 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",
1388
+ fill: "#9DC0C9",
1389
+ "fill-opacity": "1"
1390
+ }
1391
+ })]), _vm._v(" "), _c("g", [_c("path", {
1392
+ staticStyle: {
1393
+ "mix-blend-mode": "passthrough"
1394
+ },
1395
+ attrs: {
1396
+ 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",
1397
+ fill: "#FFFFFF",
1398
+ "fill-opacity": "1"
1399
+ }
1400
+ })]), _vm._v(" "), _c("g", [_c("path", {
1401
+ staticStyle: {
1402
+ "mix-blend-mode": "passthrough"
1403
+ },
1404
+ attrs: {
1405
+ 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",
1406
+ fill: "#FFFFFF",
1407
+ "fill-opacity": "1"
1408
+ }
1409
+ })])])]);
1410
+ };
1411
+ var unknownvue_type_template_id_54eeafc0_staticRenderFns = [];
1412
+ unknownvue_type_template_id_54eeafc0_render._withStripped = true;
1413
+
1414
+ // CONCATENATED MODULE: ./src/components/FilesCard/src/fileSvg/unknown.vue?vue&type=template&id=54eeafc0
1415
+
1416
+ // CONCATENATED MODULE: ./src/components/FilesCard/src/fileSvg/unknown.vue
1417
+
1418
+ var unknown_script = {}
1419
+
1420
+
1421
+ /* normalize component */
1422
+
1423
+ var unknown_component = Object(componentNormalizer["a" /* default */])(
1424
+ unknown_script,
1425
+ unknownvue_type_template_id_54eeafc0_render,
1426
+ unknownvue_type_template_id_54eeafc0_staticRenderFns,
1427
+ false,
1428
+ null,
1429
+ null,
1430
+ null
1431
+
1432
+ )
1433
+
1434
+ /* harmony default export */ var unknown = (unknown_component.exports);
1435
+ // 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
1436
+ var videovue_type_template_id_ab745446_render = function render() {
1437
+ var _vm = this,
1438
+ _c = _vm._self._c;
1439
+ return _c("svg", {
1440
+ attrs: {
1441
+ xmlns: "http://www.w3.org/2000/svg",
1442
+ "xmlns:xlink": "http://www.w3.org/1999/xlink",
1443
+ fill: "none",
1444
+ version: "1.1",
1445
+ width: "1em",
1446
+ height: "1em",
1447
+ viewBox: "0 0 150 175"
1448
+ }
1449
+ }, [_c("g", [_c("g", [_c("path", {
1450
+ staticStyle: {
1451
+ "mix-blend-mode": "passthrough"
1452
+ },
1453
+ attrs: {
1454
+ 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",
1455
+ fill: "currentColor",
1456
+ "fill-opacity": "1"
1457
+ }
1458
+ })]), _vm._v(" "), _c("g", [_c("path", {
1459
+ staticStyle: {
1460
+ "mix-blend-mode": "passthrough"
1461
+ },
1462
+ attrs: {
1463
+ 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",
1464
+ fill: "#000000",
1465
+ "fill-opacity": "0.20000000298023224"
1466
+ }
1467
+ })]), _vm._v(" "), _c("g", [_c("path", {
1468
+ staticStyle: {
1469
+ "mix-blend-mode": "passthrough"
1470
+ },
1471
+ attrs: {
1472
+ 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",
1473
+ fill: "#FFFFFF",
1474
+ "fill-opacity": "1"
1475
+ }
1476
+ })])])]);
1477
+ };
1478
+ var videovue_type_template_id_ab745446_staticRenderFns = [];
1479
+ videovue_type_template_id_ab745446_render._withStripped = true;
1480
+
1481
+ // CONCATENATED MODULE: ./src/components/FilesCard/src/fileSvg/video.vue?vue&type=template&id=ab745446
1482
+
1483
+ // CONCATENATED MODULE: ./src/components/FilesCard/src/fileSvg/video.vue
1484
+
1485
+ var video_script = {}
1486
+
1487
+
1488
+ /* normalize component */
1489
+
1490
+ var video_component = Object(componentNormalizer["a" /* default */])(
1491
+ video_script,
1492
+ videovue_type_template_id_ab745446_render,
1493
+ videovue_type_template_id_ab745446_staticRenderFns,
1494
+ false,
1495
+ null,
1496
+ null,
1497
+ null
1498
+
1499
+ )
1500
+
1501
+ /* harmony default export */ var video = (video_component.exports);
1502
+ // 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
1503
+ var wordvue_type_template_id_13329af3_render = function render() {
1504
+ var _vm = this,
1505
+ _c = _vm._self._c;
1506
+ return _c("svg", {
1507
+ attrs: {
1508
+ xmlns: "http://www.w3.org/2000/svg",
1509
+ "xmlns:xlink": "http://www.w3.org/1999/xlink",
1510
+ fill: "none",
1511
+ version: "1.1",
1512
+ width: "1em",
1513
+ height: "1em",
1514
+ viewBox: "0 0 150 175"
1515
+ }
1516
+ }, [_c("g", [_c("g", [_c("path", {
1517
+ staticStyle: {
1518
+ "mix-blend-mode": "passthrough"
1519
+ },
1520
+ attrs: {
1521
+ 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",
1522
+ fill: "currentColor",
1523
+ "fill-opacity": "1"
1524
+ }
1525
+ })]), _vm._v(" "), _c("g", [_c("path", {
1526
+ staticStyle: {
1527
+ "mix-blend-mode": "passthrough"
1528
+ },
1529
+ attrs: {
1530
+ 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",
1531
+ fill: "#000000",
1532
+ "fill-opacity": "0.20000000298023224"
1533
+ }
1534
+ })]), _vm._v(" "), _c("g", [_c("path", {
1535
+ staticStyle: {
1536
+ "mix-blend-mode": "passthrough"
1537
+ },
1538
+ attrs: {
1539
+ 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",
1540
+ fill: "#FFFFFF",
1541
+ "fill-opacity": "1"
1542
+ }
1543
+ })])])]);
1544
+ };
1545
+ var wordvue_type_template_id_13329af3_staticRenderFns = [];
1546
+ wordvue_type_template_id_13329af3_render._withStripped = true;
1547
+
1548
+ // CONCATENATED MODULE: ./src/components/FilesCard/src/fileSvg/word.vue?vue&type=template&id=13329af3
1549
+
1550
+ // CONCATENATED MODULE: ./src/components/FilesCard/src/fileSvg/word.vue
1551
+
1552
+ var word_script = {}
1553
+
1554
+
1555
+ /* normalize component */
1556
+
1557
+ var word_component = Object(componentNormalizer["a" /* default */])(
1558
+ word_script,
1559
+ wordvue_type_template_id_13329af3_render,
1560
+ wordvue_type_template_id_13329af3_staticRenderFns,
1561
+ false,
1562
+ null,
1563
+ null,
1564
+ null
1565
+
1566
+ )
1567
+
1568
+ /* harmony default export */ var word = (word_component.exports);
1569
+ // 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
1570
+ var zipvue_type_template_id_65118298_render = function render() {
1571
+ var _vm = this,
1572
+ _c = _vm._self._c;
1573
+ return _c("svg", {
1574
+ attrs: {
1575
+ xmlns: "http://www.w3.org/2000/svg",
1576
+ "xmlns:xlink": "http://www.w3.org/1999/xlink",
1577
+ fill: "none",
1578
+ version: "1.1",
1579
+ width: "1em",
1580
+ height: "1em",
1581
+ viewBox: "0 0 150 175"
1582
+ }
1583
+ }, [_c("g", [_c("g", [_c("path", {
1584
+ staticStyle: {
1585
+ "mix-blend-mode": "passthrough"
1586
+ },
1587
+ attrs: {
1588
+ 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",
1589
+ fill: "currentColor",
1590
+ "fill-opacity": "1"
1591
+ }
1592
+ })]), _vm._v(" "), _c("g", [_c("path", {
1593
+ staticStyle: {
1594
+ "mix-blend-mode": "passthrough"
1595
+ },
1596
+ attrs: {
1597
+ 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",
1598
+ fill: "#000000",
1599
+ "fill-opacity": "0.20000000298023224"
1600
+ }
1601
+ })]), _vm._v(" "), _c("g", [_c("path", {
1602
+ staticStyle: {
1603
+ "mix-blend-mode": "passthrough"
1604
+ },
1605
+ attrs: {
1606
+ 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",
1607
+ fill: "#FFFFFF",
1608
+ "fill-opacity": "1"
1609
+ }
1610
+ })])])]);
1611
+ };
1612
+ var zipvue_type_template_id_65118298_staticRenderFns = [];
1613
+ zipvue_type_template_id_65118298_render._withStripped = true;
1614
+
1615
+ // CONCATENATED MODULE: ./src/components/FilesCard/src/fileSvg/zip.vue?vue&type=template&id=65118298
1616
+
1617
+ // CONCATENATED MODULE: ./src/components/FilesCard/src/fileSvg/zip.vue
1618
+
1619
+ var zip_script = {}
1620
+
1621
+
1622
+ /* normalize component */
1623
+
1624
+ var zip_component = Object(componentNormalizer["a" /* default */])(
1625
+ zip_script,
1626
+ zipvue_type_template_id_65118298_render,
1627
+ zipvue_type_template_id_65118298_staticRenderFns,
1628
+ false,
1629
+ null,
1630
+ null,
1631
+ null
1632
+
1633
+ )
1634
+
1635
+ /* harmony default export */ var zip = (zip_component.exports);
1636
+ // CONCATENATED MODULE: ./src/components/FilesCard/src/fileSvg/index.js
1637
+
1638
+
1639
+
1640
+
1641
+
1642
+
1643
+
1644
+
1645
+
1646
+
1647
+
1648
+
1649
+
1650
+
1651
+
1652
+
1653
+ /* harmony default export */ var fileSvg = ({
1654
+ // 文档类
1655
+ word: word,
1656
+ excel: excel,
1657
+ ppt: ppt,
1658
+ pdf: pdf,
1659
+ txt: txt,
1660
+ mark: mark,
1661
+ // 图片类
1662
+ image: fileSvg_image,
1663
+ // 音频类
1664
+ audio: audio,
1665
+ // 视频类
1666
+ video: video,
1667
+ // 3D 模型类
1668
+ three: three,
1669
+ // 可执行程序类
1670
+ code: code,
1671
+ // 数据库类
1672
+ database: database,
1673
+ // 链接文件类
1674
+ link: fileSvg_link,
1675
+ // 压缩包类
1676
+ zip: zip,
1677
+ // 通用文件/文件夹类
1678
+ file: file,
1679
+ // 未知文件类
1680
+ unknown: unknown
1681
+ });
1682
+ // CONCATENATED MODULE: ./src/components/FilesCard/src/options.js
1683
+ const colorMap = {
1684
+ word: '#0078D4',
1685
+ excel: '#00C851',
1686
+ ppt: '#FF5722',
1687
+ pdf: '#E53935',
1688
+ txt: '#424242',
1689
+ mark: '#6C6C6C',
1690
+ image: '#FF80AB',
1691
+ audio: '#FF7878',
1692
+ video: '#8B72F7',
1693
+ three: '#29B6F6',
1694
+ code: '#00008B',
1695
+ database: '#FF9800',
1696
+ link: '#2962FF',
1697
+ zip: '#673AB7',
1698
+ file: '#FFC757',
1699
+ unknown: '#6E9DA4'
1700
+ };
1701
+ // CONCATENATED MODULE: ./src/utils/index.js
1702
+ /**
1703
+ * 判断文件类型是否为图片
1704
+ * @param {string} type 文件类型
1705
+ * @returns {boolean} 是否为图片类型
1706
+ */
1707
+ const isImageFileType = type => type.indexOf('image/') === 0;
1708
+ const MEASURE_SIZE = 200;
1709
+
1710
+ /**
1711
+ * 预览图片文件并生成预览URL
1712
+ * @param {File|Blob} file 图片文件对象
1713
+ * @returns {Promise<string>} 返回图片预览URL的Promise
1714
+ */
1715
+ function previewImage(file) {
1716
+ return new Promise(resolve => {
1717
+ // 检查是否在浏览器环境中
1718
+ if (typeof window === 'undefined' || typeof document === 'undefined') {
1719
+ resolve('');
1720
+ return;
1721
+ }
1722
+ if (!file || !file.type || !isImageFileType(file.type)) {
1723
+ resolve('');
1724
+ return;
1725
+ }
1726
+ const img = new Image();
1727
+ img.onload = () => {
1728
+ const {
1729
+ width,
1730
+ height
1731
+ } = img;
1732
+ const ratio = width / height;
1733
+ const MEASURE_SIZE_WIDTH = ratio > 1 ? MEASURE_SIZE : MEASURE_SIZE * ratio;
1734
+ const MEASURE_SIZE_HEIGHT = ratio > 1 ? MEASURE_SIZE / ratio : MEASURE_SIZE;
1735
+ const canvas = document.createElement('canvas');
1736
+ canvas.width = MEASURE_SIZE_WIDTH;
1737
+ canvas.height = MEASURE_SIZE_HEIGHT;
1738
+ canvas.style.cssText = `position: fixed; left: 0; top: 0; width: ${MEASURE_SIZE_WIDTH}px; height: ${MEASURE_SIZE_HEIGHT}px; z-index: 9999; display: none;`;
1739
+ document.body.appendChild(canvas);
1740
+ const ctx = canvas.getContext('2d');
1741
+ ctx.drawImage(img, 0, 0, MEASURE_SIZE_WIDTH, MEASURE_SIZE_HEIGHT);
1742
+ const dataURL = canvas.toDataURL();
1743
+ document.body.removeChild(canvas);
1744
+ window.URL.revokeObjectURL(img.src);
1745
+ resolve(dataURL);
1746
+ };
1747
+ img.crossOrigin = 'anonymous';
1748
+ if (file.type.startsWith('image/svg+xml')) {
1749
+ const reader = new FileReader();
1750
+ reader.onload = () => {
1751
+ if (reader.result && typeof reader.result === 'string') {
1752
+ img.src = reader.result;
1753
+ }
1754
+ };
1755
+ reader.readAsDataURL(file);
1756
+ } else if (file.type.startsWith('image/gif')) {
1757
+ const reader = new FileReader();
1758
+ reader.onload = () => {
1759
+ if (reader.result) {
1760
+ resolve(reader.result);
1761
+ }
1762
+ };
1763
+ reader.readAsDataURL(file);
1764
+ } else {
1765
+ img.src = window.URL.createObjectURL(file);
1766
+ }
1767
+ });
1768
+ }
1769
+
1770
+ /**
1771
+ * 根据文件后缀名获取文件类型
1772
+ * @param {string} fileExtension 文件后缀名
1773
+ * @returns {{lowerCase: string, upperCase: string}} 返回文件类型对象
1774
+ */
1775
+ function getFileType(fileExtension) {
1776
+ // 去除后缀名开头的点,并转换为小写
1777
+ const cleanExtension = fileExtension.replace('.', '').toLowerCase();
1778
+ if (!cleanExtension) {
1779
+ return {
1780
+ lowerCase: 'unknown',
1781
+ upperCase: 'Unknown'
1782
+ };
1783
+ }
1784
+ const imageExtensions = ['png', 'jpg', 'jpeg', 'gif', 'bmp', 'svg', 'webp'];
1785
+ const wordExtensions = ['doc', 'docx'];
1786
+ const excelExtensions = ['xls', 'xlsx'];
1787
+ const pptExtensions = ['ppt', 'pptx'];
1788
+ const audioExtensions = ['mp3', 'wav', 'ogg', 'flac'];
1789
+ const videoExtensions = ['mp4', 'avi', 'mov', 'mkv'];
1790
+ const codeExtensions = ['js', 'ts', 'html', 'css', 'py', 'java', 'c', 'cpp', 'json', 'php'];
1791
+ const databaseExtensions = ['sql', 'db', 'sqlite'];
1792
+ const zipExtensions = ['zip', 'rar', '7z'];
1793
+ const markExtensions = ['md', 'mdx'];
1794
+ if (imageExtensions.includes(cleanExtension)) {
1795
+ return {
1796
+ lowerCase: 'image',
1797
+ upperCase: 'Image'
1798
+ };
1799
+ }
1800
+ if (wordExtensions.includes(cleanExtension)) {
1801
+ return {
1802
+ lowerCase: 'word',
1803
+ upperCase: 'Word'
1804
+ };
1805
+ }
1806
+ if (excelExtensions.includes(cleanExtension)) {
1807
+ return {
1808
+ lowerCase: 'excel',
1809
+ upperCase: 'Excel'
1810
+ };
1811
+ }
1812
+ if (pptExtensions.includes(cleanExtension)) {
1813
+ return {
1814
+ lowerCase: 'ppt',
1815
+ upperCase: 'Ppt'
1816
+ };
1817
+ }
1818
+ if (cleanExtension === 'pdf') {
1819
+ return {
1820
+ lowerCase: 'pdf',
1821
+ upperCase: 'Pdf'
1822
+ };
1823
+ }
1824
+ if (cleanExtension === 'txt') {
1825
+ return {
1826
+ lowerCase: 'txt',
1827
+ upperCase: 'Txt'
1828
+ };
1829
+ }
1830
+ if (markExtensions.includes(cleanExtension)) {
1831
+ return {
1832
+ lowerCase: 'mark',
1833
+ upperCase: 'Markdown'
1834
+ };
1835
+ }
1836
+ if (audioExtensions.includes(cleanExtension)) {
1837
+ return {
1838
+ lowerCase: 'audio',
1839
+ upperCase: 'Audio'
1840
+ };
1841
+ }
1842
+ if (videoExtensions.includes(cleanExtension)) {
1843
+ return {
1844
+ lowerCase: 'video',
1845
+ upperCase: 'Video'
1846
+ };
1847
+ }
1848
+ if (codeExtensions.includes(cleanExtension)) {
1849
+ return {
1850
+ lowerCase: 'code',
1851
+ upperCase: 'Code'
1852
+ };
1853
+ }
1854
+ if (databaseExtensions.includes(cleanExtension)) {
1855
+ return {
1856
+ lowerCase: 'database',
1857
+ upperCase: 'Database'
1858
+ };
1859
+ }
1860
+ if (cleanExtension === 'lnk') {
1861
+ return {
1862
+ lowerCase: 'link',
1863
+ upperCase: 'Link'
1864
+ };
1865
+ }
1866
+ if (zipExtensions.includes(cleanExtension)) {
1867
+ return {
1868
+ lowerCase: 'zip',
1869
+ upperCase: 'Zip'
1870
+ };
1871
+ }
1872
+ if (cleanExtension === 'obj' || cleanExtension === 'fbx' || cleanExtension === 'glb') {
1873
+ return {
1874
+ lowerCase: 'three',
1875
+ upperCase: '3D'
1876
+ };
1877
+ }
1878
+ return {
1879
+ lowerCase: 'file',
1880
+ upperCase: 'File'
1881
+ };
1882
+ }
1883
+
1884
+ /**
1885
+ * 获取文件大小
1886
+ * @param {number} size 文件大小
1887
+ * @returns {string} 返回文件大小
1888
+ */
1889
+ function getSize(size) {
1890
+ let retSize = size;
1891
+ const units = ['B', 'KB', 'MB', 'GB', 'TB', 'PB', 'EB'];
1892
+ let unitIndex = 0;
1893
+ while (retSize >= 1024 && unitIndex < units.length - 1) {
1894
+ retSize /= 1024;
1895
+ unitIndex++;
1896
+ }
1897
+ return `${retSize.toFixed(0)} ${units[unitIndex]}`;
1898
+ }
1899
+ // 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
1900
+
1901
+
1902
+
1903
+ /* harmony default export */ var mainvue_type_script_lang_js = ({
1904
+ name: 'ElXFilesCard',
1905
+ props: {
1906
+ uid: {
1907
+ type: [String, Number],
1908
+ default: undefined
1909
+ },
1910
+ name: {
1911
+ type: String,
1912
+ default: undefined
1913
+ },
1914
+ fileSize: {
1915
+ type: [String, Number],
1916
+ default: undefined
1917
+ },
1918
+ fileType: {
1919
+ type: String,
1920
+ default: undefined
1921
+ },
1922
+ description: {
1923
+ type: String,
1924
+ default: undefined
1925
+ },
1926
+ url: {
1927
+ type: String,
1928
+ default: undefined
1929
+ },
1930
+ thumbUrl: {
1931
+ type: String,
1932
+ default: undefined
1933
+ },
1934
+ imgFile: {
1935
+ type: Object,
1936
+ default: undefined,
1937
+ validator(value) {
1938
+ // 在浏览器环境中验证是否为 File 对象或普通对象
1939
+ if (value === null || value === undefined) return true;
1940
+ if (typeof window !== 'undefined' && window.File) {
1941
+ return value instanceof File || typeof value === 'object' && value !== null;
1942
+ }
1943
+ // 服务端环境只验证是否为对象
1944
+ return typeof value === 'object' && value !== null;
1945
+ }
1946
+ },
1947
+ iconSize: {
1948
+ type: String,
1949
+ default: '42px'
1950
+ },
1951
+ iconColor: {
1952
+ type: String,
1953
+ default: undefined
1954
+ },
1955
+ showDelIcon: {
1956
+ type: Boolean,
1957
+ default: false
1958
+ },
1959
+ maxWidth: {
1960
+ type: String,
1961
+ default: '236px'
1962
+ },
1963
+ styleConfig: {
1964
+ type: Object,
1965
+ default: undefined
1966
+ },
1967
+ hoverStyle: {
1968
+ type: Object,
1969
+ default: undefined
1970
+ },
1971
+ imgVariant: {
1972
+ type: String,
1973
+ default: 'rectangle'
1974
+ },
1975
+ imgPreview: {
1976
+ type: Boolean,
1977
+ default: true
1978
+ },
1979
+ imgPreviewMask: {
1980
+ type: Boolean,
1981
+ default: true
1982
+ },
1983
+ status: {
1984
+ type: String,
1985
+ default: undefined
1986
+ },
1987
+ percent: {
1988
+ type: Number,
1989
+ default: undefined
1990
+ },
1991
+ errorTip: {
1992
+ type: String,
1993
+ default: undefined
1994
+ }
1995
+ },
1996
+ data() {
1997
+ return {
1998
+ namePrefix: '',
1999
+ nameSuffix: '',
2000
+ isHovered: false,
2001
+ imageHovered: false,
2002
+ svgIconMap: fileSvg,
2003
+ colorMap: colorMap,
2004
+ previewImg: undefined
2005
+ };
2006
+ },
2007
+ computed: {
2008
+ propsData() {
2009
+ return {
2010
+ uid: this.uid,
2011
+ name: this.name,
2012
+ fileSize: this.fileSize,
2013
+ fileType: this.fileType,
2014
+ description: this.description,
2015
+ url: this.url,
2016
+ thumbUrl: this.thumbUrl,
2017
+ imgFile: this.imgFile,
2018
+ iconSize: this.iconSize,
2019
+ iconColor: this.iconColor,
2020
+ showDelIcon: this.showDelIcon,
2021
+ maxWidth: this.maxWidth,
2022
+ styleConfig: this.styleConfig,
2023
+ hoverStyle: this.hoverStyle,
2024
+ imgVariant: this.imgVariant,
2025
+ imgPreview: this.imgPreview,
2026
+ imgPreviewMask: this.imgPreviewMask,
2027
+ status: this.status,
2028
+ percent: this.percent,
2029
+ errorTip: this.errorTip
2030
+ };
2031
+ },
2032
+ _fileType() {
2033
+ if (this.fileType) return this.fileType;
2034
+ if (!this.name) return undefined;
2035
+ if (!this.nameSuffix) {
2036
+ return 'unknown';
2037
+ }
2038
+ return getFileType(this.nameSuffix).lowerCase;
2039
+ },
2040
+ _fileTypeUpperCase() {
2041
+ if (this.fileType) return this.fileType;
2042
+ if (!this.name) return '';
2043
+ if (!this.nameSuffix) {
2044
+ return 'Unknown';
2045
+ }
2046
+ return getFileType(this.nameSuffix).upperCase;
2047
+ },
2048
+ _description() {
2049
+ if (this.description) {
2050
+ return this.description;
2051
+ }
2052
+ const typeStr = this._fileTypeUpperCase;
2053
+ const sizeStr = this.fileSize ? `・${getSize(this.fileSize)}` : '';
2054
+ if (this.status === 'uploading') {
2055
+ return `上传中...${`・${this.percent || 0}`}%${sizeStr}`;
2056
+ }
2057
+ if (this.status === 'error') {
2058
+ return this.errorTip || '上传失败';
2059
+ }
2060
+ return `${typeStr}${sizeStr}`;
2061
+ },
2062
+ isImageFile() {
2063
+ return this._fileType === 'image';
2064
+ },
2065
+ isSquareVariant() {
2066
+ return this.imgVariant === 'square';
2067
+ },
2068
+ _previewImgUrl() {
2069
+ if (!this.isImageFile) return undefined;
2070
+ if (this.thumbUrl) return this.thumbUrl;
2071
+ if (this.url) return this.url;
2072
+ return this.previewImg;
2073
+ },
2074
+ _iconSize() {
2075
+ if (this.isSquareVariant && this.isImageFile && !this.iconSize || this.isSquareVariant && this.isImageFile && this.iconSize === '42px') return '64px';
2076
+ return this.iconSize;
2077
+ }
2078
+ },
2079
+ watch: {
2080
+ imgFile: {
2081
+ handler: async function (newFile) {
2082
+ if (newFile) {
2083
+ try {
2084
+ const url = await previewImage(newFile);
2085
+ this.previewImg = url;
2086
+ // this.$set(this, 'previewImg', url)
2087
+ } catch (error) {
2088
+ console.error('Preview failed:', error);
2089
+ this.previewImg = undefined;
2090
+ }
2091
+ } else {
2092
+ this.$set(this, 'previewImg', undefined);
2093
+ this.previewImg = undefined;
2094
+ }
2095
+ },
2096
+ deep: true,
2097
+ immediate: true
2098
+ }
2099
+ },
2100
+ mounted() {
2101
+ this.parseFileName();
2102
+ },
2103
+ methods: {
2104
+ handleDelete() {
2105
+ this.$emit('delete', {
2106
+ ...this.propsData
2107
+ });
2108
+ },
2109
+ handlePreviewAction(type) {
2110
+ if (this.imgPreview && this.$refs.imgRef && this._previewImgUrl && type === 'mask') {
2111
+ console.log(this.$refs.imgRef);
2112
+ this.$refs.imgRef.clickHandler();
2113
+ // this.$refs.imgRef.showPreview()
2114
+ }
2115
+ if (type === 'self') {
2116
+ this.$emit('imagePreview', {
2117
+ ...this.propsData
2118
+ });
2119
+ }
2120
+ },
2121
+ parseFileName() {
2122
+ if (!this.name) {
2123
+ this.namePrefix = '';
2124
+ this.nameSuffix = '';
2125
+ return;
2126
+ }
2127
+ const lastDotIndex = this.name.lastIndexOf('.');
2128
+ if (lastDotIndex === -1) {
2129
+ this.namePrefix = this.name;
2130
+ this.nameSuffix = '';
2131
+ } else {
2132
+ this.namePrefix = this.name.substring(0, lastDotIndex);
2133
+ this.nameSuffix = this.name.substring(lastDotIndex);
2134
+ }
2135
+ }
2136
+ }
2137
+ });
2138
+ // CONCATENATED MODULE: ./src/components/FilesCard/src/main.vue?vue&type=script&lang=js
2139
+ /* harmony default export */ var src_mainvue_type_script_lang_js = (mainvue_type_script_lang_js);
2140
+ // EXTERNAL MODULE: ./node_modules/style-loader/dist/runtime/injectStylesIntoStyleTag.js
2141
+ var injectStylesIntoStyleTag = __webpack_require__(3);
2142
+ var injectStylesIntoStyleTag_default = /*#__PURE__*/__webpack_require__.n(injectStylesIntoStyleTag);
2143
+
2144
+ // 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
2145
+ var mainvue_type_style_index_0_id_4aa1569e_prod_lang_scss_scoped_true = __webpack_require__(24);
2146
+
2147
+ // 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
2148
+
2149
+
2150
+
2151
+ var options = {};
2152
+
2153
+ options.insert = "head";
2154
+ options.singleton = false;
2155
+
2156
+ var update = injectStylesIntoStyleTag_default()(mainvue_type_style_index_0_id_4aa1569e_prod_lang_scss_scoped_true["a" /* default */], options);
2157
+
2158
+
2159
+
2160
+ /* 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 || {});
2161
+ // CONCATENATED MODULE: ./src/components/FilesCard/src/main.vue?vue&type=style&index=0&id=4aa1569e&prod&lang=scss&scoped=true
2162
+
2163
+ // CONCATENATED MODULE: ./src/components/FilesCard/src/main.vue
2164
+
2165
+
2166
+
2167
+
2168
+
2169
+
2170
+ /* normalize component */
2171
+
2172
+ var main_component = Object(componentNormalizer["a" /* default */])(
2173
+ src_mainvue_type_script_lang_js,
2174
+ render,
2175
+ staticRenderFns,
2176
+ false,
2177
+ null,
2178
+ "4aa1569e",
2179
+ null
2180
+
2181
+ )
2182
+
2183
+ /* harmony default export */ var main = (main_component.exports);
2184
+ // CONCATENATED MODULE: ./src/components/FilesCard/index.js
2185
+
2186
+
2187
+ /* istanbul ignore next */
2188
+ main.install = function (Vue) {
2189
+ Vue.component(main.name, main);
2190
+ };
2191
+ /* harmony default export */ var FilesCard = __webpack_exports__["default"] = (main);
2192
+
2193
+ /***/ }),
2194
+
2195
+ /***/ 3:
2196
+ /***/ (function(module, exports, __webpack_require__) {
2197
+
2198
+ "use strict";
2199
+
2200
+
2201
+ var isOldIE = function isOldIE() {
2202
+ var memo;
2203
+ return function memorize() {
2204
+ if (typeof memo === 'undefined') {
2205
+ // Test for IE <= 9 as proposed by Browserhacks
2206
+ // @see http://browserhacks.com/#hack-e71d8692f65334173fee715c222cb805
2207
+ // Tests for existence of standard globals is to allow style-loader
2208
+ // to operate correctly into non-standard environments
2209
+ // @see https://github.com/webpack-contrib/style-loader/issues/177
2210
+ memo = Boolean(window && document && document.all && !window.atob);
2211
+ }
2212
+
2213
+ return memo;
2214
+ };
2215
+ }();
2216
+
2217
+ var getTarget = function getTarget() {
2218
+ var memo = {};
2219
+ return function memorize(target) {
2220
+ if (typeof memo[target] === 'undefined') {
2221
+ var styleTarget = document.querySelector(target); // Special case to return head of iframe instead of iframe itself
2222
+
2223
+ if (window.HTMLIFrameElement && styleTarget instanceof window.HTMLIFrameElement) {
2224
+ try {
2225
+ // This will throw an exception if access to iframe is blocked
2226
+ // due to cross-origin restrictions
2227
+ styleTarget = styleTarget.contentDocument.head;
2228
+ } catch (e) {
2229
+ // istanbul ignore next
2230
+ styleTarget = null;
2231
+ }
2232
+ }
2233
+
2234
+ memo[target] = styleTarget;
2235
+ }
2236
+
2237
+ return memo[target];
2238
+ };
2239
+ }();
2240
+
2241
+ var stylesInDom = [];
2242
+
2243
+ function getIndexByIdentifier(identifier) {
2244
+ var result = -1;
2245
+
2246
+ for (var i = 0; i < stylesInDom.length; i++) {
2247
+ if (stylesInDom[i].identifier === identifier) {
2248
+ result = i;
2249
+ break;
2250
+ }
2251
+ }
2252
+
2253
+ return result;
2254
+ }
2255
+
2256
+ function modulesToDom(list, options) {
2257
+ var idCountMap = {};
2258
+ var identifiers = [];
2259
+
2260
+ for (var i = 0; i < list.length; i++) {
2261
+ var item = list[i];
2262
+ var id = options.base ? item[0] + options.base : item[0];
2263
+ var count = idCountMap[id] || 0;
2264
+ var identifier = "".concat(id, " ").concat(count);
2265
+ idCountMap[id] = count + 1;
2266
+ var index = getIndexByIdentifier(identifier);
2267
+ var obj = {
2268
+ css: item[1],
2269
+ media: item[2],
2270
+ sourceMap: item[3]
2271
+ };
2272
+
2273
+ if (index !== -1) {
2274
+ stylesInDom[index].references++;
2275
+ stylesInDom[index].updater(obj);
2276
+ } else {
2277
+ stylesInDom.push({
2278
+ identifier: identifier,
2279
+ updater: addStyle(obj, options),
2280
+ references: 1
2281
+ });
2282
+ }
2283
+
2284
+ identifiers.push(identifier);
2285
+ }
2286
+
2287
+ return identifiers;
2288
+ }
2289
+
2290
+ function insertStyleElement(options) {
2291
+ var style = document.createElement('style');
2292
+ var attributes = options.attributes || {};
2293
+
2294
+ if (typeof attributes.nonce === 'undefined') {
2295
+ var nonce = true ? __webpack_require__.nc : undefined;
2296
+
2297
+ if (nonce) {
2298
+ attributes.nonce = nonce;
2299
+ }
2300
+ }
2301
+
2302
+ Object.keys(attributes).forEach(function (key) {
2303
+ style.setAttribute(key, attributes[key]);
2304
+ });
2305
+
2306
+ if (typeof options.insert === 'function') {
2307
+ options.insert(style);
2308
+ } else {
2309
+ var target = getTarget(options.insert || 'head');
2310
+
2311
+ if (!target) {
2312
+ throw new Error("Couldn't find a style target. This probably means that the value for the 'insert' parameter is invalid.");
2313
+ }
2314
+
2315
+ target.appendChild(style);
2316
+ }
2317
+
2318
+ return style;
2319
+ }
2320
+
2321
+ function removeStyleElement(style) {
2322
+ // istanbul ignore if
2323
+ if (style.parentNode === null) {
2324
+ return false;
2325
+ }
2326
+
2327
+ style.parentNode.removeChild(style);
2328
+ }
2329
+ /* istanbul ignore next */
2330
+
2331
+
2332
+ var replaceText = function replaceText() {
2333
+ var textStore = [];
2334
+ return function replace(index, replacement) {
2335
+ textStore[index] = replacement;
2336
+ return textStore.filter(Boolean).join('\n');
2337
+ };
2338
+ }();
2339
+
2340
+ function applyToSingletonTag(style, index, remove, obj) {
2341
+ var css = remove ? '' : obj.media ? "@media ".concat(obj.media, " {").concat(obj.css, "}") : obj.css; // For old IE
2342
+
2343
+ /* istanbul ignore if */
2344
+
2345
+ if (style.styleSheet) {
2346
+ style.styleSheet.cssText = replaceText(index, css);
2347
+ } else {
2348
+ var cssNode = document.createTextNode(css);
2349
+ var childNodes = style.childNodes;
2350
+
2351
+ if (childNodes[index]) {
2352
+ style.removeChild(childNodes[index]);
2353
+ }
2354
+
2355
+ if (childNodes.length) {
2356
+ style.insertBefore(cssNode, childNodes[index]);
2357
+ } else {
2358
+ style.appendChild(cssNode);
2359
+ }
2360
+ }
2361
+ }
2362
+
2363
+ function applyToTag(style, options, obj) {
2364
+ var css = obj.css;
2365
+ var media = obj.media;
2366
+ var sourceMap = obj.sourceMap;
2367
+
2368
+ if (media) {
2369
+ style.setAttribute('media', media);
2370
+ } else {
2371
+ style.removeAttribute('media');
2372
+ }
2373
+
2374
+ if (sourceMap && typeof btoa !== 'undefined') {
2375
+ css += "\n/*# sourceMappingURL=data:application/json;base64,".concat(btoa(unescape(encodeURIComponent(JSON.stringify(sourceMap)))), " */");
2376
+ } // For old IE
2377
+
2378
+ /* istanbul ignore if */
2379
+
2380
+
2381
+ if (style.styleSheet) {
2382
+ style.styleSheet.cssText = css;
2383
+ } else {
2384
+ while (style.firstChild) {
2385
+ style.removeChild(style.firstChild);
2386
+ }
2387
+
2388
+ style.appendChild(document.createTextNode(css));
2389
+ }
2390
+ }
2391
+
2392
+ var singleton = null;
2393
+ var singletonCounter = 0;
2394
+
2395
+ function addStyle(obj, options) {
2396
+ var style;
2397
+ var update;
2398
+ var remove;
2399
+
2400
+ if (options.singleton) {
2401
+ var styleIndex = singletonCounter++;
2402
+ style = singleton || (singleton = insertStyleElement(options));
2403
+ update = applyToSingletonTag.bind(null, style, styleIndex, false);
2404
+ remove = applyToSingletonTag.bind(null, style, styleIndex, true);
2405
+ } else {
2406
+ style = insertStyleElement(options);
2407
+ update = applyToTag.bind(null, style, options);
2408
+
2409
+ remove = function remove() {
2410
+ removeStyleElement(style);
2411
+ };
2412
+ }
2413
+
2414
+ update(obj);
2415
+ return function updateStyle(newObj) {
2416
+ if (newObj) {
2417
+ if (newObj.css === obj.css && newObj.media === obj.media && newObj.sourceMap === obj.sourceMap) {
2418
+ return;
2419
+ }
2420
+
2421
+ update(obj = newObj);
2422
+ } else {
2423
+ remove();
2424
+ }
2425
+ };
2426
+ }
2427
+
2428
+ module.exports = function (list, options) {
2429
+ options = options || {}; // Force single-tag solution on IE6-9, which has a hard limit on the # of <style>
2430
+ // tags it will allow on a page
2431
+
2432
+ if (!options.singleton && typeof options.singleton !== 'boolean') {
2433
+ options.singleton = isOldIE();
2434
+ }
2435
+
2436
+ list = list || [];
2437
+ var lastIdentifiers = modulesToDom(list, options);
2438
+ return function update(newList) {
2439
+ newList = newList || [];
2440
+
2441
+ if (Object.prototype.toString.call(newList) !== '[object Array]') {
2442
+ return;
2443
+ }
2444
+
2445
+ for (var i = 0; i < lastIdentifiers.length; i++) {
2446
+ var identifier = lastIdentifiers[i];
2447
+ var index = getIndexByIdentifier(identifier);
2448
+ stylesInDom[index].references--;
2449
+ }
2450
+
2451
+ var newLastIdentifiers = modulesToDom(newList, options);
2452
+
2453
+ for (var _i = 0; _i < lastIdentifiers.length; _i++) {
2454
+ var _identifier = lastIdentifiers[_i];
2455
+
2456
+ var _index = getIndexByIdentifier(_identifier);
2457
+
2458
+ if (stylesInDom[_index].references === 0) {
2459
+ stylesInDom[_index].updater();
2460
+
2461
+ stylesInDom.splice(_index, 1);
2462
+ }
2463
+ }
2464
+
2465
+ lastIdentifiers = newLastIdentifiers;
2466
+ };
2467
+ };
2468
+
2469
+ /***/ })
2470
+
2471
+ /******/ });