loader-module 1.0.2 → 3.0.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +74 -35
- package/dist/demo.html +1 -8
- package/dist/loader-module.common.js +336 -461
- package/dist/loader-module.common.js.map +1 -1
- package/dist/loader-module.umd.js +346 -462
- package/dist/loader-module.umd.js.map +1 -1
- package/dist/loader-module.umd.min.js +1 -1
- package/dist/loader-module.umd.min.js.map +1 -1
- package/package.json +28 -23
- package/src/LoaderVuex.vue +2 -2
- package/src/index.js +5 -5
- package/src/loaderModule.js +23 -28
- package/vue.config.js +21 -7
- package/src/components/Loader.vue +0 -46
- package/src/store/loaderModule.js +0 -27
- package/webpack.config.js +0 -19
|
@@ -1,94 +1,32 @@
|
|
|
1
|
-
|
|
2
|
-
/******/ (
|
|
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 = "fb15");
|
|
86
|
-
/******/ })
|
|
87
|
-
/************************************************************************/
|
|
88
|
-
/******/ ({
|
|
1
|
+
/******/ (() => { // webpackBootstrap
|
|
2
|
+
/******/ var __webpack_modules__ = ({
|
|
89
3
|
|
|
90
|
-
/***/
|
|
91
|
-
|
|
4
|
+
/***/ 92
|
|
5
|
+
(module, __webpack_exports__, __webpack_require__) {
|
|
6
|
+
|
|
7
|
+
"use strict";
|
|
8
|
+
__webpack_require__.r(__webpack_exports__);
|
|
9
|
+
/* harmony export */ __webpack_require__.d(__webpack_exports__, {
|
|
10
|
+
/* harmony export */ "default": () => (__WEBPACK_DEFAULT_EXPORT__)
|
|
11
|
+
/* harmony export */ });
|
|
12
|
+
/* harmony import */ var _node_modules_css_loader_dist_runtime_noSourceMaps_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(601);
|
|
13
|
+
/* harmony import */ var _node_modules_css_loader_dist_runtime_noSourceMaps_js__WEBPACK_IMPORTED_MODULE_0___default = /*#__PURE__*/__webpack_require__.n(_node_modules_css_loader_dist_runtime_noSourceMaps_js__WEBPACK_IMPORTED_MODULE_0__);
|
|
14
|
+
/* harmony import */ var _node_modules_css_loader_dist_runtime_api_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(314);
|
|
15
|
+
/* harmony import */ var _node_modules_css_loader_dist_runtime_api_js__WEBPACK_IMPORTED_MODULE_1___default = /*#__PURE__*/__webpack_require__.n(_node_modules_css_loader_dist_runtime_api_js__WEBPACK_IMPORTED_MODULE_1__);
|
|
16
|
+
// Imports
|
|
17
|
+
|
|
18
|
+
|
|
19
|
+
var ___CSS_LOADER_EXPORT___ = _node_modules_css_loader_dist_runtime_api_js__WEBPACK_IMPORTED_MODULE_1___default()((_node_modules_css_loader_dist_runtime_noSourceMaps_js__WEBPACK_IMPORTED_MODULE_0___default()));
|
|
20
|
+
// Module
|
|
21
|
+
___CSS_LOADER_EXPORT___.push([module.id, `.v-overlay[data-v-1be9be07]{display:flex;align-items:center;justify-content:center}`, ""]);
|
|
22
|
+
// Exports
|
|
23
|
+
/* harmony default export */ const __WEBPACK_DEFAULT_EXPORT__ = (___CSS_LOADER_EXPORT___);
|
|
24
|
+
|
|
25
|
+
|
|
26
|
+
/***/ },
|
|
27
|
+
|
|
28
|
+
/***/ 314
|
|
29
|
+
(module) {
|
|
92
30
|
|
|
93
31
|
"use strict";
|
|
94
32
|
|
|
@@ -97,277 +35,147 @@ module.exports =
|
|
|
97
35
|
MIT License http://www.opensource.org/licenses/mit-license.php
|
|
98
36
|
Author Tobias Koppers @sokra
|
|
99
37
|
*/
|
|
100
|
-
|
|
101
|
-
|
|
102
|
-
module.exports = function (useSourceMap) {
|
|
103
|
-
var list = []; // return the list of modules as css string
|
|
38
|
+
module.exports = function (cssWithMappingToString) {
|
|
39
|
+
var list = [];
|
|
104
40
|
|
|
41
|
+
// return the list of modules as css string
|
|
105
42
|
list.toString = function toString() {
|
|
106
43
|
return this.map(function (item) {
|
|
107
|
-
var content =
|
|
108
|
-
|
|
44
|
+
var content = "";
|
|
45
|
+
var needLayer = typeof item[5] !== "undefined";
|
|
46
|
+
if (item[4]) {
|
|
47
|
+
content += "@supports (".concat(item[4], ") {");
|
|
48
|
+
}
|
|
109
49
|
if (item[2]) {
|
|
110
|
-
|
|
50
|
+
content += "@media ".concat(item[2], " {");
|
|
51
|
+
}
|
|
52
|
+
if (needLayer) {
|
|
53
|
+
content += "@layer".concat(item[5].length > 0 ? " ".concat(item[5]) : "", " {");
|
|
54
|
+
}
|
|
55
|
+
content += cssWithMappingToString(item);
|
|
56
|
+
if (needLayer) {
|
|
57
|
+
content += "}";
|
|
58
|
+
}
|
|
59
|
+
if (item[2]) {
|
|
60
|
+
content += "}";
|
|
61
|
+
}
|
|
62
|
+
if (item[4]) {
|
|
63
|
+
content += "}";
|
|
111
64
|
}
|
|
112
|
-
|
|
113
65
|
return content;
|
|
114
|
-
}).join(
|
|
115
|
-
};
|
|
116
|
-
// eslint-disable-next-line func-names
|
|
117
|
-
|
|
66
|
+
}).join("");
|
|
67
|
+
};
|
|
118
68
|
|
|
119
|
-
list
|
|
120
|
-
|
|
121
|
-
|
|
122
|
-
modules = [[null, modules,
|
|
69
|
+
// import a list of modules into the list
|
|
70
|
+
list.i = function i(modules, media, dedupe, supports, layer) {
|
|
71
|
+
if (typeof modules === "string") {
|
|
72
|
+
modules = [[null, modules, undefined]];
|
|
123
73
|
}
|
|
124
|
-
|
|
125
74
|
var alreadyImportedModules = {};
|
|
126
|
-
|
|
127
75
|
if (dedupe) {
|
|
128
|
-
for (var
|
|
129
|
-
|
|
130
|
-
var id = this[i][0];
|
|
131
|
-
|
|
76
|
+
for (var k = 0; k < this.length; k++) {
|
|
77
|
+
var id = this[k][0];
|
|
132
78
|
if (id != null) {
|
|
133
79
|
alreadyImportedModules[id] = true;
|
|
134
80
|
}
|
|
135
81
|
}
|
|
136
82
|
}
|
|
137
|
-
|
|
138
|
-
|
|
139
|
-
var item = [].concat(modules[_i]);
|
|
140
|
-
|
|
83
|
+
for (var _k = 0; _k < modules.length; _k++) {
|
|
84
|
+
var item = [].concat(modules[_k]);
|
|
141
85
|
if (dedupe && alreadyImportedModules[item[0]]) {
|
|
142
|
-
// eslint-disable-next-line no-continue
|
|
143
86
|
continue;
|
|
144
87
|
}
|
|
145
|
-
|
|
146
|
-
|
|
88
|
+
if (typeof layer !== "undefined") {
|
|
89
|
+
if (typeof item[5] === "undefined") {
|
|
90
|
+
item[5] = layer;
|
|
91
|
+
} else {
|
|
92
|
+
item[1] = "@layer".concat(item[5].length > 0 ? " ".concat(item[5]) : "", " {").concat(item[1], "}");
|
|
93
|
+
item[5] = layer;
|
|
94
|
+
}
|
|
95
|
+
}
|
|
96
|
+
if (media) {
|
|
147
97
|
if (!item[2]) {
|
|
148
|
-
item[2] =
|
|
98
|
+
item[2] = media;
|
|
149
99
|
} else {
|
|
150
|
-
item[
|
|
100
|
+
item[1] = "@media ".concat(item[2], " {").concat(item[1], "}");
|
|
101
|
+
item[2] = media;
|
|
102
|
+
}
|
|
103
|
+
}
|
|
104
|
+
if (supports) {
|
|
105
|
+
if (!item[4]) {
|
|
106
|
+
item[4] = "".concat(supports);
|
|
107
|
+
} else {
|
|
108
|
+
item[1] = "@supports (".concat(item[4], ") {").concat(item[1], "}");
|
|
109
|
+
item[4] = supports;
|
|
151
110
|
}
|
|
152
111
|
}
|
|
153
|
-
|
|
154
112
|
list.push(item);
|
|
155
113
|
}
|
|
156
114
|
};
|
|
157
|
-
|
|
158
115
|
return list;
|
|
159
116
|
};
|
|
160
117
|
|
|
161
|
-
|
|
162
|
-
var content = item[1] || ''; // eslint-disable-next-line prefer-destructuring
|
|
163
|
-
|
|
164
|
-
var cssMapping = item[3];
|
|
165
|
-
|
|
166
|
-
if (!cssMapping) {
|
|
167
|
-
return content;
|
|
168
|
-
}
|
|
169
|
-
|
|
170
|
-
if (useSourceMap && typeof btoa === 'function') {
|
|
171
|
-
var sourceMapping = toComment(cssMapping);
|
|
172
|
-
var sourceURLs = cssMapping.sources.map(function (source) {
|
|
173
|
-
return "/*# sourceURL=".concat(cssMapping.sourceRoot || '').concat(source, " */");
|
|
174
|
-
});
|
|
175
|
-
return [content].concat(sourceURLs).concat([sourceMapping]).join('\n');
|
|
176
|
-
}
|
|
177
|
-
|
|
178
|
-
return [content].join('\n');
|
|
179
|
-
} // Adapted from convert-source-map (MIT)
|
|
180
|
-
|
|
181
|
-
|
|
182
|
-
function toComment(sourceMap) {
|
|
183
|
-
// eslint-disable-next-line no-undef
|
|
184
|
-
var base64 = btoa(unescape(encodeURIComponent(JSON.stringify(sourceMap))));
|
|
185
|
-
var data = "sourceMappingURL=data:application/json;charset=utf-8;base64,".concat(base64);
|
|
186
|
-
return "/*# ".concat(data, " */");
|
|
187
|
-
}
|
|
188
|
-
|
|
189
|
-
/***/ }),
|
|
118
|
+
/***/ },
|
|
190
119
|
|
|
191
|
-
/***/
|
|
192
|
-
|
|
120
|
+
/***/ 601
|
|
121
|
+
(module) {
|
|
193
122
|
|
|
194
123
|
"use strict";
|
|
195
124
|
|
|
196
|
-
// CONCATENATED MODULE: ./node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"390bcdb0-vue-loader-template"}!./node_modules/@vue/cli-service/node_modules/vue-loader/lib/loaders/templateLoader.js??ref--5!./node_modules/cache-loader/dist/cjs.js??ref--1-0!./node_modules/@vue/cli-service/node_modules/vue-loader/lib??vue-loader-options!./src/LoaderVuex.vue?vue&type=template&id=76519c8e&scoped=true
|
|
197
|
-
var render = function render(){var _vm=this,_c=_vm._self._c;return _c('v-overlay',{attrs:{"value":_vm.isLoading,"opacity":_vm.opacity,"z-index":_vm.zIndex}},[_c('v-progress-circular',{attrs:{"indeterminate":"","size":_vm.size,"color":_vm.color}})],1)
|
|
198
|
-
}
|
|
199
|
-
var staticRenderFns = []
|
|
200
|
-
|
|
201
|
-
|
|
202
|
-
// CONCATENATED MODULE: ./src/LoaderVuex.vue?vue&type=template&id=76519c8e&scoped=true
|
|
203
|
-
|
|
204
|
-
// CONCATENATED MODULE: ./node_modules/cache-loader/dist/cjs.js??ref--1-0!./node_modules/@vue/cli-service/node_modules/vue-loader/lib??vue-loader-options!./src/LoaderVuex.vue?vue&type=script&lang=js
|
|
205
|
-
|
|
206
|
-
/* harmony default export */ var LoaderVuexvue_type_script_lang_js = ({
|
|
207
|
-
name: 'loader-vuex',
|
|
208
|
-
props: {
|
|
209
|
-
opacity: {
|
|
210
|
-
type: Number,
|
|
211
|
-
default: 0.7
|
|
212
|
-
},
|
|
213
|
-
zIndex: {
|
|
214
|
-
type: Number,
|
|
215
|
-
default: 5
|
|
216
|
-
},
|
|
217
|
-
size: {
|
|
218
|
-
type: Number,
|
|
219
|
-
default: 64
|
|
220
|
-
},
|
|
221
|
-
color: {
|
|
222
|
-
type: String,
|
|
223
|
-
default: 'primary'
|
|
224
|
-
}
|
|
225
|
-
},
|
|
226
|
-
computed: {
|
|
227
|
-
isLoading() {
|
|
228
|
-
return this.$store.state.loaderModule.loaderDialog
|
|
229
|
-
}
|
|
230
|
-
}
|
|
231
|
-
});
|
|
232
125
|
|
|
233
|
-
|
|
234
|
-
|
|
235
|
-
|
|
236
|
-
var LoaderVuexvue_type_style_index_0_id_76519c8e_prod_scoped_true_lang_css = __webpack_require__("55c5");
|
|
237
|
-
|
|
238
|
-
// CONCATENATED MODULE: ./node_modules/@vue/cli-service/node_modules/vue-loader/lib/runtime/componentNormalizer.js
|
|
239
|
-
/* globals __VUE_SSR_CONTEXT__ */
|
|
240
|
-
|
|
241
|
-
// IMPORTANT: Do NOT use ES2015 features in this file (except for modules).
|
|
242
|
-
// This module is a runtime utility for cleaner component module output and will
|
|
243
|
-
// be included in the final webpack user bundle.
|
|
244
|
-
|
|
245
|
-
function normalizeComponent(
|
|
246
|
-
scriptExports,
|
|
247
|
-
render,
|
|
248
|
-
staticRenderFns,
|
|
249
|
-
functionalTemplate,
|
|
250
|
-
injectStyles,
|
|
251
|
-
scopeId,
|
|
252
|
-
moduleIdentifier /* server only */,
|
|
253
|
-
shadowMode /* vue-cli only */
|
|
254
|
-
) {
|
|
255
|
-
// Vue.extend constructor export interop
|
|
256
|
-
var options =
|
|
257
|
-
typeof scriptExports === 'function' ? scriptExports.options : scriptExports
|
|
258
|
-
|
|
259
|
-
// render functions
|
|
260
|
-
if (render) {
|
|
261
|
-
options.render = render
|
|
262
|
-
options.staticRenderFns = staticRenderFns
|
|
263
|
-
options._compiled = true
|
|
264
|
-
}
|
|
126
|
+
module.exports = function (i) {
|
|
127
|
+
return i[1];
|
|
128
|
+
};
|
|
265
129
|
|
|
266
|
-
|
|
267
|
-
if (functionalTemplate) {
|
|
268
|
-
options.functional = true
|
|
269
|
-
}
|
|
130
|
+
/***/ },
|
|
270
131
|
|
|
271
|
-
|
|
272
|
-
|
|
273
|
-
options._scopeId = 'data-v-' + scopeId
|
|
274
|
-
}
|
|
132
|
+
/***/ 262
|
|
133
|
+
(__unused_webpack_module, exports) {
|
|
275
134
|
|
|
276
|
-
|
|
277
|
-
|
|
278
|
-
|
|
279
|
-
|
|
280
|
-
|
|
281
|
-
|
|
282
|
-
|
|
283
|
-
|
|
284
|
-
|
|
285
|
-
|
|
286
|
-
if (!context && typeof __VUE_SSR_CONTEXT__ !== 'undefined') {
|
|
287
|
-
context = __VUE_SSR_CONTEXT__
|
|
288
|
-
}
|
|
289
|
-
// inject component styles
|
|
290
|
-
if (injectStyles) {
|
|
291
|
-
injectStyles.call(this, context)
|
|
292
|
-
}
|
|
293
|
-
// register component module identifier for async chunk inferrence
|
|
294
|
-
if (context && context._registeredComponents) {
|
|
295
|
-
context._registeredComponents.add(moduleIdentifier)
|
|
296
|
-
}
|
|
297
|
-
}
|
|
298
|
-
// used by ssr in case component is cached and beforeCreate
|
|
299
|
-
// never gets called
|
|
300
|
-
options._ssrRegister = hook
|
|
301
|
-
} else if (injectStyles) {
|
|
302
|
-
hook = shadowMode
|
|
303
|
-
? function () {
|
|
304
|
-
injectStyles.call(
|
|
305
|
-
this,
|
|
306
|
-
(options.functional ? this.parent : this).$root.$options.shadowRoot
|
|
307
|
-
)
|
|
308
|
-
}
|
|
309
|
-
: injectStyles
|
|
310
|
-
}
|
|
311
|
-
|
|
312
|
-
if (hook) {
|
|
313
|
-
if (options.functional) {
|
|
314
|
-
// for template-only hot-reload because in that case the render fn doesn't
|
|
315
|
-
// go through the normalizer
|
|
316
|
-
options._injectStyles = hook
|
|
317
|
-
// register for functional component in vue file
|
|
318
|
-
var originalRender = options.render
|
|
319
|
-
options.render = function renderWithStyleInjection(h, context) {
|
|
320
|
-
hook.call(context)
|
|
321
|
-
return originalRender(h, context)
|
|
322
|
-
}
|
|
323
|
-
} else {
|
|
324
|
-
// inject component registration as beforeCreate hook
|
|
325
|
-
var existing = options.beforeCreate
|
|
326
|
-
options.beforeCreate = existing ? [].concat(existing, hook) : [hook]
|
|
135
|
+
"use strict";
|
|
136
|
+
var __webpack_unused_export__;
|
|
137
|
+
|
|
138
|
+
__webpack_unused_export__ = ({ value: true });
|
|
139
|
+
// runtime helper for setting properties on components
|
|
140
|
+
// in a tree-shakable way
|
|
141
|
+
exports.A = (sfc, props) => {
|
|
142
|
+
const target = sfc.__vccOpts || sfc;
|
|
143
|
+
for (const [key, val] of props) {
|
|
144
|
+
target[key] = val;
|
|
327
145
|
}
|
|
328
|
-
|
|
329
|
-
|
|
330
|
-
return {
|
|
331
|
-
exports: scriptExports,
|
|
332
|
-
options: options
|
|
333
|
-
}
|
|
334
|
-
}
|
|
335
|
-
|
|
336
|
-
// CONCATENATED MODULE: ./src/LoaderVuex.vue
|
|
337
|
-
|
|
338
|
-
|
|
339
|
-
|
|
146
|
+
return target;
|
|
147
|
+
};
|
|
340
148
|
|
|
341
149
|
|
|
150
|
+
/***/ },
|
|
342
151
|
|
|
343
|
-
|
|
152
|
+
/***/ 631
|
|
153
|
+
(module, __unused_webpack_exports, __webpack_require__) {
|
|
344
154
|
|
|
345
|
-
|
|
346
|
-
src_LoaderVuexvue_type_script_lang_js,
|
|
347
|
-
render,
|
|
348
|
-
staticRenderFns,
|
|
349
|
-
false,
|
|
350
|
-
null,
|
|
351
|
-
"76519c8e",
|
|
352
|
-
null
|
|
353
|
-
|
|
354
|
-
)
|
|
155
|
+
// style-loader: Adds some css to the DOM by adding a <style> tag
|
|
355
156
|
|
|
356
|
-
|
|
157
|
+
// load the styles
|
|
158
|
+
var content = __webpack_require__(92);
|
|
159
|
+
if(content.__esModule) content = content.default;
|
|
160
|
+
if(typeof content === 'string') content = [[module.id, content, '']];
|
|
161
|
+
if(content.locals) module.exports = content.locals;
|
|
162
|
+
// add the styles to the DOM
|
|
163
|
+
var add = (__webpack_require__(548)/* ["default"] */ .A)
|
|
164
|
+
var update = add("74aa0586", content, true, {"sourceMap":false,"shadowMode":false});
|
|
357
165
|
|
|
358
|
-
/***/ }
|
|
166
|
+
/***/ },
|
|
359
167
|
|
|
360
|
-
/***/
|
|
361
|
-
|
|
168
|
+
/***/ 548
|
|
169
|
+
(__unused_webpack_module, __webpack_exports__, __webpack_require__) {
|
|
362
170
|
|
|
363
171
|
"use strict";
|
|
364
|
-
// ESM COMPAT FLAG
|
|
365
|
-
__webpack_require__.r(__webpack_exports__);
|
|
366
172
|
|
|
367
173
|
// EXPORTS
|
|
368
|
-
__webpack_require__.d(__webpack_exports__,
|
|
174
|
+
__webpack_require__.d(__webpack_exports__, {
|
|
175
|
+
A: () => (/* binding */ addStylesClient)
|
|
176
|
+
});
|
|
369
177
|
|
|
370
|
-
|
|
178
|
+
;// ./node_modules/vue-style-loader/lib/listToStyles.js
|
|
371
179
|
/**
|
|
372
180
|
* Translates the list format produced by css-loader into something
|
|
373
181
|
* easier to manipulate.
|
|
@@ -396,7 +204,7 @@ function listToStyles (parentId, list) {
|
|
|
396
204
|
return styles
|
|
397
205
|
}
|
|
398
206
|
|
|
399
|
-
|
|
207
|
+
;// ./node_modules/vue-style-loader/lib/addStylesClient.js
|
|
400
208
|
/*
|
|
401
209
|
MIT License http://www.opensource.org/licenses/mit-license.php
|
|
402
210
|
Author Tobias Koppers @sokra
|
|
@@ -621,118 +429,245 @@ function applyToTag (styleElement, obj) {
|
|
|
621
429
|
}
|
|
622
430
|
|
|
623
431
|
|
|
624
|
-
/***/ }
|
|
625
|
-
|
|
626
|
-
/***/ "55c5":
|
|
627
|
-
/***/ (function(module, __webpack_exports__, __webpack_require__) {
|
|
432
|
+
/***/ }
|
|
628
433
|
|
|
434
|
+
/******/ });
|
|
435
|
+
/************************************************************************/
|
|
436
|
+
/******/ // The module cache
|
|
437
|
+
/******/ var __webpack_module_cache__ = {};
|
|
438
|
+
/******/
|
|
439
|
+
/******/ // The require function
|
|
440
|
+
/******/ function __webpack_require__(moduleId) {
|
|
441
|
+
/******/ // Check if module is in cache
|
|
442
|
+
/******/ var cachedModule = __webpack_module_cache__[moduleId];
|
|
443
|
+
/******/ if (cachedModule !== undefined) {
|
|
444
|
+
/******/ return cachedModule.exports;
|
|
445
|
+
/******/ }
|
|
446
|
+
/******/ // Create a new module (and put it into the cache)
|
|
447
|
+
/******/ var module = __webpack_module_cache__[moduleId] = {
|
|
448
|
+
/******/ id: moduleId,
|
|
449
|
+
/******/ // no module.loaded needed
|
|
450
|
+
/******/ exports: {}
|
|
451
|
+
/******/ };
|
|
452
|
+
/******/
|
|
453
|
+
/******/ // Execute the module function
|
|
454
|
+
/******/ __webpack_modules__[moduleId](module, module.exports, __webpack_require__);
|
|
455
|
+
/******/
|
|
456
|
+
/******/ // Return the exports of the module
|
|
457
|
+
/******/ return module.exports;
|
|
458
|
+
/******/ }
|
|
459
|
+
/******/
|
|
460
|
+
/************************************************************************/
|
|
461
|
+
/******/ /* webpack/runtime/compat get default export */
|
|
462
|
+
/******/ (() => {
|
|
463
|
+
/******/ // getDefaultExport function for compatibility with non-harmony modules
|
|
464
|
+
/******/ __webpack_require__.n = (module) => {
|
|
465
|
+
/******/ var getter = module && module.__esModule ?
|
|
466
|
+
/******/ () => (module['default']) :
|
|
467
|
+
/******/ () => (module);
|
|
468
|
+
/******/ __webpack_require__.d(getter, { a: getter });
|
|
469
|
+
/******/ return getter;
|
|
470
|
+
/******/ };
|
|
471
|
+
/******/ })();
|
|
472
|
+
/******/
|
|
473
|
+
/******/ /* webpack/runtime/define property getters */
|
|
474
|
+
/******/ (() => {
|
|
475
|
+
/******/ // define getter functions for harmony exports
|
|
476
|
+
/******/ __webpack_require__.d = (exports, definition) => {
|
|
477
|
+
/******/ for(var key in definition) {
|
|
478
|
+
/******/ if(__webpack_require__.o(definition, key) && !__webpack_require__.o(exports, key)) {
|
|
479
|
+
/******/ Object.defineProperty(exports, key, { enumerable: true, get: definition[key] });
|
|
480
|
+
/******/ }
|
|
481
|
+
/******/ }
|
|
482
|
+
/******/ };
|
|
483
|
+
/******/ })();
|
|
484
|
+
/******/
|
|
485
|
+
/******/ /* webpack/runtime/global */
|
|
486
|
+
/******/ (() => {
|
|
487
|
+
/******/ __webpack_require__.g = (function() {
|
|
488
|
+
/******/ if (typeof globalThis === 'object') return globalThis;
|
|
489
|
+
/******/ try {
|
|
490
|
+
/******/ return this || new Function('return this')();
|
|
491
|
+
/******/ } catch (e) {
|
|
492
|
+
/******/ if (typeof window === 'object') return window;
|
|
493
|
+
/******/ }
|
|
494
|
+
/******/ })();
|
|
495
|
+
/******/ })();
|
|
496
|
+
/******/
|
|
497
|
+
/******/ /* webpack/runtime/hasOwnProperty shorthand */
|
|
498
|
+
/******/ (() => {
|
|
499
|
+
/******/ __webpack_require__.o = (obj, prop) => (Object.prototype.hasOwnProperty.call(obj, prop))
|
|
500
|
+
/******/ })();
|
|
501
|
+
/******/
|
|
502
|
+
/******/ /* webpack/runtime/make namespace object */
|
|
503
|
+
/******/ (() => {
|
|
504
|
+
/******/ // define __esModule on exports
|
|
505
|
+
/******/ __webpack_require__.r = (exports) => {
|
|
506
|
+
/******/ if(typeof Symbol !== 'undefined' && Symbol.toStringTag) {
|
|
507
|
+
/******/ Object.defineProperty(exports, Symbol.toStringTag, { value: 'Module' });
|
|
508
|
+
/******/ }
|
|
509
|
+
/******/ Object.defineProperty(exports, '__esModule', { value: true });
|
|
510
|
+
/******/ };
|
|
511
|
+
/******/ })();
|
|
512
|
+
/******/
|
|
513
|
+
/******/ /* webpack/runtime/publicPath */
|
|
514
|
+
/******/ (() => {
|
|
515
|
+
/******/ __webpack_require__.p = "";
|
|
516
|
+
/******/ })();
|
|
517
|
+
/******/
|
|
518
|
+
/************************************************************************/
|
|
519
|
+
var __webpack_exports__ = {};
|
|
520
|
+
// This entry needs to be wrapped in an IIFE because it needs to be in strict mode.
|
|
521
|
+
(() => {
|
|
629
522
|
"use strict";
|
|
630
|
-
|
|
631
|
-
|
|
632
|
-
/* unused harmony reexport * */
|
|
523
|
+
// ESM COMPAT FLAG
|
|
524
|
+
__webpack_require__.r(__webpack_exports__);
|
|
633
525
|
|
|
526
|
+
// EXPORTS
|
|
527
|
+
__webpack_require__.d(__webpack_exports__, {
|
|
528
|
+
LoaderVuex: () => (/* reexport */ LoaderVuex),
|
|
529
|
+
"default": () => (/* binding */ entry_lib),
|
|
530
|
+
loaderModule: () => (/* reexport */ loaderModule)
|
|
531
|
+
});
|
|
634
532
|
|
|
635
|
-
|
|
533
|
+
;// ./node_modules/@vue/cli-service/lib/commands/build/setPublicPath.js
|
|
534
|
+
/* eslint-disable no-var */
|
|
535
|
+
// This file is imported into lib/wc client bundles.
|
|
636
536
|
|
|
637
|
-
|
|
638
|
-
|
|
537
|
+
if (typeof window !== 'undefined') {
|
|
538
|
+
var currentScript = window.document.currentScript
|
|
539
|
+
if (false) // removed by dead control flow
|
|
540
|
+
{ var getCurrentScript; }
|
|
639
541
|
|
|
640
|
-
|
|
641
|
-
|
|
642
|
-
|
|
643
|
-
|
|
542
|
+
var src = currentScript && currentScript.src.match(/(.+\/)[^/]+\.js(\?.*)?$/)
|
|
543
|
+
if (src) {
|
|
544
|
+
__webpack_require__.p = src[1] // eslint-disable-line
|
|
545
|
+
}
|
|
644
546
|
}
|
|
645
547
|
|
|
646
|
-
|
|
647
|
-
|
|
548
|
+
// Indicate to webpack that this file can be concatenated
|
|
549
|
+
/* harmony default export */ const setPublicPath = (null);
|
|
550
|
+
|
|
551
|
+
;// external {"commonjs":"vue","commonjs2":"vue","root":"Vue"}
|
|
552
|
+
const external_commonjs_vue_commonjs2_vue_root_Vue_namespaceObject = require("vue");
|
|
553
|
+
;// ./node_modules/vue-loader/dist/templateLoader.js??ruleSet[1].rules[2]!./node_modules/vue-loader/dist/index.js??ruleSet[0].use[0]!./src/LoaderVuex.vue?vue&type=template&id=1be9be07&scoped=true
|
|
554
|
+
|
|
555
|
+
|
|
556
|
+
const _hoisted_1 = ["model-value", "opacity", "z-index"]
|
|
557
|
+
const _hoisted_2 = ["size", "color"]
|
|
558
|
+
|
|
559
|
+
function render(_ctx, _cache, $props, $setup, $data, $options) {
|
|
560
|
+
return ((0,external_commonjs_vue_commonjs2_vue_root_Vue_namespaceObject.openBlock)(), (0,external_commonjs_vue_commonjs2_vue_root_Vue_namespaceObject.createElementBlock)("v-overlay", {
|
|
561
|
+
"model-value": $options.isLoading,
|
|
562
|
+
opacity: $props.opacity,
|
|
563
|
+
"z-index": $props.zIndex
|
|
564
|
+
}, [
|
|
565
|
+
(0,external_commonjs_vue_commonjs2_vue_root_Vue_namespaceObject.createElementVNode)("v-progress-circular", {
|
|
566
|
+
indeterminate: "",
|
|
567
|
+
size: $props.size,
|
|
568
|
+
color: $props.color
|
|
569
|
+
}, null, 8, _hoisted_2)
|
|
570
|
+
], 8, _hoisted_1))
|
|
648
571
|
}
|
|
572
|
+
;// ./src/LoaderVuex.vue?vue&type=template&id=1be9be07&scoped=true
|
|
649
573
|
|
|
650
|
-
|
|
651
|
-
closeLoader(state) {
|
|
652
|
-
state.loaderDialog = false
|
|
653
|
-
},
|
|
654
|
-
openLoader(state) {
|
|
655
|
-
state.loaderDialog = true
|
|
656
|
-
}
|
|
657
|
-
}
|
|
574
|
+
;// ./node_modules/vue-loader/dist/index.js??ruleSet[0].use[0]!./src/LoaderVuex.vue?vue&type=script&lang=js
|
|
658
575
|
|
|
659
|
-
const
|
|
660
|
-
|
|
661
|
-
|
|
576
|
+
/* harmony default export */ const LoaderVuexvue_type_script_lang_js = ({
|
|
577
|
+
name: 'loader-vuex',
|
|
578
|
+
props: {
|
|
579
|
+
opacity: {
|
|
580
|
+
type: Number,
|
|
581
|
+
default: 0.7
|
|
582
|
+
},
|
|
583
|
+
zIndex: {
|
|
584
|
+
type: Number,
|
|
585
|
+
default: 5
|
|
586
|
+
},
|
|
587
|
+
size: {
|
|
588
|
+
type: Number,
|
|
589
|
+
default: 64
|
|
590
|
+
},
|
|
591
|
+
color: {
|
|
592
|
+
type: String,
|
|
593
|
+
default: 'primary'
|
|
594
|
+
}
|
|
662
595
|
},
|
|
663
|
-
|
|
664
|
-
|
|
596
|
+
computed: {
|
|
597
|
+
isLoading() {
|
|
598
|
+
return this.$store.state.loaderModule.loaderDialog
|
|
599
|
+
}
|
|
665
600
|
}
|
|
666
|
-
}
|
|
667
|
-
|
|
668
|
-
const loaderModule = {
|
|
669
|
-
state,
|
|
670
|
-
getters,
|
|
671
|
-
mutations,
|
|
672
|
-
actions
|
|
673
|
-
}
|
|
601
|
+
});
|
|
674
602
|
|
|
675
|
-
|
|
603
|
+
;// ./src/LoaderVuex.vue?vue&type=script&lang=js
|
|
604
|
+
|
|
605
|
+
// EXTERNAL MODULE: ./node_modules/vue-style-loader/index.js??clonedRuleSet-12.use[0]!./node_modules/css-loader/dist/cjs.js??clonedRuleSet-12.use[1]!./node_modules/vue-loader/dist/stylePostLoader.js!./node_modules/postcss-loader/dist/cjs.js??clonedRuleSet-12.use[2]!./node_modules/postcss-loader/dist/cjs.js??clonedRuleSet-12.use[3]!./node_modules/vue-loader/dist/index.js??ruleSet[0].use[0]!./src/LoaderVuex.vue?vue&type=style&index=0&id=1be9be07&scoped=true&lang=css
|
|
606
|
+
var LoaderVuexvue_type_style_index_0_id_1be9be07_scoped_true_lang_css = __webpack_require__(631);
|
|
607
|
+
;// ./src/LoaderVuex.vue?vue&type=style&index=0&id=1be9be07&scoped=true&lang=css
|
|
676
608
|
|
|
677
|
-
|
|
678
|
-
|
|
609
|
+
// EXTERNAL MODULE: ./node_modules/vue-loader/dist/exportHelper.js
|
|
610
|
+
var exportHelper = __webpack_require__(262);
|
|
611
|
+
;// ./src/LoaderVuex.vue
|
|
679
612
|
|
|
680
|
-
// style-loader: Adds some css to the DOM by adding a <style> tag
|
|
681
613
|
|
|
682
|
-
// load the styles
|
|
683
|
-
var content = __webpack_require__("ac9e");
|
|
684
|
-
if(content.__esModule) content = content.default;
|
|
685
|
-
if(typeof content === 'string') content = [[module.i, content, '']];
|
|
686
|
-
if(content.locals) module.exports = content.locals;
|
|
687
|
-
// add the styles to the DOM
|
|
688
|
-
var add = __webpack_require__("499e").default
|
|
689
|
-
var update = add("0e5a130f", content, true, {"sourceMap":false,"shadowMode":false});
|
|
690
614
|
|
|
691
|
-
/***/ }),
|
|
692
615
|
|
|
693
|
-
|
|
694
|
-
/***/ (function(module, exports, __webpack_require__) {
|
|
616
|
+
;
|
|
695
617
|
|
|
696
|
-
// Imports
|
|
697
|
-
var ___CSS_LOADER_API_IMPORT___ = __webpack_require__("24fb");
|
|
698
|
-
exports = ___CSS_LOADER_API_IMPORT___(false);
|
|
699
|
-
// Module
|
|
700
|
-
exports.push([module.i, ".v-overlay[data-v-76519c8e]{display:flex;align-items:center;justify-content:center}", ""]);
|
|
701
|
-
// Exports
|
|
702
|
-
module.exports = exports;
|
|
703
|
-
|
|
704
|
-
|
|
705
|
-
/***/ }),
|
|
706
618
|
|
|
707
|
-
|
|
708
|
-
/***/ (function(module, __webpack_exports__, __webpack_require__) {
|
|
619
|
+
const __exports__ = /*#__PURE__*/(0,exportHelper/* default */.A)(LoaderVuexvue_type_script_lang_js, [['render',render],['__scopeId',"data-v-1be9be07"]])
|
|
709
620
|
|
|
710
|
-
|
|
711
|
-
|
|
712
|
-
|
|
713
|
-
|
|
714
|
-
|
|
715
|
-
|
|
621
|
+
/* harmony default export */ const LoaderVuex = (__exports__);
|
|
622
|
+
;// ./src/loaderModule.js
|
|
623
|
+
const loaderModule = {
|
|
624
|
+
namespaced: true,
|
|
625
|
+
state() {
|
|
626
|
+
return {
|
|
627
|
+
loaderDialog: false
|
|
628
|
+
}
|
|
629
|
+
},
|
|
630
|
+
getters: {
|
|
631
|
+
isLoading: (state) => state.loaderDialog
|
|
632
|
+
},
|
|
633
|
+
mutations: {
|
|
634
|
+
closeLoader(state) {
|
|
635
|
+
state.loaderDialog = false
|
|
636
|
+
},
|
|
637
|
+
openLoader(state) {
|
|
638
|
+
state.loaderDialog = true
|
|
639
|
+
},
|
|
640
|
+
},
|
|
641
|
+
actions: {
|
|
642
|
+
show({ commit }) {
|
|
643
|
+
commit('openLoader')
|
|
644
|
+
},
|
|
645
|
+
hide({ commit }) {
|
|
646
|
+
commit('closeLoader')
|
|
647
|
+
}
|
|
648
|
+
}
|
|
649
|
+
}
|
|
716
650
|
|
|
651
|
+
;// ./src/index.js
|
|
717
652
|
// Uvozimo Vue i potrebne resurse
|
|
718
653
|
|
|
719
654
|
|
|
720
655
|
|
|
721
|
-
const install = (
|
|
656
|
+
const install = (app, { store }) => {
|
|
722
657
|
if (!store) {
|
|
723
658
|
console.error('Please provide a Vuex store')
|
|
724
659
|
return
|
|
725
660
|
}
|
|
726
|
-
|
|
661
|
+
|
|
727
662
|
// Register the Vuex module
|
|
728
|
-
store.registerModule('loaderModule',
|
|
729
|
-
|
|
663
|
+
store.registerModule('loaderModule', loaderModule)
|
|
664
|
+
|
|
730
665
|
// Register the component globally
|
|
731
|
-
|
|
666
|
+
app.component('loader-vuex', LoaderVuex)
|
|
732
667
|
}
|
|
733
668
|
|
|
734
669
|
// Create plugin
|
|
735
|
-
const
|
|
670
|
+
const src_plugin = {
|
|
736
671
|
install
|
|
737
672
|
}
|
|
738
673
|
|
|
@@ -740,90 +675,30 @@ const plugin = {
|
|
|
740
675
|
let GlobalVue = null
|
|
741
676
|
if (typeof window !== 'undefined') {
|
|
742
677
|
GlobalVue = window.Vue
|
|
743
|
-
} else if (typeof
|
|
744
|
-
GlobalVue =
|
|
678
|
+
} else if (typeof __webpack_require__.g !== 'undefined') {
|
|
679
|
+
GlobalVue = __webpack_require__.g.Vue
|
|
745
680
|
}
|
|
746
|
-
if (GlobalVue) {
|
|
747
|
-
GlobalVue.use(
|
|
681
|
+
if (GlobalVue && GlobalVue.use) {
|
|
682
|
+
GlobalVue.use(src_plugin)
|
|
748
683
|
}
|
|
749
684
|
|
|
750
685
|
// Export everything
|
|
751
686
|
|
|
752
687
|
|
|
753
|
-
/* harmony default export */
|
|
754
|
-
LoaderVuex:
|
|
755
|
-
loaderModule:
|
|
688
|
+
/* harmony default export */ const src_0 = ({
|
|
689
|
+
LoaderVuex: LoaderVuex,
|
|
690
|
+
loaderModule: loaderModule
|
|
756
691
|
});
|
|
757
692
|
|
|
758
|
-
|
|
693
|
+
;// ./node_modules/@vue/cli-service/lib/commands/build/entry-lib.js
|
|
759
694
|
|
|
760
|
-
/***/ }),
|
|
761
695
|
|
|
762
|
-
|
|
763
|
-
/***/ (function(module, exports) {
|
|
696
|
+
/* harmony default export */ const entry_lib = (src_0);
|
|
764
697
|
|
|
765
|
-
var g;
|
|
766
698
|
|
|
767
|
-
// This works in non-strict mode
|
|
768
|
-
g = (function() {
|
|
769
|
-
return this;
|
|
770
699
|
})();
|
|
771
700
|
|
|
772
|
-
|
|
773
|
-
|
|
774
|
-
|
|
775
|
-
} catch (e) {
|
|
776
|
-
// This works if the window reference is available
|
|
777
|
-
if (typeof window === "object") g = window;
|
|
778
|
-
}
|
|
779
|
-
|
|
780
|
-
// g can still be undefined, but nothing to do about it...
|
|
781
|
-
// We return undefined, instead of nothing here, so it's
|
|
782
|
-
// easier to handle this case. if(!global) { ...}
|
|
783
|
-
|
|
784
|
-
module.exports = g;
|
|
785
|
-
|
|
786
|
-
|
|
787
|
-
/***/ }),
|
|
788
|
-
|
|
789
|
-
/***/ "fb15":
|
|
790
|
-
/***/ (function(module, __webpack_exports__, __webpack_require__) {
|
|
791
|
-
|
|
792
|
-
"use strict";
|
|
793
|
-
// ESM COMPAT FLAG
|
|
794
|
-
__webpack_require__.r(__webpack_exports__);
|
|
795
|
-
|
|
796
|
-
// EXPORTS
|
|
797
|
-
__webpack_require__.d(__webpack_exports__, "LoaderVuex", function() { return /* reexport */ src_0["a" /* LoaderVuex */]; });
|
|
798
|
-
__webpack_require__.d(__webpack_exports__, "loaderModule", function() { return /* reexport */ src_0["c" /* loaderModule */]; });
|
|
799
|
-
|
|
800
|
-
// CONCATENATED MODULE: ./node_modules/@vue/cli-service/lib/commands/build/setPublicPath.js
|
|
801
|
-
// This file is imported into lib/wc client bundles.
|
|
802
|
-
|
|
803
|
-
if (typeof window !== 'undefined') {
|
|
804
|
-
var currentScript = window.document.currentScript
|
|
805
|
-
if (false) { var getCurrentScript; }
|
|
806
|
-
|
|
807
|
-
var src = currentScript && currentScript.src.match(/(.+\/)[^/]+\.js(\?.*)?$/)
|
|
808
|
-
if (src) {
|
|
809
|
-
__webpack_require__.p = src[1] // eslint-disable-line
|
|
810
|
-
}
|
|
811
|
-
}
|
|
812
|
-
|
|
813
|
-
// Indicate to webpack that this file can be concatenated
|
|
814
|
-
/* harmony default export */ var setPublicPath = (null);
|
|
815
|
-
|
|
816
|
-
// EXTERNAL MODULE: ./src/index.js
|
|
817
|
-
var src_0 = __webpack_require__("b635");
|
|
818
|
-
|
|
819
|
-
// CONCATENATED MODULE: ./node_modules/@vue/cli-service/lib/commands/build/entry-lib.js
|
|
820
|
-
|
|
821
|
-
|
|
822
|
-
/* harmony default export */ var entry_lib = __webpack_exports__["default"] = (src_0["b" /* default */]);
|
|
823
|
-
|
|
824
|
-
|
|
825
|
-
|
|
826
|
-
/***/ })
|
|
827
|
-
|
|
828
|
-
/******/ })["default"];
|
|
701
|
+
module.exports = __webpack_exports__;
|
|
702
|
+
/******/ })()
|
|
703
|
+
;
|
|
829
704
|
//# sourceMappingURL=loader-module.common.js.map
|