eoss-ui 0.7.33 → 0.7.35
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/lib/button-group.js +2 -0
- package/lib/button.js +2 -0
- package/lib/calogin.js +2 -0
- package/lib/checkbox-group.js +2 -0
- package/lib/data-table-form.js +2 -0
- package/lib/data-table.js +2 -0
- package/lib/date-picker.js +2 -0
- package/lib/dialog.js +6 -4
- package/lib/eoss-ui.common.js +320 -171
- package/lib/flow-group.js +2 -0
- package/lib/flow-list.js +2 -0
- package/lib/flow.js +2 -0
- package/lib/form.js +2 -0
- package/lib/handle-user.js +2 -0
- package/lib/handler.js +2 -0
- package/lib/icon.js +2 -0
- package/lib/index.js +1 -1
- package/lib/input-number.js +2 -0
- package/lib/input.js +2 -0
- package/lib/login.js +15 -5
- package/lib/main.js +278 -139
- package/lib/nav.js +2 -0
- package/lib/page.js +2 -0
- package/lib/pagination.js +2 -0
- package/lib/player.js +2 -0
- package/lib/qr-code.js +2 -0
- package/lib/radio-group.js +2 -0
- package/lib/retrial-auth.js +2 -0
- package/lib/select-ganged.js +2 -0
- package/lib/select.js +2 -0
- package/lib/selector-panel.js +2 -0
- package/lib/selector.js +2 -0
- package/lib/sizer.js +2 -0
- package/lib/steps.js +2 -0
- package/lib/switch.js +2 -0
- package/lib/table-form.js +2 -0
- package/lib/tabs.js +2 -0
- package/lib/theme-chalk/index.css +1 -1
- package/lib/theme-chalk/main.css +1 -1
- package/lib/theme-chalk/simplicity.css +1 -1
- package/lib/tips.js +2 -0
- package/lib/tree-group.js +2 -0
- package/lib/tree.js +2 -0
- package/lib/upload.js +9 -5
- package/lib/utils/util.js +2 -0
- package/lib/wujie.js +2 -0
- package/lib/wxlogin.js +2 -0
- package/package.json +1 -1
- package/packages/.DS_Store +0 -0
- package/packages/dialog/.DS_Store +0 -0
- package/packages/dialog/src/main.vue +2 -2
- package/packages/login/.DS_Store +0 -0
- package/packages/login/src/main.vue +13 -3
- package/packages/main/.DS_Store +0 -0
- package/packages/main/src/.DS_Store +0 -0
- package/packages/main/src/main.vue +36 -5
- package/packages/main/src/public/online.vue +1 -1
- package/packages/main/src/simplicity/handler.vue +17 -3
- package/packages/main/src/simplicity/index.vue +29 -30
- package/packages/main/src/simplicity/message.vue +27 -0
- package/packages/main/src/simplicity/notice.vue +26 -0
- package/packages/main/src/simplicity/sub-menu.vue +11 -3
- package/packages/theme-chalk/lib/index.css +1 -1
- package/packages/theme-chalk/lib/main.css +1 -1
- package/packages/theme-chalk/lib/simplicity.css +1 -1
- package/packages/theme-chalk/src/simplicity.scss +11 -1
- package/packages/upload/.DS_Store +0 -0
- package/packages/upload/src/main.vue +1 -0
- package/src/.DS_Store +0 -0
- package/src/index.js +1 -1
- package/src/utils/util.js +2 -0
package/lib/button-group.js
CHANGED
|
@@ -692,6 +692,8 @@ var busEmit = function busEmit(that, _ref3) {
|
|
|
692
692
|
}
|
|
693
693
|
return;
|
|
694
694
|
}
|
|
695
|
+
console.log('busEmit', method, args);
|
|
696
|
+
|
|
695
697
|
var _bus = that ? that.bus || that.$root.Bus || that.$root.$bus : null;
|
|
696
698
|
_bus && (Array.isArray(args) ? _bus.$emit.apply(_bus, [method].concat(args)) : _bus.$emit(method, args));
|
|
697
699
|
}
|
package/lib/button.js
CHANGED
|
@@ -693,6 +693,8 @@ var busEmit = function busEmit(that, _ref3) {
|
|
|
693
693
|
}
|
|
694
694
|
return;
|
|
695
695
|
}
|
|
696
|
+
console.log('busEmit', method, args);
|
|
697
|
+
|
|
696
698
|
var _bus = that ? that.bus || that.$root.Bus || that.$root.$bus : null;
|
|
697
699
|
_bus && (Array.isArray(args) ? _bus.$emit.apply(_bus, [method].concat(args)) : _bus.$emit(method, args));
|
|
698
700
|
}
|
package/lib/calogin.js
CHANGED
|
@@ -692,6 +692,8 @@ var busEmit = function busEmit(that, _ref3) {
|
|
|
692
692
|
}
|
|
693
693
|
return;
|
|
694
694
|
}
|
|
695
|
+
console.log('busEmit', method, args);
|
|
696
|
+
|
|
695
697
|
var _bus = that ? that.bus || that.$root.Bus || that.$root.$bus : null;
|
|
696
698
|
_bus && (Array.isArray(args) ? _bus.$emit.apply(_bus, [method].concat(args)) : _bus.$emit(method, args));
|
|
697
699
|
}
|
package/lib/checkbox-group.js
CHANGED
|
@@ -692,6 +692,8 @@ var busEmit = function busEmit(that, _ref3) {
|
|
|
692
692
|
}
|
|
693
693
|
return;
|
|
694
694
|
}
|
|
695
|
+
console.log('busEmit', method, args);
|
|
696
|
+
|
|
695
697
|
var _bus = that ? that.bus || that.$root.Bus || that.$root.$bus : null;
|
|
696
698
|
_bus && (Array.isArray(args) ? _bus.$emit.apply(_bus, [method].concat(args)) : _bus.$emit(method, args));
|
|
697
699
|
}
|
package/lib/data-table-form.js
CHANGED
|
@@ -692,6 +692,8 @@ var busEmit = function busEmit(that, _ref3) {
|
|
|
692
692
|
}
|
|
693
693
|
return;
|
|
694
694
|
}
|
|
695
|
+
console.log('busEmit', method, args);
|
|
696
|
+
|
|
695
697
|
var _bus = that ? that.bus || that.$root.Bus || that.$root.$bus : null;
|
|
696
698
|
_bus && (Array.isArray(args) ? _bus.$emit.apply(_bus, [method].concat(args)) : _bus.$emit(method, args));
|
|
697
699
|
}
|
package/lib/data-table.js
CHANGED
|
@@ -692,6 +692,8 @@ var busEmit = function busEmit(that, _ref3) {
|
|
|
692
692
|
}
|
|
693
693
|
return;
|
|
694
694
|
}
|
|
695
|
+
console.log('busEmit', method, args);
|
|
696
|
+
|
|
695
697
|
var _bus = that ? that.bus || that.$root.Bus || that.$root.$bus : null;
|
|
696
698
|
_bus && (Array.isArray(args) ? _bus.$emit.apply(_bus, [method].concat(args)) : _bus.$emit(method, args));
|
|
697
699
|
}
|
package/lib/date-picker.js
CHANGED
|
@@ -693,6 +693,8 @@ var busEmit = function busEmit(that, _ref3) {
|
|
|
693
693
|
}
|
|
694
694
|
return;
|
|
695
695
|
}
|
|
696
|
+
console.log('busEmit', method, args);
|
|
697
|
+
|
|
696
698
|
var _bus = that ? that.bus || that.$root.Bus || that.$root.$bus : null;
|
|
697
699
|
_bus && (Array.isArray(args) ? _bus.$emit.apply(_bus, [method].concat(args)) : _bus.$emit(method, args));
|
|
698
700
|
}
|
package/lib/dialog.js
CHANGED
|
@@ -692,6 +692,8 @@ var busEmit = function busEmit(that, _ref3) {
|
|
|
692
692
|
}
|
|
693
693
|
return;
|
|
694
694
|
}
|
|
695
|
+
console.log('busEmit', method, args);
|
|
696
|
+
|
|
695
697
|
var _bus = that ? that.bus || that.$root.Bus || that.$root.$bus : null;
|
|
696
698
|
_bus && (Array.isArray(args) ? _bus.$emit.apply(_bus, [method].concat(args)) : _bus.$emit(method, args));
|
|
697
699
|
}
|
|
@@ -4501,7 +4503,7 @@ module.exports = require("wujie-vue2");
|
|
|
4501
4503
|
// ESM COMPAT FLAG
|
|
4502
4504
|
__webpack_require__.r(__webpack_exports__);
|
|
4503
4505
|
|
|
4504
|
-
// CONCATENATED MODULE: ./node_modules/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!./node_modules/vue-loader/lib??vue-loader-options!./packages/dialog/src/main.vue?vue&type=template&id=
|
|
4506
|
+
// CONCATENATED MODULE: ./node_modules/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!./node_modules/vue-loader/lib??vue-loader-options!./packages/dialog/src/main.vue?vue&type=template&id=5430550f&
|
|
4505
4507
|
var render = function () {
|
|
4506
4508
|
var _vm = this
|
|
4507
4509
|
var _h = _vm.$createElement
|
|
@@ -5020,7 +5022,7 @@ var staticRenderFns = []
|
|
|
5020
5022
|
render._withStripped = true
|
|
5021
5023
|
|
|
5022
5024
|
|
|
5023
|
-
// CONCATENATED MODULE: ./packages/dialog/src/main.vue?vue&type=template&id=
|
|
5025
|
+
// CONCATENATED MODULE: ./packages/dialog/src/main.vue?vue&type=template&id=5430550f&
|
|
5024
5026
|
|
|
5025
5027
|
// EXTERNAL MODULE: external "babel-runtime/regenerator"
|
|
5026
5028
|
var regenerator_ = __webpack_require__(4);
|
|
@@ -5360,8 +5362,8 @@ var systemMode = util["a" /* default */].win.top.systemMode || util["a" /* defau
|
|
|
5360
5362
|
return {};
|
|
5361
5363
|
}
|
|
5362
5364
|
},
|
|
5363
|
-
width: String,
|
|
5364
|
-
height: String,
|
|
5365
|
+
width: [String, Number],
|
|
5366
|
+
height: [String, Number],
|
|
5365
5367
|
middle: {
|
|
5366
5368
|
type: Boolean,
|
|
5367
5369
|
default: true
|