eoss-ui 0.7.34 → 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 +271 -133
- 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 +229 -101
- 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 +11 -1
- 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 +6 -4
- 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/flow-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/flow-list.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/flow.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/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/handle-user.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/handler.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/icon.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
|
}
|