eoss-ui 0.5.24 → 0.5.25
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 +929 -0
- package/lib/data-table.js +12 -8
- package/lib/eoss-ui.common.js +505 -420
- package/lib/form.js +11 -3
- package/lib/index.js +1 -1
- package/lib/main.js +7 -3
- package/lib/selector.js +424 -380
- package/lib/table-form.js +33 -8
- package/lib/theme-chalk/form.css +1 -1
- package/lib/theme-chalk/index.css +1 -1
- package/package.json +1 -1
- package/packages/data-table/src/column.vue +5 -1
- package/packages/form/src/main.vue +9 -1
- package/packages/form/src/table.vue +21 -2
- package/packages/main/src/main.vue +5 -1
- package/packages/selector/src/main.vue +144 -135
- package/packages/theme-chalk/lib/form.css +1 -1
- package/packages/theme-chalk/lib/index.css +1 -1
- package/packages/theme-chalk/src/form.scss +13 -0
- package/src/index.js +1 -1
package/lib/main.js
CHANGED
|
@@ -3653,7 +3653,7 @@ module.exports = require("runtime-import");
|
|
|
3653
3653
|
// ESM COMPAT FLAG
|
|
3654
3654
|
__webpack_require__.r(__webpack_exports__);
|
|
3655
3655
|
|
|
3656
|
-
// CONCATENATED MODULE: ./node_modules/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!./node_modules/vue-loader/lib??vue-loader-options!./packages/main/src/main.vue?vue&type=template&id=
|
|
3656
|
+
// CONCATENATED MODULE: ./node_modules/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!./node_modules/vue-loader/lib??vue-loader-options!./packages/main/src/main.vue?vue&type=template&id=ca091d5e&
|
|
3657
3657
|
var render = function () {
|
|
3658
3658
|
var _vm = this
|
|
3659
3659
|
var _h = _vm.$createElement
|
|
@@ -4083,7 +4083,7 @@ var staticRenderFns = []
|
|
|
4083
4083
|
render._withStripped = true
|
|
4084
4084
|
|
|
4085
4085
|
|
|
4086
|
-
// CONCATENATED MODULE: ./packages/main/src/main.vue?vue&type=template&id=
|
|
4086
|
+
// CONCATENATED MODULE: ./packages/main/src/main.vue?vue&type=template&id=ca091d5e&
|
|
4087
4087
|
|
|
4088
4088
|
// CONCATENATED MODULE: ./node_modules/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!./node_modules/vue-loader/lib??vue-loader-options!./packages/main/src/userinfo.vue?vue&type=template&id=799780ee&
|
|
4089
4089
|
var userinfovue_type_template_id_799780ee_render = function () {
|
|
@@ -6538,11 +6538,14 @@ var log = util["a" /* default */].getParams('console');
|
|
|
6538
6538
|
});
|
|
6539
6539
|
}
|
|
6540
6540
|
util["a" /* default */].win.windowOpen = this.openPage;
|
|
6541
|
+
util["a" /* default */].win.addEventListener('popstate', this.stateHandle, false);
|
|
6541
6542
|
},
|
|
6542
6543
|
|
|
6543
6544
|
methods: {
|
|
6545
|
+
stateHandle: function stateHandle() {
|
|
6546
|
+
util["a" /* default */].win.location.reload();
|
|
6547
|
+
},
|
|
6544
6548
|
menuSuccess: function menuSuccess(res) {
|
|
6545
|
-
// this.menus
|
|
6546
6549
|
this.menuType = 'custom';
|
|
6547
6550
|
if (res && res.length) {
|
|
6548
6551
|
this.customMenu = res;
|
|
@@ -7847,6 +7850,7 @@ var log = util["a" /* default */].getParams('console');
|
|
|
7847
7850
|
if (this.webSocket) {
|
|
7848
7851
|
this.webSocket.destroy();
|
|
7849
7852
|
}
|
|
7853
|
+
util["a" /* default */].win.removeEventListener('popstate', this.tateHandle);
|
|
7850
7854
|
}
|
|
7851
7855
|
});
|
|
7852
7856
|
// CONCATENATED MODULE: ./packages/main/src/main.vue?vue&type=script&lang=js&
|