loader-module 1.0.1 → 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 -470
- package/dist/loader-module.common.js.map +1 -1
- package/dist/loader-module.umd.js +346 -471
- 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,286 +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":"7a3267dc-vue-loader-template"}!./node_modules/@vue/cli-service/node_modules/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!./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 () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;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
|
-
var staticRenderFns = []
|
|
208
135
|
|
|
136
|
+
module.exports = function (i) {
|
|
137
|
+
return i[1];
|
|
138
|
+
};
|
|
209
139
|
|
|
210
|
-
|
|
211
|
-
|
|
212
|
-
// 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
|
|
213
|
-
//
|
|
214
|
-
//
|
|
215
|
-
//
|
|
216
|
-
//
|
|
217
|
-
//
|
|
218
|
-
//
|
|
219
|
-
//
|
|
220
|
-
//
|
|
221
|
-
//
|
|
222
|
-
//
|
|
223
|
-
|
|
224
|
-
/* harmony default export */ var LoaderVuexvue_type_script_lang_js = ({
|
|
225
|
-
name: 'loader-vuex',
|
|
226
|
-
props: {
|
|
227
|
-
opacity: {
|
|
228
|
-
type: Number,
|
|
229
|
-
default: 0.7
|
|
230
|
-
},
|
|
231
|
-
zIndex: {
|
|
232
|
-
type: Number,
|
|
233
|
-
default: 5
|
|
234
|
-
},
|
|
235
|
-
size: {
|
|
236
|
-
type: Number,
|
|
237
|
-
default: 64
|
|
238
|
-
},
|
|
239
|
-
color: {
|
|
240
|
-
type: String,
|
|
241
|
-
default: 'primary'
|
|
242
|
-
}
|
|
243
|
-
},
|
|
244
|
-
computed: {
|
|
245
|
-
isLoading() {
|
|
246
|
-
return this.$store.state.loaderModule.loaderDialog
|
|
247
|
-
}
|
|
248
|
-
}
|
|
249
|
-
});
|
|
250
|
-
|
|
251
|
-
// CONCATENATED MODULE: ./src/LoaderVuex.vue?vue&type=script&lang=js
|
|
252
|
-
/* harmony default export */ var src_LoaderVuexvue_type_script_lang_js = (LoaderVuexvue_type_script_lang_js);
|
|
253
|
-
// EXTERNAL MODULE: ./src/LoaderVuex.vue?vue&type=style&index=0&id=76519c8e&prod&scoped=true&lang=css
|
|
254
|
-
var LoaderVuexvue_type_style_index_0_id_76519c8e_prod_scoped_true_lang_css = __webpack_require__("55c5");
|
|
255
|
-
|
|
256
|
-
// CONCATENATED MODULE: ./node_modules/@vue/cli-service/node_modules/vue-loader/lib/runtime/componentNormalizer.js
|
|
257
|
-
/* globals __VUE_SSR_CONTEXT__ */
|
|
258
|
-
|
|
259
|
-
// IMPORTANT: Do NOT use ES2015 features in this file (except for modules).
|
|
260
|
-
// This module is a runtime utility for cleaner component module output and will
|
|
261
|
-
// be included in the final webpack user bundle.
|
|
262
|
-
|
|
263
|
-
function normalizeComponent(
|
|
264
|
-
scriptExports,
|
|
265
|
-
render,
|
|
266
|
-
staticRenderFns,
|
|
267
|
-
functionalTemplate,
|
|
268
|
-
injectStyles,
|
|
269
|
-
scopeId,
|
|
270
|
-
moduleIdentifier /* server only */,
|
|
271
|
-
shadowMode /* vue-cli only */
|
|
272
|
-
) {
|
|
273
|
-
// Vue.extend constructor export interop
|
|
274
|
-
var options =
|
|
275
|
-
typeof scriptExports === 'function' ? scriptExports.options : scriptExports
|
|
276
|
-
|
|
277
|
-
// render functions
|
|
278
|
-
if (render) {
|
|
279
|
-
options.render = render
|
|
280
|
-
options.staticRenderFns = staticRenderFns
|
|
281
|
-
options._compiled = true
|
|
282
|
-
}
|
|
283
|
-
|
|
284
|
-
// functional template
|
|
285
|
-
if (functionalTemplate) {
|
|
286
|
-
options.functional = true
|
|
287
|
-
}
|
|
140
|
+
/***/ },
|
|
288
141
|
|
|
289
|
-
|
|
290
|
-
|
|
291
|
-
options._scopeId = 'data-v-' + scopeId
|
|
292
|
-
}
|
|
142
|
+
/***/ 262
|
|
143
|
+
(__unused_webpack_module, exports) {
|
|
293
144
|
|
|
294
|
-
|
|
295
|
-
|
|
296
|
-
|
|
297
|
-
|
|
298
|
-
|
|
299
|
-
|
|
300
|
-
|
|
301
|
-
|
|
302
|
-
|
|
303
|
-
|
|
304
|
-
if (!context && typeof __VUE_SSR_CONTEXT__ !== 'undefined') {
|
|
305
|
-
context = __VUE_SSR_CONTEXT__
|
|
306
|
-
}
|
|
307
|
-
// inject component styles
|
|
308
|
-
if (injectStyles) {
|
|
309
|
-
injectStyles.call(this, context)
|
|
310
|
-
}
|
|
311
|
-
// register component module identifier for async chunk inferrence
|
|
312
|
-
if (context && context._registeredComponents) {
|
|
313
|
-
context._registeredComponents.add(moduleIdentifier)
|
|
314
|
-
}
|
|
315
|
-
}
|
|
316
|
-
// used by ssr in case component is cached and beforeCreate
|
|
317
|
-
// never gets called
|
|
318
|
-
options._ssrRegister = hook
|
|
319
|
-
} else if (injectStyles) {
|
|
320
|
-
hook = shadowMode
|
|
321
|
-
? function () {
|
|
322
|
-
injectStyles.call(
|
|
323
|
-
this,
|
|
324
|
-
(options.functional ? this.parent : this).$root.$options.shadowRoot
|
|
325
|
-
)
|
|
326
|
-
}
|
|
327
|
-
: injectStyles
|
|
328
|
-
}
|
|
329
|
-
|
|
330
|
-
if (hook) {
|
|
331
|
-
if (options.functional) {
|
|
332
|
-
// for template-only hot-reload because in that case the render fn doesn't
|
|
333
|
-
// go through the normalizer
|
|
334
|
-
options._injectStyles = hook
|
|
335
|
-
// register for functional component in vue file
|
|
336
|
-
var originalRender = options.render
|
|
337
|
-
options.render = function renderWithStyleInjection(h, context) {
|
|
338
|
-
hook.call(context)
|
|
339
|
-
return originalRender(h, context)
|
|
340
|
-
}
|
|
341
|
-
} else {
|
|
342
|
-
// inject component registration as beforeCreate hook
|
|
343
|
-
var existing = options.beforeCreate
|
|
344
|
-
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;
|
|
345
155
|
}
|
|
346
|
-
|
|
347
|
-
|
|
348
|
-
return {
|
|
349
|
-
exports: scriptExports,
|
|
350
|
-
options: options
|
|
351
|
-
}
|
|
352
|
-
}
|
|
353
|
-
|
|
354
|
-
// CONCATENATED MODULE: ./src/LoaderVuex.vue
|
|
355
|
-
|
|
356
|
-
|
|
357
|
-
|
|
156
|
+
return target;
|
|
157
|
+
};
|
|
358
158
|
|
|
359
159
|
|
|
160
|
+
/***/ },
|
|
360
161
|
|
|
361
|
-
|
|
162
|
+
/***/ 775
|
|
163
|
+
(module, __unused_webpack_exports, __webpack_require__) {
|
|
362
164
|
|
|
363
|
-
|
|
364
|
-
src_LoaderVuexvue_type_script_lang_js,
|
|
365
|
-
render,
|
|
366
|
-
staticRenderFns,
|
|
367
|
-
false,
|
|
368
|
-
null,
|
|
369
|
-
"76519c8e",
|
|
370
|
-
null
|
|
371
|
-
|
|
372
|
-
)
|
|
165
|
+
// style-loader: Adds some css to the DOM by adding a <style> tag
|
|
373
166
|
|
|
374
|
-
|
|
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});
|
|
375
175
|
|
|
376
|
-
/***/ }
|
|
176
|
+
/***/ },
|
|
377
177
|
|
|
378
|
-
/***/
|
|
379
|
-
|
|
178
|
+
/***/ 548
|
|
179
|
+
(__unused_webpack_module, __webpack_exports__, __webpack_require__) {
|
|
380
180
|
|
|
381
181
|
"use strict";
|
|
382
|
-
// ESM COMPAT FLAG
|
|
383
|
-
__webpack_require__.r(__webpack_exports__);
|
|
384
182
|
|
|
385
183
|
// EXPORTS
|
|
386
|
-
__webpack_require__.d(__webpack_exports__,
|
|
184
|
+
__webpack_require__.d(__webpack_exports__, {
|
|
185
|
+
A: () => (/* binding */ addStylesClient)
|
|
186
|
+
});
|
|
387
187
|
|
|
388
|
-
|
|
188
|
+
;// ./node_modules/vue-style-loader/lib/listToStyles.js
|
|
389
189
|
/**
|
|
390
190
|
* Translates the list format produced by css-loader into something
|
|
391
191
|
* easier to manipulate.
|
|
@@ -414,7 +214,7 @@ function listToStyles (parentId, list) {
|
|
|
414
214
|
return styles
|
|
415
215
|
}
|
|
416
216
|
|
|
417
|
-
|
|
217
|
+
;// ./node_modules/vue-style-loader/lib/addStylesClient.js
|
|
418
218
|
/*
|
|
419
219
|
MIT License http://www.opensource.org/licenses/mit-license.php
|
|
420
220
|
Author Tobias Koppers @sokra
|
|
@@ -639,118 +439,253 @@ function applyToTag (styleElement, obj) {
|
|
|
639
439
|
}
|
|
640
440
|
|
|
641
441
|
|
|
642
|
-
/***/ }
|
|
442
|
+
/***/ },
|
|
643
443
|
|
|
644
|
-
/***/
|
|
645
|
-
|
|
444
|
+
/***/ 274
|
|
445
|
+
(module) {
|
|
646
446
|
|
|
647
447
|
"use strict";
|
|
648
|
-
|
|
649
|
-
/* 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__);
|
|
650
|
-
/* unused harmony reexport * */
|
|
448
|
+
module.exports = __WEBPACK_EXTERNAL_MODULE__274__;
|
|
651
449
|
|
|
450
|
+
/***/ }
|
|
652
451
|
|
|
653
|
-
|
|
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__);
|
|
654
543
|
|
|
655
|
-
|
|
656
|
-
|
|
544
|
+
// EXPORTS
|
|
545
|
+
__webpack_require__.d(__webpack_exports__, {
|
|
546
|
+
LoaderVuex: () => (/* reexport */ LoaderVuex),
|
|
547
|
+
"default": () => (/* binding */ entry_lib),
|
|
548
|
+
loaderModule: () => (/* reexport */ loaderModule)
|
|
549
|
+
});
|
|
657
550
|
|
|
658
|
-
|
|
659
|
-
/*
|
|
660
|
-
|
|
661
|
-
loaderDialog: false
|
|
662
|
-
}
|
|
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.
|
|
663
554
|
|
|
664
|
-
|
|
665
|
-
|
|
666
|
-
|
|
555
|
+
if (typeof window !== 'undefined') {
|
|
556
|
+
var currentScript = window.document.currentScript
|
|
557
|
+
if (false) // removed by dead control flow
|
|
558
|
+
{ var getCurrentScript; }
|
|
667
559
|
|
|
668
|
-
|
|
669
|
-
|
|
670
|
-
|
|
671
|
-
},
|
|
672
|
-
openLoader(state) {
|
|
673
|
-
state.loaderDialog = true
|
|
560
|
+
var src = currentScript && currentScript.src.match(/(.+\/)[^/]+\.js(\?.*)?$/)
|
|
561
|
+
if (src) {
|
|
562
|
+
__webpack_require__.p = src[1] // eslint-disable-line
|
|
674
563
|
}
|
|
675
564
|
}
|
|
676
565
|
|
|
677
|
-
|
|
678
|
-
|
|
679
|
-
|
|
680
|
-
|
|
681
|
-
|
|
682
|
-
|
|
683
|
-
|
|
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))
|
|
684
589
|
}
|
|
590
|
+
;// ./src/LoaderVuex.vue?vue&type=template&id=1be9be07&scoped=true
|
|
685
591
|
|
|
686
|
-
|
|
687
|
-
state,
|
|
688
|
-
getters,
|
|
689
|
-
mutations,
|
|
690
|
-
actions
|
|
691
|
-
}
|
|
692
|
-
|
|
693
|
-
/***/ }),
|
|
592
|
+
;// ./node_modules/vue-loader/dist/index.js??ruleSet[0].use[0]!./src/LoaderVuex.vue?vue&type=script&lang=js
|
|
694
593
|
|
|
695
|
-
|
|
696
|
-
|
|
697
|
-
|
|
698
|
-
|
|
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
|
+
});
|
|
699
620
|
|
|
700
|
-
|
|
701
|
-
|
|
702
|
-
|
|
703
|
-
|
|
704
|
-
|
|
705
|
-
// add the styles to the DOM
|
|
706
|
-
var add = __webpack_require__("499e").default
|
|
707
|
-
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
|
|
708
626
|
|
|
709
|
-
|
|
627
|
+
// EXTERNAL MODULE: ./node_modules/vue-loader/dist/exportHelper.js
|
|
628
|
+
var exportHelper = __webpack_require__(262);
|
|
629
|
+
;// ./src/LoaderVuex.vue
|
|
710
630
|
|
|
711
|
-
/***/ "ac9e":
|
|
712
|
-
/***/ (function(module, exports, __webpack_require__) {
|
|
713
631
|
|
|
714
|
-
// Imports
|
|
715
|
-
var ___CSS_LOADER_API_IMPORT___ = __webpack_require__("24fb");
|
|
716
|
-
exports = ___CSS_LOADER_API_IMPORT___(false);
|
|
717
|
-
// Module
|
|
718
|
-
exports.push([module.i, ".v-overlay[data-v-76519c8e]{display:flex;align-items:center;justify-content:center}", ""]);
|
|
719
|
-
// Exports
|
|
720
|
-
module.exports = exports;
|
|
721
632
|
|
|
722
633
|
|
|
723
|
-
|
|
634
|
+
;
|
|
724
635
|
|
|
725
|
-
/***/ "b635":
|
|
726
|
-
/***/ (function(module, __webpack_exports__, __webpack_require__) {
|
|
727
636
|
|
|
728
|
-
|
|
729
|
-
/* WEBPACK VAR INJECTION */(function(global) {/* harmony import */ var _LoaderVuex_vue__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__("2764");
|
|
730
|
-
/* 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"]])
|
|
731
638
|
|
|
732
|
-
/* harmony
|
|
733
|
-
|
|
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
|
+
}
|
|
734
668
|
|
|
669
|
+
;// ./src/index.js
|
|
735
670
|
// Uvozimo Vue i potrebne resurse
|
|
736
671
|
|
|
737
672
|
|
|
738
673
|
|
|
739
|
-
const install = (
|
|
674
|
+
const install = (app, { store }) => {
|
|
740
675
|
if (!store) {
|
|
741
676
|
console.error('Please provide a Vuex store')
|
|
742
677
|
return
|
|
743
678
|
}
|
|
744
|
-
|
|
679
|
+
|
|
745
680
|
// Register the Vuex module
|
|
746
|
-
store.registerModule('loaderModule',
|
|
747
|
-
|
|
681
|
+
store.registerModule('loaderModule', loaderModule)
|
|
682
|
+
|
|
748
683
|
// Register the component globally
|
|
749
|
-
|
|
684
|
+
app.component('loader-vuex', LoaderVuex)
|
|
750
685
|
}
|
|
751
686
|
|
|
752
687
|
// Create plugin
|
|
753
|
-
const
|
|
688
|
+
const src_plugin = {
|
|
754
689
|
install
|
|
755
690
|
}
|
|
756
691
|
|
|
@@ -758,91 +693,31 @@ const plugin = {
|
|
|
758
693
|
let GlobalVue = null
|
|
759
694
|
if (typeof window !== 'undefined') {
|
|
760
695
|
GlobalVue = window.Vue
|
|
761
|
-
} else if (typeof
|
|
762
|
-
GlobalVue =
|
|
696
|
+
} else if (typeof __webpack_require__.g !== 'undefined') {
|
|
697
|
+
GlobalVue = __webpack_require__.g.Vue
|
|
763
698
|
}
|
|
764
|
-
if (GlobalVue) {
|
|
765
|
-
GlobalVue.use(
|
|
699
|
+
if (GlobalVue && GlobalVue.use) {
|
|
700
|
+
GlobalVue.use(src_plugin)
|
|
766
701
|
}
|
|
767
702
|
|
|
768
703
|
// Export everything
|
|
769
704
|
|
|
770
705
|
|
|
771
|
-
/* harmony default export */
|
|
772
|
-
LoaderVuex:
|
|
773
|
-
loaderModule:
|
|
706
|
+
/* harmony default export */ const src_0 = ({
|
|
707
|
+
LoaderVuex: LoaderVuex,
|
|
708
|
+
loaderModule: loaderModule
|
|
774
709
|
});
|
|
775
710
|
|
|
776
|
-
|
|
711
|
+
;// ./node_modules/@vue/cli-service/lib/commands/build/entry-lib.js
|
|
777
712
|
|
|
778
|
-
/***/ }),
|
|
779
713
|
|
|
780
|
-
|
|
781
|
-
/***/ (function(module, exports) {
|
|
714
|
+
/* harmony default export */ const entry_lib = (src_0);
|
|
782
715
|
|
|
783
|
-
var g;
|
|
784
716
|
|
|
785
|
-
// This works in non-strict mode
|
|
786
|
-
g = (function() {
|
|
787
|
-
return this;
|
|
788
717
|
})();
|
|
789
718
|
|
|
790
|
-
|
|
791
|
-
|
|
792
|
-
|
|
793
|
-
} catch (e) {
|
|
794
|
-
// This works if the window reference is available
|
|
795
|
-
if (typeof window === "object") g = window;
|
|
796
|
-
}
|
|
797
|
-
|
|
798
|
-
// g can still be undefined, but nothing to do about it...
|
|
799
|
-
// We return undefined, instead of nothing here, so it's
|
|
800
|
-
// easier to handle this case. if(!global) { ...}
|
|
801
|
-
|
|
802
|
-
module.exports = g;
|
|
803
|
-
|
|
804
|
-
|
|
805
|
-
/***/ }),
|
|
806
|
-
|
|
807
|
-
/***/ "fb15":
|
|
808
|
-
/***/ (function(module, __webpack_exports__, __webpack_require__) {
|
|
809
|
-
|
|
810
|
-
"use strict";
|
|
811
|
-
// ESM COMPAT FLAG
|
|
812
|
-
__webpack_require__.r(__webpack_exports__);
|
|
813
|
-
|
|
814
|
-
// EXPORTS
|
|
815
|
-
__webpack_require__.d(__webpack_exports__, "LoaderVuex", function() { return /* reexport */ src_0["a" /* LoaderVuex */]; });
|
|
816
|
-
__webpack_require__.d(__webpack_exports__, "loaderModule", function() { return /* reexport */ src_0["c" /* loaderModule */]; });
|
|
817
|
-
|
|
818
|
-
// CONCATENATED MODULE: ./node_modules/@vue/cli-service/lib/commands/build/setPublicPath.js
|
|
819
|
-
// This file is imported into lib/wc client bundles.
|
|
820
|
-
|
|
821
|
-
if (typeof window !== 'undefined') {
|
|
822
|
-
var currentScript = window.document.currentScript
|
|
823
|
-
if (false) { var getCurrentScript; }
|
|
824
|
-
|
|
825
|
-
var src = currentScript && currentScript.src.match(/(.+\/)[^/]+\.js(\?.*)?$/)
|
|
826
|
-
if (src) {
|
|
827
|
-
__webpack_require__.p = src[1] // eslint-disable-line
|
|
828
|
-
}
|
|
829
|
-
}
|
|
830
|
-
|
|
831
|
-
// Indicate to webpack that this file can be concatenated
|
|
832
|
-
/* harmony default export */ var setPublicPath = (null);
|
|
833
|
-
|
|
834
|
-
// EXTERNAL MODULE: ./src/index.js
|
|
835
|
-
var src_0 = __webpack_require__("b635");
|
|
836
|
-
|
|
837
|
-
// CONCATENATED MODULE: ./node_modules/@vue/cli-service/lib/commands/build/entry-lib.js
|
|
838
|
-
|
|
839
|
-
|
|
840
|
-
/* harmony default export */ var entry_lib = __webpack_exports__["default"] = (src_0["b" /* default */]);
|
|
841
|
-
|
|
842
|
-
|
|
843
|
-
|
|
844
|
-
/***/ })
|
|
845
|
-
|
|
846
|
-
/******/ })["default"];
|
|
719
|
+
/******/ return __webpack_exports__;
|
|
720
|
+
/******/ })()
|
|
721
|
+
;
|
|
847
722
|
});
|
|
848
723
|
//# sourceMappingURL=loader-module.umd.js.map
|