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