basemate-ui-core 0.4.0 → 0.5.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.
Files changed (49) hide show
  1. checksums.yaml +4 -4
  2. data/app/concepts/br/cell/br.rb +5 -0
  3. data/app/concepts/br/view/br.haml +5 -0
  4. data/app/concepts/button/view/button.haml +2 -2
  5. data/app/concepts/component/cell/dynamic.rb +32 -3
  6. data/app/concepts/component/js/component.js +7 -0
  7. data/app/concepts/component/view/response_dynamic.haml +7 -0
  8. data/app/concepts/div/view/div.haml +1 -1
  9. data/app/concepts/form/cell/form.rb +2 -0
  10. data/app/concepts/form/view/form.haml +1 -1
  11. data/app/concepts/header/view/header.haml +1 -1
  12. data/app/concepts/heading/view/heading.haml +7 -7
  13. data/app/concepts/icon/cell/icon.rb +5 -0
  14. data/app/concepts/icon/view/icon.haml +2 -0
  15. data/app/concepts/img/view/img.haml +1 -1
  16. data/app/concepts/input/view/inline.haml +1 -1
  17. data/app/concepts/input/view/input.haml +1 -1
  18. data/app/concepts/label/cell/label.rb +5 -0
  19. data/app/concepts/label/view/label.haml +7 -0
  20. data/app/concepts/li/cell/li.rb +5 -0
  21. data/app/concepts/li/view/li.haml +6 -0
  22. data/app/concepts/link/cell/link.rb +8 -0
  23. data/app/concepts/link/view/link.haml +2 -2
  24. data/app/concepts/main/view/main.haml +1 -1
  25. data/app/concepts/nav/view/nav.haml +1 -1
  26. data/app/concepts/ol/cell/ol.rb +5 -0
  27. data/app/concepts/ol/view/ol.haml +3 -0
  28. data/app/concepts/pg/cell/pg.rb +5 -0
  29. data/app/concepts/pg/view/pg.haml +8 -0
  30. data/app/concepts/section/view/section.haml +1 -1
  31. data/app/concepts/span/view/span.haml +1 -1
  32. data/app/concepts/submit/cell/submit.rb +4 -0
  33. data/app/concepts/submit/view/submit.haml +1 -1
  34. data/app/concepts/table/cell/table.rb +5 -0
  35. data/app/concepts/table/view/table.haml +3 -0
  36. data/app/concepts/td/cell/td.rb +5 -0
  37. data/app/concepts/td/view/td.haml +8 -0
  38. data/app/concepts/th/cell/th.rb +5 -0
  39. data/app/concepts/th/view/th.haml +8 -0
  40. data/app/concepts/tr/cell/tr.rb +5 -0
  41. data/app/concepts/tr/view/tr.haml +3 -0
  42. data/app/concepts/transition/cell/transition.rb +5 -0
  43. data/app/concepts/transition/view/transition.haml +2 -2
  44. data/app/concepts/ul/cell/ul.rb +5 -0
  45. data/app/concepts/ul/view/ul.haml +3 -0
  46. data/lib/basemate/ui/core/version.rb +1 -1
  47. data/vendor/assets/javascripts/basemate-ui-core.js +188 -163
  48. data/vendor/assets/javascripts/basemate-ui-core.js.map +1 -1
  49. metadata +25 -2
@@ -1,7 +1,7 @@
1
1
  - if options[:text].nil?
2
- %a{"href": link_path, "class": options[:class], "id": component_id, "@click.prevent": navigate_to(link_path), "v-bind:class": "{ active: isActive }"}
2
+ %a{@tag_attributes}
3
3
  - if block_given?
4
4
  = yield
5
5
  - else
6
- %a{"href": link_path, "class": options[:class], "id": component_id, "@click.prevent": navigate_to(link_path), "v-bind:class": "{ active: isActive }"}
6
+ %a{@tag_attributes}
7
7
  = options[:text]
@@ -0,0 +1,5 @@
1
+ module Ul::Cell
2
+ class Ul < Component::Cell::Static
3
+
4
+ end
5
+ end
@@ -0,0 +1,3 @@
1
+ %ul{"class": options[:class], "id": component_id}
2
+ - if block_given?
3
+ = yield
@@ -1,7 +1,7 @@
1
1
  module Basemate
2
2
  module Ui
3
3
  module Core
4
- VERSION = '0.4.0'
4
+ VERSION = '0.5.0'
5
5
  end
6
6
  end
7
7
  end
@@ -1,3 +1,4 @@
1
+ var BasemateUiCore =
1
2
  /******/ (function(modules) { // webpackBootstrap
2
3
  /******/ // The module cache
3
4
  /******/ var installedModules = {};
@@ -76,7 +77,7 @@
76
77
 
77
78
 
78
79
  var bind = __webpack_require__(/*! ./helpers/bind */ 9);
79
- var isBuffer = __webpack_require__(/*! is-buffer */ 21);
80
+ var isBuffer = __webpack_require__(/*! is-buffer */ 19);
80
81
 
81
82
  /*global toString:true*/
82
83
 
@@ -11345,7 +11346,7 @@ Vue.compile = compileToFunctions;
11345
11346
 
11346
11347
  /* harmony default export */ __webpack_exports__["a"] = (Vue);
11347
11348
 
11348
- /* WEBPACK VAR INJECTION */}.call(__webpack_exports__, __webpack_require__(/*! ./../../../spec/builder/node_modules/webpack/buildin/global.js */ 5), __webpack_require__(/*! ./../../../spec/builder/node_modules/timers-browserify/main.js */ 17).setImmediate))
11349
+ /* WEBPACK VAR INJECTION */}.call(__webpack_exports__, __webpack_require__(/*! ./../../../spec/builder/node_modules/webpack/buildin/global.js */ 6), __webpack_require__(/*! ./../../../spec/builder/node_modules/timers-browserify/main.js */ 16).setImmediate))
11349
11350
 
11350
11351
  /***/ }),
11351
11352
  /* 2 */
@@ -11358,10 +11359,10 @@ Vue.compile = compileToFunctions;
11358
11359
 
11359
11360
  "use strict";
11360
11361
  /* harmony import */ var __WEBPACK_IMPORTED_MODULE_0_vue_dist_vue_esm__ = __webpack_require__(/*! vue/dist/vue.esm */ 1);
11361
- /* harmony import */ var __WEBPACK_IMPORTED_MODULE_1_axios__ = __webpack_require__(/*! axios */ 3);
11362
+ /* harmony import */ var __WEBPACK_IMPORTED_MODULE_1_axios__ = __webpack_require__(/*! axios */ 4);
11362
11363
  /* harmony import */ var __WEBPACK_IMPORTED_MODULE_1_axios___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_1_axios__);
11363
11364
  /* harmony import */ var __WEBPACK_IMPORTED_MODULE_2_v_runtime_template__ = __webpack_require__(/*! v-runtime-template */ 14);
11364
- /* harmony import */ var __WEBPACK_IMPORTED_MODULE_3_core_js_event_hub__ = __webpack_require__(/*! core/js/event-hub */ 7);
11365
+ /* harmony import */ var __WEBPACK_IMPORTED_MODULE_3_core_js_event_hub__ = __webpack_require__(/*! core/js/event-hub */ 5);
11365
11366
 
11366
11367
 
11367
11368
 
@@ -11381,6 +11382,11 @@ const componentMixin = {
11381
11382
  this.rerender();
11382
11383
  }
11383
11384
  },
11385
+ onBasemateUiCoreChannel: function (event) {
11386
+ if (this.componentConfig["rerender_on"] == event.message) {
11387
+ this.rerender();
11388
+ }
11389
+ },
11384
11390
  rerender: function () {
11385
11391
  var self = this;
11386
11392
  self.params["component_key"] = self.componentConfig["component_key"];
@@ -11403,10 +11409,12 @@ const componentMixin = {
11403
11409
  created: function () {
11404
11410
  const self = this;
11405
11411
  __WEBPACK_IMPORTED_MODULE_3_core_js_event_hub__["a" /* default */].$on('rerender', self.onRerender);
11412
+ __WEBPACK_IMPORTED_MODULE_3_core_js_event_hub__["a" /* default */].$on('BasemateUiCoreChannel', self.onBasemateUiCoreChannel);
11406
11413
  },
11407
11414
  beforeDestroy: function () {
11408
11415
  const self = this;
11409
11416
  __WEBPACK_IMPORTED_MODULE_3_core_js_event_hub__["a" /* default */].$off('rerender', self.onRerender);
11417
+ __WEBPACK_IMPORTED_MODULE_3_core_js_event_hub__["a" /* default */].$off('BasemateUiCoreChannel', self.onBasemateUiCoreChannel);
11410
11418
  },
11411
11419
  components: {
11412
11420
  VRuntimeTemplate: __WEBPACK_IMPORTED_MODULE_2_v_runtime_template__["a" /* default */]
@@ -11417,17 +11425,6 @@ const componentMixin = {
11417
11425
 
11418
11426
  /***/ }),
11419
11427
  /* 3 */
11420
- /*!**************************************************************************************************!*\
11421
- !*** /home/jonas/Projects/basemate/basemate-ui-dev/basemate-ui-core/node_modules/axios/index.js ***!
11422
- \**************************************************************************************************/
11423
- /*! dynamic exports provided */
11424
- /*! exports used: default */
11425
- /***/ (function(module, exports, __webpack_require__) {
11426
-
11427
- module.exports = __webpack_require__(/*! ./lib/axios */ 20);
11428
-
11429
- /***/ }),
11430
- /* 4 */
11431
11428
  /*!*********************************************************************************************************!*\
11432
11429
  !*** /home/jonas/Projects/basemate/basemate-ui-dev/basemate-ui-core/node_modules/vuex/dist/vuex.esm.js ***!
11433
11430
  \*********************************************************************************************************/
@@ -12376,8 +12373,36 @@ var index_esm = {
12376
12373
  /* harmony default export */ __webpack_exports__["a"] = (index_esm);
12377
12374
 
12378
12375
 
12376
+ /***/ }),
12377
+ /* 4 */
12378
+ /*!**************************************************************************************************!*\
12379
+ !*** /home/jonas/Projects/basemate/basemate-ui-dev/basemate-ui-core/node_modules/axios/index.js ***!
12380
+ \**************************************************************************************************/
12381
+ /*! dynamic exports provided */
12382
+ /*! exports used: default */
12383
+ /***/ (function(module, exports, __webpack_require__) {
12384
+
12385
+ module.exports = __webpack_require__(/*! ./lib/axios */ 18);
12386
+
12379
12387
  /***/ }),
12380
12388
  /* 5 */
12389
+ /*!********************************************************************************************************!*\
12390
+ !*** /home/jonas/Projects/basemate/basemate-ui-dev/basemate-ui-core/app/concepts/core/js/event-hub.js ***!
12391
+ \********************************************************************************************************/
12392
+ /*! exports provided: default */
12393
+ /*! exports used: default */
12394
+ /***/ (function(module, __webpack_exports__, __webpack_require__) {
12395
+
12396
+ "use strict";
12397
+ /* harmony import */ var __WEBPACK_IMPORTED_MODULE_0_vue_dist_vue_esm__ = __webpack_require__(/*! vue/dist/vue.esm */ 1);
12398
+
12399
+
12400
+ const basemateEventHub = new __WEBPACK_IMPORTED_MODULE_0_vue_dist_vue_esm__["a" /* default */]();
12401
+
12402
+ /* harmony default export */ __webpack_exports__["a"] = (basemateEventHub);
12403
+
12404
+ /***/ }),
12405
+ /* 6 */
12381
12406
  /*!***********************************!*\
12382
12407
  !*** (webpack)/buildin/global.js ***!
12383
12408
  \***********************************/
@@ -12409,7 +12434,7 @@ module.exports = g;
12409
12434
 
12410
12435
 
12411
12436
  /***/ }),
12412
- /* 6 */
12437
+ /* 7 */
12413
12438
  /*!*********************************************************************************************************!*\
12414
12439
  !*** /home/jonas/Projects/basemate/basemate-ui-dev/basemate-ui-core/node_modules/axios/lib/defaults.js ***!
12415
12440
  \*********************************************************************************************************/
@@ -12421,7 +12446,7 @@ module.exports = g;
12421
12446
  /* WEBPACK VAR INJECTION */(function(process) {
12422
12447
 
12423
12448
  var utils = __webpack_require__(/*! ./utils */ 0);
12424
- var normalizeHeaderName = __webpack_require__(/*! ./helpers/normalizeHeaderName */ 23);
12449
+ var normalizeHeaderName = __webpack_require__(/*! ./helpers/normalizeHeaderName */ 21);
12425
12450
 
12426
12451
  var DEFAULT_CONTENT_TYPE = {
12427
12452
  'Content-Type': 'application/x-www-form-urlencoded'
@@ -12517,23 +12542,6 @@ module.exports = defaults;
12517
12542
 
12518
12543
  /* WEBPACK VAR INJECTION */}.call(exports, __webpack_require__(/*! ./../../../spec/builder/node_modules/process/browser.js */ 8)))
12519
12544
 
12520
- /***/ }),
12521
- /* 7 */
12522
- /*!********************************************************************************************************!*\
12523
- !*** /home/jonas/Projects/basemate/basemate-ui-dev/basemate-ui-core/app/concepts/core/js/event-hub.js ***!
12524
- \********************************************************************************************************/
12525
- /*! exports provided: default */
12526
- /*! exports used: default */
12527
- /***/ (function(module, __webpack_exports__, __webpack_require__) {
12528
-
12529
- "use strict";
12530
- /* harmony import */ var __WEBPACK_IMPORTED_MODULE_0_vue_dist_vue_esm__ = __webpack_require__(/*! vue/dist/vue.esm */ 1);
12531
-
12532
-
12533
- const basemateEventHub = new __WEBPACK_IMPORTED_MODULE_0_vue_dist_vue_esm__["a" /* default */]();
12534
-
12535
- /* harmony default export */ __webpack_exports__["a"] = (basemateEventHub);
12536
-
12537
12545
  /***/ }),
12538
12546
  /* 8 */
12539
12547
  /*!*****************************************!*\
@@ -12765,12 +12773,12 @@ module.exports = function bind(fn, thisArg) {
12765
12773
 
12766
12774
 
12767
12775
  var utils = __webpack_require__(/*! ./../utils */ 0);
12768
- var settle = __webpack_require__(/*! ./../core/settle */ 24);
12769
- var buildURL = __webpack_require__(/*! ./../helpers/buildURL */ 26);
12770
- var parseHeaders = __webpack_require__(/*! ./../helpers/parseHeaders */ 27);
12771
- var isURLSameOrigin = __webpack_require__(/*! ./../helpers/isURLSameOrigin */ 28);
12776
+ var settle = __webpack_require__(/*! ./../core/settle */ 22);
12777
+ var buildURL = __webpack_require__(/*! ./../helpers/buildURL */ 24);
12778
+ var parseHeaders = __webpack_require__(/*! ./../helpers/parseHeaders */ 25);
12779
+ var isURLSameOrigin = __webpack_require__(/*! ./../helpers/isURLSameOrigin */ 26);
12772
12780
  var createError = __webpack_require__(/*! ../core/createError */ 11);
12773
- var btoa = (typeof window !== 'undefined' && window.btoa && window.btoa.bind(window)) || __webpack_require__(/*! ./../helpers/btoa */ 29);
12781
+ var btoa = (typeof window !== 'undefined' && window.btoa && window.btoa.bind(window)) || __webpack_require__(/*! ./../helpers/btoa */ 27);
12774
12782
 
12775
12783
  module.exports = function xhrAdapter(config) {
12776
12784
  return new Promise(function dispatchXhrRequest(resolve, reject) {
@@ -12867,7 +12875,7 @@ module.exports = function xhrAdapter(config) {
12867
12875
  // This is only done if running in a standard browser environment.
12868
12876
  // Specifically not if we're in a web worker, or react-native.
12869
12877
  if (utils.isStandardBrowserEnv()) {
12870
- var cookies = __webpack_require__(/*! ./../helpers/cookies */ 30);
12878
+ var cookies = __webpack_require__(/*! ./../helpers/cookies */ 28);
12871
12879
 
12872
12880
  // Add xsrf header
12873
12881
  var xsrfValue = (config.withCredentials || isURLSameOrigin(config.url)) && config.xsrfCookieName ?
@@ -12956,7 +12964,7 @@ module.exports = function xhrAdapter(config) {
12956
12964
  "use strict";
12957
12965
 
12958
12966
 
12959
- var enhanceError = __webpack_require__(/*! ./enhanceError */ 25);
12967
+ var enhanceError = __webpack_require__(/*! ./enhanceError */ 23);
12960
12968
 
12961
12969
  /**
12962
12970
  * Create an Error with the specified message, config, error code, request and response.
@@ -13102,13 +13110,24 @@ var index = {
13102
13110
  /*!*********************************************!*\
13103
13111
  !*** ./app/javascript/packs/application.js ***!
13104
13112
  \*********************************************/
13105
- /*! no exports provided */
13113
+ /*! exports provided: Vue, Vuex, axios, basemateEventHub, componentMixin */
13106
13114
  /*! all exports used */
13107
13115
  /***/ (function(module, __webpack_exports__, __webpack_require__) {
13108
13116
 
13109
13117
  "use strict";
13110
13118
  Object.defineProperty(__webpack_exports__, "__esModule", { value: true });
13111
- /* harmony import */ var __WEBPACK_IMPORTED_MODULE_0_core_js_core__ = __webpack_require__(/*! core/js/core */ 16);
13119
+ /* harmony import */ var __WEBPACK_IMPORTED_MODULE_0_vue_dist_vue_esm__ = __webpack_require__(/*! vue/dist/vue.esm */ 1);
13120
+ /* harmony import */ var __WEBPACK_IMPORTED_MODULE_1_vuex__ = __webpack_require__(/*! vuex */ 3);
13121
+ /* harmony import */ var __WEBPACK_IMPORTED_MODULE_2_axios__ = __webpack_require__(/*! axios */ 4);
13122
+ /* harmony import */ var __WEBPACK_IMPORTED_MODULE_2_axios___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_2_axios__);
13123
+ /* harmony import */ var __WEBPACK_IMPORTED_MODULE_3_core_js_event_hub__ = __webpack_require__(/*! core/js/event-hub */ 5);
13124
+ /* harmony import */ var __WEBPACK_IMPORTED_MODULE_4_component_js_component__ = __webpack_require__(/*! component/js/component */ 2);
13125
+ /* harmony import */ var __WEBPACK_IMPORTED_MODULE_5_core_js_core__ = __webpack_require__(/*! core/js/core */ 36);
13126
+ /* harmony reexport (binding) */ __webpack_require__.d(__webpack_exports__, "Vue", function() { return __WEBPACK_IMPORTED_MODULE_0_vue_dist_vue_esm__["a"]; });
13127
+ /* harmony reexport (binding) */ __webpack_require__.d(__webpack_exports__, "Vuex", function() { return __WEBPACK_IMPORTED_MODULE_1_vuex__["a"]; });
13128
+ /* harmony reexport (default from non-hamory) */ __webpack_require__.d(__webpack_exports__, "axios", function() { return __WEBPACK_IMPORTED_MODULE_2_axios___default.a; });
13129
+ /* harmony reexport (binding) */ __webpack_require__.d(__webpack_exports__, "basemateEventHub", function() { return __WEBPACK_IMPORTED_MODULE_3_core_js_event_hub__["a"]; });
13130
+ /* harmony reexport (binding) */ __webpack_require__.d(__webpack_exports__, "componentMixin", function() { return __WEBPACK_IMPORTED_MODULE_4_component_js_component__["a"]; });
13112
13131
  /* eslint no-console:0 */
13113
13132
  // This file is automatically compiled by Webpack, along with any other files
13114
13133
  // present in this directory. You're encouraged to place your actual application logic in
@@ -13120,30 +13139,6 @@ Object.defineProperty(__webpack_exports__, "__esModule", { value: true });
13120
13139
 
13121
13140
 
13122
13141
 
13123
- console.log('Hello World from Webpacker');
13124
-
13125
- /***/ }),
13126
- /* 16 */
13127
- /*!***************************************************************************************************!*\
13128
- !*** /home/jonas/Projects/basemate/basemate-ui-dev/basemate-ui-core/app/concepts/core/js/core.js ***!
13129
- \***************************************************************************************************/
13130
- /*! exports provided: default */
13131
- /***/ (function(module, __webpack_exports__, __webpack_require__) {
13132
-
13133
- "use strict";
13134
- /* harmony import */ var __WEBPACK_IMPORTED_MODULE_0_vue_dist_vue_esm__ = __webpack_require__(/*! vue/dist/vue.esm */ 1);
13135
- /* harmony import */ var __WEBPACK_IMPORTED_MODULE_1_app_js_app__ = __webpack_require__(/*! app/js/app */ 19);
13136
- /* harmony import */ var __WEBPACK_IMPORTED_MODULE_2_app_js_store__ = __webpack_require__(/*! app/js/store */ 38);
13137
- /* harmony import */ var __WEBPACK_IMPORTED_MODULE_3_component_js_component__ = __webpack_require__(/*! component/js/component */ 2);
13138
- /* harmony import */ var __WEBPACK_IMPORTED_MODULE_4_component_js_anonym_dynamic_component__ = __webpack_require__(/*! component/js/anonym-dynamic-component */ 39);
13139
- /* harmony import */ var __WEBPACK_IMPORTED_MODULE_5_html_js_html__ = __webpack_require__(/*! html/js/html */ 40);
13140
- /* harmony import */ var __WEBPACK_IMPORTED_MODULE_6_transition_js_transition__ = __webpack_require__(/*! transition/js/transition */ 41);
13141
- /* harmony import */ var __WEBPACK_IMPORTED_MODULE_7_action_js_action__ = __webpack_require__(/*! action/js/action */ 42);
13142
- /* harmony import */ var __WEBPACK_IMPORTED_MODULE_8_form_js_form__ = __webpack_require__(/*! form/js/form */ 43);
13143
-
13144
-
13145
-
13146
-
13147
13142
 
13148
13143
 
13149
13144
 
@@ -13151,20 +13146,9 @@ console.log('Hello World from Webpacker');
13151
13146
 
13152
13147
 
13153
13148
 
13154
- let basemateUiApp = undefined;
13155
-
13156
- document.addEventListener('DOMContentLoaded', () => {
13157
-
13158
- basemateUiApp = new __WEBPACK_IMPORTED_MODULE_0_vue_dist_vue_esm__["a" /* default */]({
13159
- el: "#basemate_ui",
13160
- store: __WEBPACK_IMPORTED_MODULE_2_app_js_store__["a" /* default */]
13161
- });
13162
- });
13163
-
13164
- /* unused harmony default export */ var _unused_webpack_default_export = (__WEBPACK_IMPORTED_MODULE_0_vue_dist_vue_esm__["a" /* default */]);
13165
13149
 
13166
13150
  /***/ }),
13167
- /* 17 */
13151
+ /* 16 */
13168
13152
  /*!************************************************!*\
13169
13153
  !*** ./node_modules/timers-browserify/main.js ***!
13170
13154
  \************************************************/
@@ -13225,7 +13209,7 @@ exports._unrefActive = exports.active = function(item) {
13225
13209
  };
13226
13210
 
13227
13211
  // setimmediate attaches itself to the global object
13228
- __webpack_require__(/*! setimmediate */ 18);
13212
+ __webpack_require__(/*! setimmediate */ 17);
13229
13213
  // On some exotic environments, it's not clear which object `setimmediate` was
13230
13214
  // able to install onto. Search each possibility in the same order as the
13231
13215
  // `setimmediate` library.
@@ -13236,10 +13220,10 @@ exports.clearImmediate = (typeof self !== "undefined" && self.clearImmediate) ||
13236
13220
  (typeof global !== "undefined" && global.clearImmediate) ||
13237
13221
  (this && this.clearImmediate);
13238
13222
 
13239
- /* WEBPACK VAR INJECTION */}.call(exports, __webpack_require__(/*! ./../webpack/buildin/global.js */ 5)))
13223
+ /* WEBPACK VAR INJECTION */}.call(exports, __webpack_require__(/*! ./../webpack/buildin/global.js */ 6)))
13240
13224
 
13241
13225
  /***/ }),
13242
- /* 18 */
13226
+ /* 17 */
13243
13227
  /*!***************************************************!*\
13244
13228
  !*** ./node_modules/setimmediate/setImmediate.js ***!
13245
13229
  \***************************************************/
@@ -13434,52 +13418,10 @@ exports.clearImmediate = (typeof self !== "undefined" && self.clearImmediate) ||
13434
13418
  attachTo.clearImmediate = clearImmediate;
13435
13419
  }(typeof self === "undefined" ? typeof global === "undefined" ? this : global : self));
13436
13420
 
13437
- /* WEBPACK VAR INJECTION */}.call(exports, __webpack_require__(/*! ./../webpack/buildin/global.js */ 5), __webpack_require__(/*! ./../process/browser.js */ 8)))
13421
+ /* WEBPACK VAR INJECTION */}.call(exports, __webpack_require__(/*! ./../webpack/buildin/global.js */ 6), __webpack_require__(/*! ./../process/browser.js */ 8)))
13438
13422
 
13439
13423
  /***/ }),
13440
- /* 19 */
13441
- /*!*************************************************************************************************!*\
13442
- !*** /home/jonas/Projects/basemate/basemate-ui-dev/basemate-ui-core/app/concepts/app/js/app.js ***!
13443
- \*************************************************************************************************/
13444
- /*! exports provided: default */
13445
- /***/ (function(module, __webpack_exports__, __webpack_require__) {
13446
-
13447
- "use strict";
13448
- /* harmony import */ var __WEBPACK_IMPORTED_MODULE_0_vue_dist_vue_esm__ = __webpack_require__(/*! vue/dist/vue.esm */ 1);
13449
- /* harmony import */ var __WEBPACK_IMPORTED_MODULE_1_axios__ = __webpack_require__(/*! axios */ 3);
13450
- /* harmony import */ var __WEBPACK_IMPORTED_MODULE_1_axios___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_1_axios__);
13451
- /* harmony import */ var __WEBPACK_IMPORTED_MODULE_2_v_runtime_template__ = __webpack_require__(/*! v-runtime-template */ 14);
13452
- /* harmony import */ var __WEBPACK_IMPORTED_MODULE_3_vuex__ = __webpack_require__(/*! vuex */ 4);
13453
-
13454
-
13455
-
13456
-
13457
-
13458
- const componentDef = {
13459
- props: ['appConfig', 'params'],
13460
- data: function () {
13461
- return {};
13462
- },
13463
- computed: __WEBPACK_IMPORTED_MODULE_3_vuex__["a" /* default */].mapState({
13464
- asyncTemplate: state => state.pageTemplate
13465
- }),
13466
- mounted: function () {
13467
- const self = this;
13468
- window.onpopstate = function (event) {
13469
- self.$store.dispatch("navigateTo", { url: document.location.pathname, backwards: true });
13470
- };
13471
- },
13472
- components: {
13473
- VRuntimeTemplate: __WEBPACK_IMPORTED_MODULE_2_v_runtime_template__["a" /* default */]
13474
- }
13475
- };
13476
-
13477
- let component = __WEBPACK_IMPORTED_MODULE_0_vue_dist_vue_esm__["a" /* default */].component('app', componentDef);
13478
-
13479
- /* unused harmony default export */ var _unused_webpack_default_export = (componentDef);
13480
-
13481
- /***/ }),
13482
- /* 20 */
13424
+ /* 18 */
13483
13425
  /*!******************************************************************************************************!*\
13484
13426
  !*** /home/jonas/Projects/basemate/basemate-ui-dev/basemate-ui-core/node_modules/axios/lib/axios.js ***!
13485
13427
  \******************************************************************************************************/
@@ -13492,8 +13434,8 @@ let component = __WEBPACK_IMPORTED_MODULE_0_vue_dist_vue_esm__["a" /* default */
13492
13434
 
13493
13435
  var utils = __webpack_require__(/*! ./utils */ 0);
13494
13436
  var bind = __webpack_require__(/*! ./helpers/bind */ 9);
13495
- var Axios = __webpack_require__(/*! ./core/Axios */ 22);
13496
- var defaults = __webpack_require__(/*! ./defaults */ 6);
13437
+ var Axios = __webpack_require__(/*! ./core/Axios */ 20);
13438
+ var defaults = __webpack_require__(/*! ./defaults */ 7);
13497
13439
 
13498
13440
  /**
13499
13441
  * Create an instance of Axios
@@ -13527,14 +13469,14 @@ axios.create = function create(instanceConfig) {
13527
13469
 
13528
13470
  // Expose Cancel & CancelToken
13529
13471
  axios.Cancel = __webpack_require__(/*! ./cancel/Cancel */ 13);
13530
- axios.CancelToken = __webpack_require__(/*! ./cancel/CancelToken */ 36);
13472
+ axios.CancelToken = __webpack_require__(/*! ./cancel/CancelToken */ 34);
13531
13473
  axios.isCancel = __webpack_require__(/*! ./cancel/isCancel */ 12);
13532
13474
 
13533
13475
  // Expose all/spread
13534
13476
  axios.all = function all(promises) {
13535
13477
  return Promise.all(promises);
13536
13478
  };
13537
- axios.spread = __webpack_require__(/*! ./helpers/spread */ 37);
13479
+ axios.spread = __webpack_require__(/*! ./helpers/spread */ 35);
13538
13480
 
13539
13481
  module.exports = axios;
13540
13482
 
@@ -13543,7 +13485,7 @@ module.exports.default = axios;
13543
13485
 
13544
13486
 
13545
13487
  /***/ }),
13546
- /* 21 */
13488
+ /* 19 */
13547
13489
  /*!******************************************************************************************************!*\
13548
13490
  !*** /home/jonas/Projects/basemate/basemate-ui-dev/basemate-ui-core/node_modules/is-buffer/index.js ***!
13549
13491
  \******************************************************************************************************/
@@ -13575,7 +13517,7 @@ function isSlowBuffer (obj) {
13575
13517
 
13576
13518
 
13577
13519
  /***/ }),
13578
- /* 22 */
13520
+ /* 20 */
13579
13521
  /*!***********************************************************************************************************!*\
13580
13522
  !*** /home/jonas/Projects/basemate/basemate-ui-dev/basemate-ui-core/node_modules/axios/lib/core/Axios.js ***!
13581
13523
  \***********************************************************************************************************/
@@ -13586,10 +13528,10 @@ function isSlowBuffer (obj) {
13586
13528
  "use strict";
13587
13529
 
13588
13530
 
13589
- var defaults = __webpack_require__(/*! ./../defaults */ 6);
13531
+ var defaults = __webpack_require__(/*! ./../defaults */ 7);
13590
13532
  var utils = __webpack_require__(/*! ./../utils */ 0);
13591
- var InterceptorManager = __webpack_require__(/*! ./InterceptorManager */ 31);
13592
- var dispatchRequest = __webpack_require__(/*! ./dispatchRequest */ 32);
13533
+ var InterceptorManager = __webpack_require__(/*! ./InterceptorManager */ 29);
13534
+ var dispatchRequest = __webpack_require__(/*! ./dispatchRequest */ 30);
13593
13535
 
13594
13536
  /**
13595
13537
  * Create a new instance of Axios
@@ -13666,7 +13608,7 @@ module.exports = Axios;
13666
13608
 
13667
13609
 
13668
13610
  /***/ }),
13669
- /* 23 */
13611
+ /* 21 */
13670
13612
  /*!****************************************************************************************************************************!*\
13671
13613
  !*** /home/jonas/Projects/basemate/basemate-ui-dev/basemate-ui-core/node_modules/axios/lib/helpers/normalizeHeaderName.js ***!
13672
13614
  \****************************************************************************************************************************/
@@ -13690,7 +13632,7 @@ module.exports = function normalizeHeaderName(headers, normalizedName) {
13690
13632
 
13691
13633
 
13692
13634
  /***/ }),
13693
- /* 24 */
13635
+ /* 22 */
13694
13636
  /*!************************************************************************************************************!*\
13695
13637
  !*** /home/jonas/Projects/basemate/basemate-ui-dev/basemate-ui-core/node_modules/axios/lib/core/settle.js ***!
13696
13638
  \************************************************************************************************************/
@@ -13728,7 +13670,7 @@ module.exports = function settle(resolve, reject, response) {
13728
13670
 
13729
13671
 
13730
13672
  /***/ }),
13731
- /* 25 */
13673
+ /* 23 */
13732
13674
  /*!******************************************************************************************************************!*\
13733
13675
  !*** /home/jonas/Projects/basemate/basemate-ui-dev/basemate-ui-core/node_modules/axios/lib/core/enhanceError.js ***!
13734
13676
  \******************************************************************************************************************/
@@ -13761,7 +13703,7 @@ module.exports = function enhanceError(error, config, code, request, response) {
13761
13703
 
13762
13704
 
13763
13705
  /***/ }),
13764
- /* 26 */
13706
+ /* 24 */
13765
13707
  /*!*****************************************************************************************************************!*\
13766
13708
  !*** /home/jonas/Projects/basemate/basemate-ui-dev/basemate-ui-core/node_modules/axios/lib/helpers/buildURL.js ***!
13767
13709
  \*****************************************************************************************************************/
@@ -13839,7 +13781,7 @@ module.exports = function buildURL(url, params, paramsSerializer) {
13839
13781
 
13840
13782
 
13841
13783
  /***/ }),
13842
- /* 27 */
13784
+ /* 25 */
13843
13785
  /*!*********************************************************************************************************************!*\
13844
13786
  !*** /home/jonas/Projects/basemate/basemate-ui-dev/basemate-ui-core/node_modules/axios/lib/helpers/parseHeaders.js ***!
13845
13787
  \*********************************************************************************************************************/
@@ -13904,7 +13846,7 @@ module.exports = function parseHeaders(headers) {
13904
13846
 
13905
13847
 
13906
13848
  /***/ }),
13907
- /* 28 */
13849
+ /* 26 */
13908
13850
  /*!************************************************************************************************************************!*\
13909
13851
  !*** /home/jonas/Projects/basemate/basemate-ui-dev/basemate-ui-core/node_modules/axios/lib/helpers/isURLSameOrigin.js ***!
13910
13852
  \************************************************************************************************************************/
@@ -13984,7 +13926,7 @@ module.exports = (
13984
13926
 
13985
13927
 
13986
13928
  /***/ }),
13987
- /* 29 */
13929
+ /* 27 */
13988
13930
  /*!*************************************************************************************************************!*\
13989
13931
  !*** /home/jonas/Projects/basemate/basemate-ui-dev/basemate-ui-core/node_modules/axios/lib/helpers/btoa.js ***!
13990
13932
  \*************************************************************************************************************/
@@ -14032,7 +13974,7 @@ module.exports = btoa;
14032
13974
 
14033
13975
 
14034
13976
  /***/ }),
14035
- /* 30 */
13977
+ /* 28 */
14036
13978
  /*!****************************************************************************************************************!*\
14037
13979
  !*** /home/jonas/Projects/basemate/basemate-ui-dev/basemate-ui-core/node_modules/axios/lib/helpers/cookies.js ***!
14038
13980
  \****************************************************************************************************************/
@@ -14097,7 +14039,7 @@ module.exports = (
14097
14039
 
14098
14040
 
14099
14041
  /***/ }),
14100
- /* 31 */
14042
+ /* 29 */
14101
14043
  /*!************************************************************************************************************************!*\
14102
14044
  !*** /home/jonas/Projects/basemate/basemate-ui-dev/basemate-ui-core/node_modules/axios/lib/core/InterceptorManager.js ***!
14103
14045
  \************************************************************************************************************************/
@@ -14161,7 +14103,7 @@ module.exports = InterceptorManager;
14161
14103
 
14162
14104
 
14163
14105
  /***/ }),
14164
- /* 32 */
14106
+ /* 30 */
14165
14107
  /*!*********************************************************************************************************************!*\
14166
14108
  !*** /home/jonas/Projects/basemate/basemate-ui-dev/basemate-ui-core/node_modules/axios/lib/core/dispatchRequest.js ***!
14167
14109
  \*********************************************************************************************************************/
@@ -14173,11 +14115,11 @@ module.exports = InterceptorManager;
14173
14115
 
14174
14116
 
14175
14117
  var utils = __webpack_require__(/*! ./../utils */ 0);
14176
- var transformData = __webpack_require__(/*! ./transformData */ 33);
14118
+ var transformData = __webpack_require__(/*! ./transformData */ 31);
14177
14119
  var isCancel = __webpack_require__(/*! ../cancel/isCancel */ 12);
14178
- var defaults = __webpack_require__(/*! ../defaults */ 6);
14179
- var isAbsoluteURL = __webpack_require__(/*! ./../helpers/isAbsoluteURL */ 34);
14180
- var combineURLs = __webpack_require__(/*! ./../helpers/combineURLs */ 35);
14120
+ var defaults = __webpack_require__(/*! ../defaults */ 7);
14121
+ var isAbsoluteURL = __webpack_require__(/*! ./../helpers/isAbsoluteURL */ 32);
14122
+ var combineURLs = __webpack_require__(/*! ./../helpers/combineURLs */ 33);
14181
14123
 
14182
14124
  /**
14183
14125
  * Throws a `Cancel` if cancellation has been requested.
@@ -14259,7 +14201,7 @@ module.exports = function dispatchRequest(config) {
14259
14201
 
14260
14202
 
14261
14203
  /***/ }),
14262
- /* 33 */
14204
+ /* 31 */
14263
14205
  /*!*******************************************************************************************************************!*\
14264
14206
  !*** /home/jonas/Projects/basemate/basemate-ui-dev/basemate-ui-core/node_modules/axios/lib/core/transformData.js ***!
14265
14207
  \*******************************************************************************************************************/
@@ -14291,7 +14233,7 @@ module.exports = function transformData(data, headers, fns) {
14291
14233
 
14292
14234
 
14293
14235
  /***/ }),
14294
- /* 34 */
14236
+ /* 32 */
14295
14237
  /*!**********************************************************************************************************************!*\
14296
14238
  !*** /home/jonas/Projects/basemate/basemate-ui-dev/basemate-ui-core/node_modules/axios/lib/helpers/isAbsoluteURL.js ***!
14297
14239
  \**********************************************************************************************************************/
@@ -14317,7 +14259,7 @@ module.exports = function isAbsoluteURL(url) {
14317
14259
 
14318
14260
 
14319
14261
  /***/ }),
14320
- /* 35 */
14262
+ /* 33 */
14321
14263
  /*!********************************************************************************************************************!*\
14322
14264
  !*** /home/jonas/Projects/basemate/basemate-ui-dev/basemate-ui-core/node_modules/axios/lib/helpers/combineURLs.js ***!
14323
14265
  \********************************************************************************************************************/
@@ -14343,7 +14285,7 @@ module.exports = function combineURLs(baseURL, relativeURL) {
14343
14285
 
14344
14286
 
14345
14287
  /***/ }),
14346
- /* 36 */
14288
+ /* 34 */
14347
14289
  /*!*******************************************************************************************************************!*\
14348
14290
  !*** /home/jonas/Projects/basemate/basemate-ui-dev/basemate-ui-core/node_modules/axios/lib/cancel/CancelToken.js ***!
14349
14291
  \*******************************************************************************************************************/
@@ -14412,7 +14354,7 @@ module.exports = CancelToken;
14412
14354
 
14413
14355
 
14414
14356
  /***/ }),
14415
- /* 37 */
14357
+ /* 35 */
14416
14358
  /*!***************************************************************************************************************!*\
14417
14359
  !*** /home/jonas/Projects/basemate/basemate-ui-dev/basemate-ui-core/node_modules/axios/lib/helpers/spread.js ***!
14418
14360
  \***************************************************************************************************************/
@@ -14450,6 +14392,89 @@ module.exports = function spread(callback) {
14450
14392
  };
14451
14393
 
14452
14394
 
14395
+ /***/ }),
14396
+ /* 36 */
14397
+ /*!***************************************************************************************************!*\
14398
+ !*** /home/jonas/Projects/basemate/basemate-ui-dev/basemate-ui-core/app/concepts/core/js/core.js ***!
14399
+ \***************************************************************************************************/
14400
+ /*! exports provided: default */
14401
+ /***/ (function(module, __webpack_exports__, __webpack_require__) {
14402
+
14403
+ "use strict";
14404
+ /* harmony import */ var __WEBPACK_IMPORTED_MODULE_0_vue_dist_vue_esm__ = __webpack_require__(/*! vue/dist/vue.esm */ 1);
14405
+ /* harmony import */ var __WEBPACK_IMPORTED_MODULE_1_app_js_app__ = __webpack_require__(/*! app/js/app */ 37);
14406
+ /* harmony import */ var __WEBPACK_IMPORTED_MODULE_2_app_js_store__ = __webpack_require__(/*! app/js/store */ 38);
14407
+ /* harmony import */ var __WEBPACK_IMPORTED_MODULE_3_component_js_component__ = __webpack_require__(/*! component/js/component */ 2);
14408
+ /* harmony import */ var __WEBPACK_IMPORTED_MODULE_4_component_js_anonym_dynamic_component__ = __webpack_require__(/*! component/js/anonym-dynamic-component */ 39);
14409
+ /* harmony import */ var __WEBPACK_IMPORTED_MODULE_5_html_js_html__ = __webpack_require__(/*! html/js/html */ 40);
14410
+ /* harmony import */ var __WEBPACK_IMPORTED_MODULE_6_transition_js_transition__ = __webpack_require__(/*! transition/js/transition */ 41);
14411
+ /* harmony import */ var __WEBPACK_IMPORTED_MODULE_7_action_js_action__ = __webpack_require__(/*! action/js/action */ 42);
14412
+ /* harmony import */ var __WEBPACK_IMPORTED_MODULE_8_form_js_form__ = __webpack_require__(/*! form/js/form */ 43);
14413
+
14414
+
14415
+
14416
+
14417
+
14418
+
14419
+
14420
+
14421
+
14422
+
14423
+
14424
+ let basemateUiApp = undefined;
14425
+
14426
+ document.addEventListener('DOMContentLoaded', () => {
14427
+
14428
+ basemateUiApp = new __WEBPACK_IMPORTED_MODULE_0_vue_dist_vue_esm__["a" /* default */]({
14429
+ el: "#basemate_ui",
14430
+ store: __WEBPACK_IMPORTED_MODULE_2_app_js_store__["a" /* default */]
14431
+ });
14432
+ });
14433
+
14434
+ /* unused harmony default export */ var _unused_webpack_default_export = (__WEBPACK_IMPORTED_MODULE_0_vue_dist_vue_esm__["a" /* default */]);
14435
+
14436
+ /***/ }),
14437
+ /* 37 */
14438
+ /*!*************************************************************************************************!*\
14439
+ !*** /home/jonas/Projects/basemate/basemate-ui-dev/basemate-ui-core/app/concepts/app/js/app.js ***!
14440
+ \*************************************************************************************************/
14441
+ /*! exports provided: default */
14442
+ /***/ (function(module, __webpack_exports__, __webpack_require__) {
14443
+
14444
+ "use strict";
14445
+ /* harmony import */ var __WEBPACK_IMPORTED_MODULE_0_vue_dist_vue_esm__ = __webpack_require__(/*! vue/dist/vue.esm */ 1);
14446
+ /* harmony import */ var __WEBPACK_IMPORTED_MODULE_1_axios__ = __webpack_require__(/*! axios */ 4);
14447
+ /* harmony import */ var __WEBPACK_IMPORTED_MODULE_1_axios___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_1_axios__);
14448
+ /* harmony import */ var __WEBPACK_IMPORTED_MODULE_2_v_runtime_template__ = __webpack_require__(/*! v-runtime-template */ 14);
14449
+ /* harmony import */ var __WEBPACK_IMPORTED_MODULE_3_vuex__ = __webpack_require__(/*! vuex */ 3);
14450
+
14451
+
14452
+
14453
+
14454
+
14455
+ const componentDef = {
14456
+ props: ['appConfig', 'params'],
14457
+ data: function () {
14458
+ return {};
14459
+ },
14460
+ computed: __WEBPACK_IMPORTED_MODULE_3_vuex__["a" /* default */].mapState({
14461
+ asyncTemplate: state => state.pageTemplate
14462
+ }),
14463
+ mounted: function () {
14464
+ const self = this;
14465
+ window.onpopstate = function (event) {
14466
+ self.$store.dispatch("navigateTo", { url: document.location.pathname, backwards: true });
14467
+ };
14468
+ },
14469
+ components: {
14470
+ VRuntimeTemplate: __WEBPACK_IMPORTED_MODULE_2_v_runtime_template__["a" /* default */]
14471
+ }
14472
+ };
14473
+
14474
+ let component = __WEBPACK_IMPORTED_MODULE_0_vue_dist_vue_esm__["a" /* default */].component('app', componentDef);
14475
+
14476
+ /* unused harmony default export */ var _unused_webpack_default_export = (componentDef);
14477
+
14453
14478
  /***/ }),
14454
14479
  /* 38 */
14455
14480
  /*!***************************************************************************************************!*\
@@ -14461,8 +14486,8 @@ module.exports = function spread(callback) {
14461
14486
 
14462
14487
  "use strict";
14463
14488
  /* harmony import */ var __WEBPACK_IMPORTED_MODULE_0_vue_dist_vue_esm__ = __webpack_require__(/*! vue/dist/vue.esm */ 1);
14464
- /* harmony import */ var __WEBPACK_IMPORTED_MODULE_1_vuex__ = __webpack_require__(/*! vuex */ 4);
14465
- /* harmony import */ var __WEBPACK_IMPORTED_MODULE_2_axios__ = __webpack_require__(/*! axios */ 3);
14489
+ /* harmony import */ var __WEBPACK_IMPORTED_MODULE_1_vuex__ = __webpack_require__(/*! vuex */ 3);
14490
+ /* harmony import */ var __WEBPACK_IMPORTED_MODULE_2_axios__ = __webpack_require__(/*! axios */ 4);
14466
14491
  /* harmony import */ var __WEBPACK_IMPORTED_MODULE_2_axios___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_2_axios__);
14467
14492
 
14468
14493
 
@@ -14583,7 +14608,7 @@ let component = __WEBPACK_IMPORTED_MODULE_0_vue_dist_vue_esm__["a" /* default */
14583
14608
 
14584
14609
  "use strict";
14585
14610
  /* harmony import */ var __WEBPACK_IMPORTED_MODULE_0_vue_dist_vue_esm__ = __webpack_require__(/*! vue/dist/vue.esm */ 1);
14586
- /* harmony import */ var __WEBPACK_IMPORTED_MODULE_1_vuex__ = __webpack_require__(/*! vuex */ 4);
14611
+ /* harmony import */ var __WEBPACK_IMPORTED_MODULE_1_vuex__ = __webpack_require__(/*! vuex */ 3);
14587
14612
  /* harmony import */ var __WEBPACK_IMPORTED_MODULE_2_component_js_component__ = __webpack_require__(/*! component/js/component */ 2);
14588
14613
 
14589
14614
 
@@ -14622,10 +14647,10 @@ let component = __WEBPACK_IMPORTED_MODULE_0_vue_dist_vue_esm__["a" /* default */
14622
14647
 
14623
14648
  "use strict";
14624
14649
  /* harmony import */ var __WEBPACK_IMPORTED_MODULE_0_vue_dist_vue_esm__ = __webpack_require__(/*! vue/dist/vue.esm */ 1);
14625
- /* harmony import */ var __WEBPACK_IMPORTED_MODULE_1_vuex__ = __webpack_require__(/*! vuex */ 4);
14626
- /* harmony import */ var __WEBPACK_IMPORTED_MODULE_2_axios__ = __webpack_require__(/*! axios */ 3);
14650
+ /* harmony import */ var __WEBPACK_IMPORTED_MODULE_1_vuex__ = __webpack_require__(/*! vuex */ 3);
14651
+ /* harmony import */ var __WEBPACK_IMPORTED_MODULE_2_axios__ = __webpack_require__(/*! axios */ 4);
14627
14652
  /* harmony import */ var __WEBPACK_IMPORTED_MODULE_2_axios___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_2_axios__);
14628
- /* harmony import */ var __WEBPACK_IMPORTED_MODULE_3_core_js_event_hub__ = __webpack_require__(/*! core/js/event-hub */ 7);
14653
+ /* harmony import */ var __WEBPACK_IMPORTED_MODULE_3_core_js_event_hub__ = __webpack_require__(/*! core/js/event-hub */ 5);
14629
14654
  /* harmony import */ var __WEBPACK_IMPORTED_MODULE_4_component_js_component__ = __webpack_require__(/*! component/js/component */ 2);
14630
14655
 
14631
14656
 
@@ -14684,10 +14709,10 @@ let component = __WEBPACK_IMPORTED_MODULE_0_vue_dist_vue_esm__["a" /* default */
14684
14709
 
14685
14710
  "use strict";
14686
14711
  /* harmony import */ var __WEBPACK_IMPORTED_MODULE_0_vue_dist_vue_esm__ = __webpack_require__(/*! vue/dist/vue.esm */ 1);
14687
- /* harmony import */ var __WEBPACK_IMPORTED_MODULE_1_vuex__ = __webpack_require__(/*! vuex */ 4);
14688
- /* harmony import */ var __WEBPACK_IMPORTED_MODULE_2_axios__ = __webpack_require__(/*! axios */ 3);
14712
+ /* harmony import */ var __WEBPACK_IMPORTED_MODULE_1_vuex__ = __webpack_require__(/*! vuex */ 3);
14713
+ /* harmony import */ var __WEBPACK_IMPORTED_MODULE_2_axios__ = __webpack_require__(/*! axios */ 4);
14689
14714
  /* harmony import */ var __WEBPACK_IMPORTED_MODULE_2_axios___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_2_axios__);
14690
- /* harmony import */ var __WEBPACK_IMPORTED_MODULE_3_core_js_event_hub__ = __webpack_require__(/*! core/js/event-hub */ 7);
14715
+ /* harmony import */ var __WEBPACK_IMPORTED_MODULE_3_core_js_event_hub__ = __webpack_require__(/*! core/js/event-hub */ 5);
14691
14716
  /* harmony import */ var __WEBPACK_IMPORTED_MODULE_4_component_js_component__ = __webpack_require__(/*! component/js/component */ 2);
14692
14717
 
14693
14718