mediacube-ui 0.1.79 → 0.1.81
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/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,8 @@
|
|
|
2
2
|
|
|
3
3
|
All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines.
|
|
4
4
|
|
|
5
|
+
### [0.1.80](https://github.com/MediaCubeCo/mcui/compare/v0.1.79...v0.1.80) (2023-07-21)
|
|
6
|
+
|
|
5
7
|
### [0.1.79](https://github.com/MediaCubeCo/mcui/compare/v0.1.78...v0.1.79) (2023-07-20)
|
|
6
8
|
|
|
7
9
|
### [0.1.78](https://github.com/MediaCubeCo/mcui/compare/v0.1.77...v0.1.78) (2023-07-20)
|
|
@@ -0,0 +1,516 @@
|
|
|
1
|
+
module.exports =
|
|
2
|
+
/******/ (function(modules) { // webpackBootstrap
|
|
3
|
+
/******/ // The module cache
|
|
4
|
+
/******/ var installedModules = {};
|
|
5
|
+
/******/
|
|
6
|
+
/******/ // The require function
|
|
7
|
+
/******/ function __webpack_require__(moduleId) {
|
|
8
|
+
/******/
|
|
9
|
+
/******/ // Check if module is in cache
|
|
10
|
+
/******/ if(installedModules[moduleId]) {
|
|
11
|
+
/******/ return installedModules[moduleId].exports;
|
|
12
|
+
/******/ }
|
|
13
|
+
/******/ // Create a new module (and put it into the cache)
|
|
14
|
+
/******/ var module = installedModules[moduleId] = {
|
|
15
|
+
/******/ i: moduleId,
|
|
16
|
+
/******/ l: false,
|
|
17
|
+
/******/ exports: {}
|
|
18
|
+
/******/ };
|
|
19
|
+
/******/
|
|
20
|
+
/******/ // Execute the module function
|
|
21
|
+
/******/ modules[moduleId].call(module.exports, module, module.exports, __webpack_require__);
|
|
22
|
+
/******/
|
|
23
|
+
/******/ // Flag the module as loaded
|
|
24
|
+
/******/ module.l = true;
|
|
25
|
+
/******/
|
|
26
|
+
/******/ // Return the exports of the module
|
|
27
|
+
/******/ return module.exports;
|
|
28
|
+
/******/ }
|
|
29
|
+
/******/
|
|
30
|
+
/******/
|
|
31
|
+
/******/ // expose the modules object (__webpack_modules__)
|
|
32
|
+
/******/ __webpack_require__.m = modules;
|
|
33
|
+
/******/
|
|
34
|
+
/******/ // expose the module cache
|
|
35
|
+
/******/ __webpack_require__.c = installedModules;
|
|
36
|
+
/******/
|
|
37
|
+
/******/ // define getter function for harmony exports
|
|
38
|
+
/******/ __webpack_require__.d = function(exports, name, getter) {
|
|
39
|
+
/******/ if(!__webpack_require__.o(exports, name)) {
|
|
40
|
+
/******/ Object.defineProperty(exports, name, { enumerable: true, get: getter });
|
|
41
|
+
/******/ }
|
|
42
|
+
/******/ };
|
|
43
|
+
/******/
|
|
44
|
+
/******/ // define __esModule on exports
|
|
45
|
+
/******/ __webpack_require__.r = function(exports) {
|
|
46
|
+
/******/ if(typeof Symbol !== 'undefined' && Symbol.toStringTag) {
|
|
47
|
+
/******/ Object.defineProperty(exports, Symbol.toStringTag, { value: 'Module' });
|
|
48
|
+
/******/ }
|
|
49
|
+
/******/ Object.defineProperty(exports, '__esModule', { value: true });
|
|
50
|
+
/******/ };
|
|
51
|
+
/******/
|
|
52
|
+
/******/ // create a fake namespace object
|
|
53
|
+
/******/ // mode & 1: value is a module id, require it
|
|
54
|
+
/******/ // mode & 2: merge all properties of value into the ns
|
|
55
|
+
/******/ // mode & 4: return value when already ns object
|
|
56
|
+
/******/ // mode & 8|1: behave like require
|
|
57
|
+
/******/ __webpack_require__.t = function(value, mode) {
|
|
58
|
+
/******/ if(mode & 1) value = __webpack_require__(value);
|
|
59
|
+
/******/ if(mode & 8) return value;
|
|
60
|
+
/******/ if((mode & 4) && typeof value === 'object' && value && value.__esModule) return value;
|
|
61
|
+
/******/ var ns = Object.create(null);
|
|
62
|
+
/******/ __webpack_require__.r(ns);
|
|
63
|
+
/******/ Object.defineProperty(ns, 'default', { enumerable: true, value: value });
|
|
64
|
+
/******/ if(mode & 2 && typeof value != 'string') for(var key in value) __webpack_require__.d(ns, key, function(key) { return value[key]; }.bind(null, key));
|
|
65
|
+
/******/ return ns;
|
|
66
|
+
/******/ };
|
|
67
|
+
/******/
|
|
68
|
+
/******/ // getDefaultExport function for compatibility with non-harmony modules
|
|
69
|
+
/******/ __webpack_require__.n = function(module) {
|
|
70
|
+
/******/ var getter = module && module.__esModule ?
|
|
71
|
+
/******/ function getDefault() { return module['default']; } :
|
|
72
|
+
/******/ function getModuleExports() { return module; };
|
|
73
|
+
/******/ __webpack_require__.d(getter, 'a', getter);
|
|
74
|
+
/******/ return getter;
|
|
75
|
+
/******/ };
|
|
76
|
+
/******/
|
|
77
|
+
/******/ // Object.prototype.hasOwnProperty.call
|
|
78
|
+
/******/ __webpack_require__.o = function(object, property) { return Object.prototype.hasOwnProperty.call(object, property); };
|
|
79
|
+
/******/
|
|
80
|
+
/******/ // __webpack_public_path__
|
|
81
|
+
/******/ __webpack_require__.p = "";
|
|
82
|
+
/******/
|
|
83
|
+
/******/
|
|
84
|
+
/******/ // Load entry module and return exports
|
|
85
|
+
/******/ return __webpack_require__(__webpack_require__.s = "fb15");
|
|
86
|
+
/******/ })
|
|
87
|
+
/************************************************************************/
|
|
88
|
+
/******/ ({
|
|
89
|
+
|
|
90
|
+
/***/ "034f":
|
|
91
|
+
/***/ (function(module, __webpack_exports__, __webpack_require__) {
|
|
92
|
+
|
|
93
|
+
"use strict";
|
|
94
|
+
/* harmony import */ var _node_modules_mini_css_extract_plugin_dist_loader_js_ref_6_oneOf_1_0_node_modules_vue_cli_service_node_modules_css_loader_dist_cjs_js_ref_6_oneOf_1_1_node_modules_vue_cli_service_node_modules_vue_loader_lib_loaders_stylePostLoader_js_node_modules_postcss_loader_src_index_js_ref_6_oneOf_1_2_node_modules_cache_loader_dist_cjs_js_ref_0_0_node_modules_vue_cli_service_node_modules_vue_loader_lib_index_js_vue_loader_options_App_vue_vue_type_style_index_0_lang_css___WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__("8b5d");
|
|
95
|
+
/* harmony import */ var _node_modules_mini_css_extract_plugin_dist_loader_js_ref_6_oneOf_1_0_node_modules_vue_cli_service_node_modules_css_loader_dist_cjs_js_ref_6_oneOf_1_1_node_modules_vue_cli_service_node_modules_vue_loader_lib_loaders_stylePostLoader_js_node_modules_postcss_loader_src_index_js_ref_6_oneOf_1_2_node_modules_cache_loader_dist_cjs_js_ref_0_0_node_modules_vue_cli_service_node_modules_vue_loader_lib_index_js_vue_loader_options_App_vue_vue_type_style_index_0_lang_css___WEBPACK_IMPORTED_MODULE_0___default = /*#__PURE__*/__webpack_require__.n(_node_modules_mini_css_extract_plugin_dist_loader_js_ref_6_oneOf_1_0_node_modules_vue_cli_service_node_modules_css_loader_dist_cjs_js_ref_6_oneOf_1_1_node_modules_vue_cli_service_node_modules_vue_loader_lib_loaders_stylePostLoader_js_node_modules_postcss_loader_src_index_js_ref_6_oneOf_1_2_node_modules_cache_loader_dist_cjs_js_ref_0_0_node_modules_vue_cli_service_node_modules_vue_loader_lib_index_js_vue_loader_options_App_vue_vue_type_style_index_0_lang_css___WEBPACK_IMPORTED_MODULE_0__);
|
|
96
|
+
/* unused harmony reexport * */
|
|
97
|
+
/* unused harmony default export */ var _unused_webpack_default_export = (_node_modules_mini_css_extract_plugin_dist_loader_js_ref_6_oneOf_1_0_node_modules_vue_cli_service_node_modules_css_loader_dist_cjs_js_ref_6_oneOf_1_1_node_modules_vue_cli_service_node_modules_vue_loader_lib_loaders_stylePostLoader_js_node_modules_postcss_loader_src_index_js_ref_6_oneOf_1_2_node_modules_cache_loader_dist_cjs_js_ref_0_0_node_modules_vue_cli_service_node_modules_vue_loader_lib_index_js_vue_loader_options_App_vue_vue_type_style_index_0_lang_css___WEBPACK_IMPORTED_MODULE_0___default.a);
|
|
98
|
+
|
|
99
|
+
/***/ }),
|
|
100
|
+
|
|
101
|
+
/***/ "1f00":
|
|
102
|
+
/***/ (function(module, __webpack_exports__, __webpack_require__) {
|
|
103
|
+
|
|
104
|
+
"use strict";
|
|
105
|
+
/* harmony import */ var _node_modules_mini_css_extract_plugin_dist_loader_js_ref_6_oneOf_1_0_node_modules_vue_cli_service_node_modules_css_loader_dist_cjs_js_ref_6_oneOf_1_1_node_modules_vue_cli_service_node_modules_vue_loader_lib_loaders_stylePostLoader_js_node_modules_postcss_loader_src_index_js_ref_6_oneOf_1_2_node_modules_cache_loader_dist_cjs_js_ref_0_0_node_modules_vue_cli_service_node_modules_vue_loader_lib_index_js_vue_loader_options_HelloWorld_vue_vue_type_style_index_0_id_1474affc_scoped_true_lang_css___WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__("88ff");
|
|
106
|
+
/* harmony import */ var _node_modules_mini_css_extract_plugin_dist_loader_js_ref_6_oneOf_1_0_node_modules_vue_cli_service_node_modules_css_loader_dist_cjs_js_ref_6_oneOf_1_1_node_modules_vue_cli_service_node_modules_vue_loader_lib_loaders_stylePostLoader_js_node_modules_postcss_loader_src_index_js_ref_6_oneOf_1_2_node_modules_cache_loader_dist_cjs_js_ref_0_0_node_modules_vue_cli_service_node_modules_vue_loader_lib_index_js_vue_loader_options_HelloWorld_vue_vue_type_style_index_0_id_1474affc_scoped_true_lang_css___WEBPACK_IMPORTED_MODULE_0___default = /*#__PURE__*/__webpack_require__.n(_node_modules_mini_css_extract_plugin_dist_loader_js_ref_6_oneOf_1_0_node_modules_vue_cli_service_node_modules_css_loader_dist_cjs_js_ref_6_oneOf_1_1_node_modules_vue_cli_service_node_modules_vue_loader_lib_loaders_stylePostLoader_js_node_modules_postcss_loader_src_index_js_ref_6_oneOf_1_2_node_modules_cache_loader_dist_cjs_js_ref_0_0_node_modules_vue_cli_service_node_modules_vue_loader_lib_index_js_vue_loader_options_HelloWorld_vue_vue_type_style_index_0_id_1474affc_scoped_true_lang_css___WEBPACK_IMPORTED_MODULE_0__);
|
|
107
|
+
/* unused harmony reexport * */
|
|
108
|
+
/* unused harmony default export */ var _unused_webpack_default_export = (_node_modules_mini_css_extract_plugin_dist_loader_js_ref_6_oneOf_1_0_node_modules_vue_cli_service_node_modules_css_loader_dist_cjs_js_ref_6_oneOf_1_1_node_modules_vue_cli_service_node_modules_vue_loader_lib_loaders_stylePostLoader_js_node_modules_postcss_loader_src_index_js_ref_6_oneOf_1_2_node_modules_cache_loader_dist_cjs_js_ref_0_0_node_modules_vue_cli_service_node_modules_vue_loader_lib_index_js_vue_loader_options_HelloWorld_vue_vue_type_style_index_0_id_1474affc_scoped_true_lang_css___WEBPACK_IMPORTED_MODULE_0___default.a);
|
|
109
|
+
|
|
110
|
+
/***/ }),
|
|
111
|
+
|
|
112
|
+
/***/ "8875":
|
|
113
|
+
/***/ (function(module, exports, __webpack_require__) {
|
|
114
|
+
|
|
115
|
+
var __WEBPACK_AMD_DEFINE_FACTORY__, __WEBPACK_AMD_DEFINE_ARRAY__, __WEBPACK_AMD_DEFINE_RESULT__;// addapted from the document.currentScript polyfill by Adam Miller
|
|
116
|
+
// MIT license
|
|
117
|
+
// source: https://github.com/amiller-gh/currentScript-polyfill
|
|
118
|
+
|
|
119
|
+
// added support for Firefox https://bugzilla.mozilla.org/show_bug.cgi?id=1620505
|
|
120
|
+
|
|
121
|
+
(function (root, factory) {
|
|
122
|
+
if (true) {
|
|
123
|
+
!(__WEBPACK_AMD_DEFINE_ARRAY__ = [], __WEBPACK_AMD_DEFINE_FACTORY__ = (factory),
|
|
124
|
+
__WEBPACK_AMD_DEFINE_RESULT__ = (typeof __WEBPACK_AMD_DEFINE_FACTORY__ === 'function' ?
|
|
125
|
+
(__WEBPACK_AMD_DEFINE_FACTORY__.apply(exports, __WEBPACK_AMD_DEFINE_ARRAY__)) : __WEBPACK_AMD_DEFINE_FACTORY__),
|
|
126
|
+
__WEBPACK_AMD_DEFINE_RESULT__ !== undefined && (module.exports = __WEBPACK_AMD_DEFINE_RESULT__));
|
|
127
|
+
} else {}
|
|
128
|
+
}(typeof self !== 'undefined' ? self : this, function () {
|
|
129
|
+
function getCurrentScript () {
|
|
130
|
+
if (document.currentScript) {
|
|
131
|
+
return document.currentScript
|
|
132
|
+
}
|
|
133
|
+
|
|
134
|
+
// IE 8-10 support script readyState
|
|
135
|
+
// IE 11+ & Firefox support stack trace
|
|
136
|
+
try {
|
|
137
|
+
throw new Error();
|
|
138
|
+
}
|
|
139
|
+
catch (err) {
|
|
140
|
+
// Find the second match for the "at" string to get file src url from stack.
|
|
141
|
+
var ieStackRegExp = /.*at [^(]*\((.*):(.+):(.+)\)$/ig,
|
|
142
|
+
ffStackRegExp = /@([^@]*):(\d+):(\d+)\s*$/ig,
|
|
143
|
+
stackDetails = ieStackRegExp.exec(err.stack) || ffStackRegExp.exec(err.stack),
|
|
144
|
+
scriptLocation = (stackDetails && stackDetails[1]) || false,
|
|
145
|
+
line = (stackDetails && stackDetails[2]) || false,
|
|
146
|
+
currentLocation = document.location.href.replace(document.location.hash, ''),
|
|
147
|
+
pageSource,
|
|
148
|
+
inlineScriptSourceRegExp,
|
|
149
|
+
inlineScriptSource,
|
|
150
|
+
scripts = document.getElementsByTagName('script'); // Live NodeList collection
|
|
151
|
+
|
|
152
|
+
if (scriptLocation === currentLocation) {
|
|
153
|
+
pageSource = document.documentElement.outerHTML;
|
|
154
|
+
inlineScriptSourceRegExp = new RegExp('(?:[^\\n]+?\\n){0,' + (line - 2) + '}[^<]*<script>([\\d\\D]*?)<\\/script>[\\d\\D]*', 'i');
|
|
155
|
+
inlineScriptSource = pageSource.replace(inlineScriptSourceRegExp, '$1').trim();
|
|
156
|
+
}
|
|
157
|
+
|
|
158
|
+
for (var i = 0; i < scripts.length; i++) {
|
|
159
|
+
// If ready state is interactive, return the script tag
|
|
160
|
+
if (scripts[i].readyState === 'interactive') {
|
|
161
|
+
return scripts[i];
|
|
162
|
+
}
|
|
163
|
+
|
|
164
|
+
// If src matches, return the script tag
|
|
165
|
+
if (scripts[i].src === scriptLocation) {
|
|
166
|
+
return scripts[i];
|
|
167
|
+
}
|
|
168
|
+
|
|
169
|
+
// If inline source matches, return the script tag
|
|
170
|
+
if (
|
|
171
|
+
scriptLocation === currentLocation &&
|
|
172
|
+
scripts[i].innerHTML &&
|
|
173
|
+
scripts[i].innerHTML.trim() === inlineScriptSource
|
|
174
|
+
) {
|
|
175
|
+
return scripts[i];
|
|
176
|
+
}
|
|
177
|
+
}
|
|
178
|
+
|
|
179
|
+
// If no match, return null
|
|
180
|
+
return null;
|
|
181
|
+
}
|
|
182
|
+
};
|
|
183
|
+
|
|
184
|
+
return getCurrentScript
|
|
185
|
+
}));
|
|
186
|
+
|
|
187
|
+
|
|
188
|
+
/***/ }),
|
|
189
|
+
|
|
190
|
+
/***/ "88ff":
|
|
191
|
+
/***/ (function(module, exports, __webpack_require__) {
|
|
192
|
+
|
|
193
|
+
// extracted by mini-css-extract-plugin
|
|
194
|
+
|
|
195
|
+
/***/ }),
|
|
196
|
+
|
|
197
|
+
/***/ "8b5d":
|
|
198
|
+
/***/ (function(module, exports, __webpack_require__) {
|
|
199
|
+
|
|
200
|
+
// extracted by mini-css-extract-plugin
|
|
201
|
+
|
|
202
|
+
/***/ }),
|
|
203
|
+
|
|
204
|
+
/***/ "cf05":
|
|
205
|
+
/***/ (function(module, exports, __webpack_require__) {
|
|
206
|
+
|
|
207
|
+
module.exports = __webpack_require__.p + "img/logo.b58e4e05.png";
|
|
208
|
+
|
|
209
|
+
/***/ }),
|
|
210
|
+
|
|
211
|
+
/***/ "fb15":
|
|
212
|
+
/***/ (function(module, __webpack_exports__, __webpack_require__) {
|
|
213
|
+
|
|
214
|
+
"use strict";
|
|
215
|
+
// ESM COMPAT FLAG
|
|
216
|
+
__webpack_require__.r(__webpack_exports__);
|
|
217
|
+
|
|
218
|
+
// CONCATENATED MODULE: ./node_modules/@vue/cli-service/lib/commands/build/setPublicPath.js
|
|
219
|
+
// This file is imported into lib/wc client bundles.
|
|
220
|
+
|
|
221
|
+
if (typeof window !== 'undefined') {
|
|
222
|
+
var currentScript = window.document.currentScript
|
|
223
|
+
if (true) {
|
|
224
|
+
var getCurrentScript = __webpack_require__("8875")
|
|
225
|
+
currentScript = getCurrentScript()
|
|
226
|
+
|
|
227
|
+
// for backward compatibility, because previously we directly included the polyfill
|
|
228
|
+
if (!('currentScript' in document)) {
|
|
229
|
+
Object.defineProperty(document, 'currentScript', { get: getCurrentScript })
|
|
230
|
+
}
|
|
231
|
+
}
|
|
232
|
+
|
|
233
|
+
var src = currentScript && currentScript.src.match(/(.+\/)[^/]+\.js(\?.*)?$/)
|
|
234
|
+
if (src) {
|
|
235
|
+
__webpack_require__.p = src[1] // eslint-disable-line
|
|
236
|
+
}
|
|
237
|
+
}
|
|
238
|
+
|
|
239
|
+
// Indicate to webpack that this file can be concatenated
|
|
240
|
+
/* harmony default export */ var setPublicPath = (null);
|
|
241
|
+
|
|
242
|
+
// CONCATENATED MODULE: ./node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"f3f5c86e-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--0-0!./node_modules/@vue/cli-service/node_modules/vue-loader/lib??vue-loader-options!./src/App.vue?vue&type=template&id=994a0d26&
|
|
243
|
+
var render = function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('div',{attrs:{"id":"app"}},[_c('img',{attrs:{"alt":"MediaCube logo","src":__webpack_require__("cf05")}}),_c('HelloWorld',{attrs:{"msg":"Welcome to Your Vue.js App"}})],1)}
|
|
244
|
+
var staticRenderFns = []
|
|
245
|
+
|
|
246
|
+
|
|
247
|
+
// CONCATENATED MODULE: ./src/App.vue?vue&type=template&id=994a0d26&
|
|
248
|
+
|
|
249
|
+
// CONCATENATED MODULE: ./node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"f3f5c86e-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--0-0!./node_modules/@vue/cli-service/node_modules/vue-loader/lib??vue-loader-options!./src/service/HelloWorld.vue?vue&type=template&id=1474affc&scoped=true&
|
|
250
|
+
var HelloWorldvue_type_template_id_1474affc_scoped_true_render = function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('div',{staticClass:"hello"},[_c('h1',[_vm._v(_vm._s(_vm.msg))]),_vm._m(0),_c('h3',[_vm._v("Installed CLI Plugins")]),_vm._m(1),_c('h3',[_vm._v("Essential Links")]),_vm._m(2),_c('h3',[_vm._v("Ecosystem")]),_vm._m(3)])}
|
|
251
|
+
var HelloWorldvue_type_template_id_1474affc_scoped_true_staticRenderFns = [function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('p',[_vm._v(" For a guide and recipes on how to configure / customize this project,"),_c('br'),_vm._v(" check out the "),_c('a',{attrs:{"href":"https://cli.vuejs.org","target":"_blank","rel":"noopener"}},[_vm._v("vue-cli documentation")]),_vm._v(". ")])},function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('ul',[_c('li',[_c('a',{attrs:{"href":"https://github.com/vuejs/vue-cli/tree/dev/packages/%40vue/cli-plugin-babel","target":"_blank","rel":"noopener"}},[_vm._v("babel")])]),_c('li',[_c('a',{attrs:{"href":"https://github.com/vuejs/vue-cli/tree/dev/packages/%40vue/cli-plugin-eslint","target":"_blank","rel":"noopener"}},[_vm._v("eslint")])]),_c('li',[_c('a',{attrs:{"href":"https://github.com/vuejs/vue-cli/tree/dev/packages/%40vue/cli-plugin-unit-jest","target":"_blank","rel":"noopener"}},[_vm._v("unit-jest")])])])},function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('ul',[_c('li',[_c('a',{attrs:{"href":"https://vuejs.org","target":"_blank","rel":"noopener"}},[_vm._v("Core Docs")])]),_c('li',[_c('a',{attrs:{"href":"https://forum.vuejs.org","target":"_blank","rel":"noopener"}},[_vm._v("Forum")])]),_c('li',[_c('a',{attrs:{"href":"https://chat.vuejs.org","target":"_blank","rel":"noopener"}},[_vm._v("Community Chat")])]),_c('li',[_c('a',{attrs:{"href":"https://twitter.com/vuejs","target":"_blank","rel":"noopener"}},[_vm._v("Twitter")])]),_c('li',[_c('a',{attrs:{"href":"https://news.vuejs.org","target":"_blank","rel":"noopener"}},[_vm._v("News")])])])},function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('ul',[_c('li',[_c('a',{attrs:{"href":"https://router.vuejs.org","target":"_blank","rel":"noopener"}},[_vm._v("vue-router")])]),_c('li',[_c('a',{attrs:{"href":"https://vuex.vuejs.org","target":"_blank","rel":"noopener"}},[_vm._v("vuex")])]),_c('li',[_c('a',{attrs:{"href":"https://github.com/vuejs/vue-devtools#vue-devtools","target":"_blank","rel":"noopener"}},[_vm._v("vue-devtools")])]),_c('li',[_c('a',{attrs:{"href":"https://vue-loader.vuejs.org","target":"_blank","rel":"noopener"}},[_vm._v("vue-loader")])]),_c('li',[_c('a',{attrs:{"href":"https://github.com/vuejs/awesome-vue","target":"_blank","rel":"noopener"}},[_vm._v("awesome-vue")])])])}]
|
|
252
|
+
|
|
253
|
+
|
|
254
|
+
// CONCATENATED MODULE: ./src/service/HelloWorld.vue?vue&type=template&id=1474affc&scoped=true&
|
|
255
|
+
|
|
256
|
+
// CONCATENATED MODULE: ./node_modules/cache-loader/dist/cjs.js??ref--12-0!./node_modules/thread-loader/dist/cjs.js!./node_modules/@vue/cli-plugin-babel/node_modules/babel-loader/lib!./node_modules/cache-loader/dist/cjs.js??ref--0-0!./node_modules/@vue/cli-service/node_modules/vue-loader/lib??vue-loader-options!./src/service/HelloWorld.vue?vue&type=script&lang=js&
|
|
257
|
+
//
|
|
258
|
+
//
|
|
259
|
+
//
|
|
260
|
+
//
|
|
261
|
+
//
|
|
262
|
+
//
|
|
263
|
+
//
|
|
264
|
+
//
|
|
265
|
+
//
|
|
266
|
+
//
|
|
267
|
+
//
|
|
268
|
+
//
|
|
269
|
+
//
|
|
270
|
+
//
|
|
271
|
+
//
|
|
272
|
+
//
|
|
273
|
+
//
|
|
274
|
+
//
|
|
275
|
+
//
|
|
276
|
+
//
|
|
277
|
+
//
|
|
278
|
+
//
|
|
279
|
+
//
|
|
280
|
+
//
|
|
281
|
+
//
|
|
282
|
+
//
|
|
283
|
+
//
|
|
284
|
+
//
|
|
285
|
+
//
|
|
286
|
+
//
|
|
287
|
+
//
|
|
288
|
+
//
|
|
289
|
+
//
|
|
290
|
+
//
|
|
291
|
+
//
|
|
292
|
+
//
|
|
293
|
+
//
|
|
294
|
+
//
|
|
295
|
+
//
|
|
296
|
+
//
|
|
297
|
+
//
|
|
298
|
+
//
|
|
299
|
+
//
|
|
300
|
+
//
|
|
301
|
+
//
|
|
302
|
+
//
|
|
303
|
+
//
|
|
304
|
+
//
|
|
305
|
+
//
|
|
306
|
+
//
|
|
307
|
+
//
|
|
308
|
+
//
|
|
309
|
+
//
|
|
310
|
+
//
|
|
311
|
+
//
|
|
312
|
+
//
|
|
313
|
+
//
|
|
314
|
+
//
|
|
315
|
+
//
|
|
316
|
+
//
|
|
317
|
+
//
|
|
318
|
+
//
|
|
319
|
+
//
|
|
320
|
+
//
|
|
321
|
+
//
|
|
322
|
+
//
|
|
323
|
+
//
|
|
324
|
+
//
|
|
325
|
+
//
|
|
326
|
+
//
|
|
327
|
+
//
|
|
328
|
+
//
|
|
329
|
+
//
|
|
330
|
+
//
|
|
331
|
+
//
|
|
332
|
+
//
|
|
333
|
+
/* harmony default export */ var HelloWorldvue_type_script_lang_js_ = ({
|
|
334
|
+
name: 'HelloWorld',
|
|
335
|
+
props: {
|
|
336
|
+
msg: String
|
|
337
|
+
}
|
|
338
|
+
});
|
|
339
|
+
// CONCATENATED MODULE: ./src/service/HelloWorld.vue?vue&type=script&lang=js&
|
|
340
|
+
/* harmony default export */ var service_HelloWorldvue_type_script_lang_js_ = (HelloWorldvue_type_script_lang_js_);
|
|
341
|
+
// EXTERNAL MODULE: ./src/service/HelloWorld.vue?vue&type=style&index=0&id=1474affc&scoped=true&lang=css&
|
|
342
|
+
var HelloWorldvue_type_style_index_0_id_1474affc_scoped_true_lang_css_ = __webpack_require__("1f00");
|
|
343
|
+
|
|
344
|
+
// CONCATENATED MODULE: ./node_modules/@vue/cli-service/node_modules/vue-loader/lib/runtime/componentNormalizer.js
|
|
345
|
+
/* globals __VUE_SSR_CONTEXT__ */
|
|
346
|
+
|
|
347
|
+
// IMPORTANT: Do NOT use ES2015 features in this file (except for modules).
|
|
348
|
+
// This module is a runtime utility for cleaner component module output and will
|
|
349
|
+
// be included in the final webpack user bundle.
|
|
350
|
+
|
|
351
|
+
function normalizeComponent (
|
|
352
|
+
scriptExports,
|
|
353
|
+
render,
|
|
354
|
+
staticRenderFns,
|
|
355
|
+
functionalTemplate,
|
|
356
|
+
injectStyles,
|
|
357
|
+
scopeId,
|
|
358
|
+
moduleIdentifier, /* server only */
|
|
359
|
+
shadowMode /* vue-cli only */
|
|
360
|
+
) {
|
|
361
|
+
// Vue.extend constructor export interop
|
|
362
|
+
var options = typeof scriptExports === 'function'
|
|
363
|
+
? scriptExports.options
|
|
364
|
+
: scriptExports
|
|
365
|
+
|
|
366
|
+
// render functions
|
|
367
|
+
if (render) {
|
|
368
|
+
options.render = render
|
|
369
|
+
options.staticRenderFns = staticRenderFns
|
|
370
|
+
options._compiled = true
|
|
371
|
+
}
|
|
372
|
+
|
|
373
|
+
// functional template
|
|
374
|
+
if (functionalTemplate) {
|
|
375
|
+
options.functional = true
|
|
376
|
+
}
|
|
377
|
+
|
|
378
|
+
// scopedId
|
|
379
|
+
if (scopeId) {
|
|
380
|
+
options._scopeId = 'data-v-' + scopeId
|
|
381
|
+
}
|
|
382
|
+
|
|
383
|
+
var hook
|
|
384
|
+
if (moduleIdentifier) { // server build
|
|
385
|
+
hook = function (context) {
|
|
386
|
+
// 2.3 injection
|
|
387
|
+
context =
|
|
388
|
+
context || // cached call
|
|
389
|
+
(this.$vnode && this.$vnode.ssrContext) || // stateful
|
|
390
|
+
(this.parent && this.parent.$vnode && this.parent.$vnode.ssrContext) // functional
|
|
391
|
+
// 2.2 with runInNewContext: true
|
|
392
|
+
if (!context && typeof __VUE_SSR_CONTEXT__ !== 'undefined') {
|
|
393
|
+
context = __VUE_SSR_CONTEXT__
|
|
394
|
+
}
|
|
395
|
+
// inject component styles
|
|
396
|
+
if (injectStyles) {
|
|
397
|
+
injectStyles.call(this, context)
|
|
398
|
+
}
|
|
399
|
+
// register component module identifier for async chunk inferrence
|
|
400
|
+
if (context && context._registeredComponents) {
|
|
401
|
+
context._registeredComponents.add(moduleIdentifier)
|
|
402
|
+
}
|
|
403
|
+
}
|
|
404
|
+
// used by ssr in case component is cached and beforeCreate
|
|
405
|
+
// never gets called
|
|
406
|
+
options._ssrRegister = hook
|
|
407
|
+
} else if (injectStyles) {
|
|
408
|
+
hook = shadowMode
|
|
409
|
+
? function () {
|
|
410
|
+
injectStyles.call(
|
|
411
|
+
this,
|
|
412
|
+
(options.functional ? this.parent : this).$root.$options.shadowRoot
|
|
413
|
+
)
|
|
414
|
+
}
|
|
415
|
+
: injectStyles
|
|
416
|
+
}
|
|
417
|
+
|
|
418
|
+
if (hook) {
|
|
419
|
+
if (options.functional) {
|
|
420
|
+
// for template-only hot-reload because in that case the render fn doesn't
|
|
421
|
+
// go through the normalizer
|
|
422
|
+
options._injectStyles = hook
|
|
423
|
+
// register for functional component in vue file
|
|
424
|
+
var originalRender = options.render
|
|
425
|
+
options.render = function renderWithStyleInjection (h, context) {
|
|
426
|
+
hook.call(context)
|
|
427
|
+
return originalRender(h, context)
|
|
428
|
+
}
|
|
429
|
+
} else {
|
|
430
|
+
// inject component registration as beforeCreate hook
|
|
431
|
+
var existing = options.beforeCreate
|
|
432
|
+
options.beforeCreate = existing
|
|
433
|
+
? [].concat(existing, hook)
|
|
434
|
+
: [hook]
|
|
435
|
+
}
|
|
436
|
+
}
|
|
437
|
+
|
|
438
|
+
return {
|
|
439
|
+
exports: scriptExports,
|
|
440
|
+
options: options
|
|
441
|
+
}
|
|
442
|
+
}
|
|
443
|
+
|
|
444
|
+
// CONCATENATED MODULE: ./src/service/HelloWorld.vue
|
|
445
|
+
|
|
446
|
+
|
|
447
|
+
|
|
448
|
+
|
|
449
|
+
|
|
450
|
+
|
|
451
|
+
/* normalize component */
|
|
452
|
+
|
|
453
|
+
var component = normalizeComponent(
|
|
454
|
+
service_HelloWorldvue_type_script_lang_js_,
|
|
455
|
+
HelloWorldvue_type_template_id_1474affc_scoped_true_render,
|
|
456
|
+
HelloWorldvue_type_template_id_1474affc_scoped_true_staticRenderFns,
|
|
457
|
+
false,
|
|
458
|
+
null,
|
|
459
|
+
"1474affc",
|
|
460
|
+
null
|
|
461
|
+
|
|
462
|
+
)
|
|
463
|
+
|
|
464
|
+
/* harmony default export */ var HelloWorld = (component.exports);
|
|
465
|
+
// CONCATENATED MODULE: ./node_modules/cache-loader/dist/cjs.js??ref--12-0!./node_modules/thread-loader/dist/cjs.js!./node_modules/@vue/cli-plugin-babel/node_modules/babel-loader/lib!./node_modules/cache-loader/dist/cjs.js??ref--0-0!./node_modules/@vue/cli-service/node_modules/vue-loader/lib??vue-loader-options!./src/App.vue?vue&type=script&lang=js&
|
|
466
|
+
//
|
|
467
|
+
//
|
|
468
|
+
//
|
|
469
|
+
//
|
|
470
|
+
//
|
|
471
|
+
//
|
|
472
|
+
//
|
|
473
|
+
|
|
474
|
+
/* harmony default export */ var Appvue_type_script_lang_js_ = ({
|
|
475
|
+
name: "App",
|
|
476
|
+
components: {
|
|
477
|
+
HelloWorld: HelloWorld
|
|
478
|
+
}
|
|
479
|
+
});
|
|
480
|
+
// CONCATENATED MODULE: ./src/App.vue?vue&type=script&lang=js&
|
|
481
|
+
/* harmony default export */ var src_Appvue_type_script_lang_js_ = (Appvue_type_script_lang_js_);
|
|
482
|
+
// EXTERNAL MODULE: ./src/App.vue?vue&type=style&index=0&lang=css&
|
|
483
|
+
var Appvue_type_style_index_0_lang_css_ = __webpack_require__("034f");
|
|
484
|
+
|
|
485
|
+
// CONCATENATED MODULE: ./src/App.vue
|
|
486
|
+
|
|
487
|
+
|
|
488
|
+
|
|
489
|
+
|
|
490
|
+
|
|
491
|
+
|
|
492
|
+
/* normalize component */
|
|
493
|
+
|
|
494
|
+
var App_component = normalizeComponent(
|
|
495
|
+
src_Appvue_type_script_lang_js_,
|
|
496
|
+
render,
|
|
497
|
+
staticRenderFns,
|
|
498
|
+
false,
|
|
499
|
+
null,
|
|
500
|
+
null,
|
|
501
|
+
null
|
|
502
|
+
|
|
503
|
+
)
|
|
504
|
+
|
|
505
|
+
/* harmony default export */ var App = (App_component.exports);
|
|
506
|
+
// CONCATENATED MODULE: ./node_modules/@vue/cli-service/lib/commands/build/entry-lib.js
|
|
507
|
+
|
|
508
|
+
|
|
509
|
+
/* harmony default export */ var entry_lib = __webpack_exports__["default"] = (App);
|
|
510
|
+
|
|
511
|
+
|
|
512
|
+
|
|
513
|
+
/***/ })
|
|
514
|
+
|
|
515
|
+
/******/ })["default"];
|
|
516
|
+
//# sourceMappingURL=mediacube-ui.common.js.map
|
package/package.json
CHANGED
|
@@ -107,9 +107,9 @@ export default {
|
|
|
107
107
|
default: '',
|
|
108
108
|
},
|
|
109
109
|
/**
|
|
110
|
-
|
|
111
|
-
|
|
112
|
-
|
|
110
|
+
* Центральное меню
|
|
111
|
+
*
|
|
112
|
+
* {
|
|
113
113
|
name: [String] - menu item title,
|
|
114
114
|
icon: [String] - icon,
|
|
115
115
|
to: [String] - route path (used like link if this route haven't nested menu if they isn't they work like button who open nested menu),
|
|
@@ -123,8 +123,8 @@ export default {
|
|
|
123
123
|
...
|
|
124
124
|
]
|
|
125
125
|
},
|
|
126
|
-
|
|
127
|
-
|
|
126
|
+
*
|
|
127
|
+
*/
|
|
128
128
|
menuMain: {
|
|
129
129
|
type: Array,
|
|
130
130
|
default: () => [],
|
|
@@ -257,6 +257,13 @@ export default {
|
|
|
257
257
|
}
|
|
258
258
|
.with-submenu {
|
|
259
259
|
pointer-events: all !important;
|
|
260
|
+
.item__head {
|
|
261
|
+
&-button--no-hover {
|
|
262
|
+
a {
|
|
263
|
+
background-color: unset;
|
|
264
|
+
}
|
|
265
|
+
}
|
|
266
|
+
}
|
|
260
267
|
}
|
|
261
268
|
&__head {
|
|
262
269
|
display: flex;
|
|
@@ -291,6 +298,9 @@ export default {
|
|
|
291
298
|
padding: 0;
|
|
292
299
|
border-radius: 4px;
|
|
293
300
|
border: none;
|
|
301
|
+
&.open {
|
|
302
|
+
background-color: unset;
|
|
303
|
+
}
|
|
294
304
|
}
|
|
295
305
|
}
|
|
296
306
|
&__submenu {
|