eoss-ui 0.5.64 → 0.5.66
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/button-group.js +209 -44
- package/lib/button.js +65 -37
- package/lib/calendar.js +18 -6
- package/lib/data-table.js +116 -31
- package/lib/eoss-ui.common.js +1143 -719
- package/lib/form.js +22 -7
- package/lib/index.js +1 -1
- package/lib/login.js +11 -2
- package/lib/main.js +183 -121
- package/lib/selector.js +469 -429
- package/lib/theme-chalk/base.css +1 -1
- package/lib/theme-chalk/button-group.css +1 -1
- package/lib/theme-chalk/button.css +1 -1
- package/lib/theme-chalk/calendar.css +1 -1
- package/lib/theme-chalk/index.css +1 -1
- package/lib/theme-chalk/main.css +1 -1
- package/lib/theme-chalk/menu.css +1 -1
- package/lib/theme-chalk/sizer.css +1 -1
- package/lib/theme-chalk/tree.css +1 -1
- package/lib/theme-chalk/upload.css +1 -1
- package/lib/toolbar.js +6 -0
- package/lib/upload.js +9 -7
- package/package.json +2 -2
- package/packages/button/src/main.vue +96 -56
- package/packages/button-group/src/main.vue +72 -8
- package/packages/calendar/src/main.vue +16 -5
- package/packages/data-table/src/children.vue +3 -1
- package/packages/data-table/src/column.vue +1 -1
- package/packages/data-table/src/main.vue +55 -10
- package/packages/form/src/main.vue +19 -5
- package/packages/login/src/main.vue +8 -0
- package/packages/main/src/main.vue +141 -96
- package/packages/selector/src/main.vue +31 -5
- package/packages/theme-chalk/lib/base.css +1 -1
- package/packages/theme-chalk/lib/button-group.css +1 -1
- package/packages/theme-chalk/lib/button.css +1 -1
- package/packages/theme-chalk/lib/calendar.css +1 -1
- package/packages/theme-chalk/lib/index.css +1 -1
- package/packages/theme-chalk/lib/main.css +1 -1
- package/packages/theme-chalk/lib/menu.css +1 -1
- package/packages/theme-chalk/lib/sizer.css +1 -1
- package/packages/theme-chalk/lib/tree.css +1 -1
- package/packages/theme-chalk/lib/upload.css +1 -1
- package/packages/theme-chalk/src/base.scss +3 -0
- package/packages/theme-chalk/src/button-group.scss +149 -0
- package/packages/theme-chalk/src/button.scss +6 -0
- package/packages/theme-chalk/src/calendar.scss +3 -0
- package/packages/theme-chalk/src/tree.scss +1 -0
- package/packages/toolbar/src/main.vue +6 -0
- package/packages/upload/src/main.vue +4 -2
- package/src/index.js +1 -1
package/lib/login.js
CHANGED
|
@@ -3845,7 +3845,7 @@ var bankCard = { pattern: new RegExp('^([1-9]{1})(\\d{14}|\\d{18})$'), message:
|
|
|
3845
3845
|
// ESM COMPAT FLAG
|
|
3846
3846
|
__webpack_require__.r(__webpack_exports__);
|
|
3847
3847
|
|
|
3848
|
-
// CONCATENATED MODULE: ./node_modules/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!./node_modules/vue-loader/lib??vue-loader-options!./packages/login/src/main.vue?vue&type=template&id=
|
|
3848
|
+
// CONCATENATED MODULE: ./node_modules/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!./node_modules/vue-loader/lib??vue-loader-options!./packages/login/src/main.vue?vue&type=template&id=b795be2e&
|
|
3849
3849
|
var render = function () {
|
|
3850
3850
|
var _vm = this
|
|
3851
3851
|
var _h = _vm.$createElement
|
|
@@ -4769,7 +4769,7 @@ var staticRenderFns = []
|
|
|
4769
4769
|
render._withStripped = true
|
|
4770
4770
|
|
|
4771
4771
|
|
|
4772
|
-
// CONCATENATED MODULE: ./packages/login/src/main.vue?vue&type=template&id=
|
|
4772
|
+
// CONCATENATED MODULE: ./packages/login/src/main.vue?vue&type=template&id=b795be2e&
|
|
4773
4773
|
|
|
4774
4774
|
// CONCATENATED MODULE: ./node_modules/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!./node_modules/vue-loader/lib??vue-loader-options!./packages/login/src/resetPassword.vue?vue&type=template&id=28f463b9&
|
|
4775
4775
|
var resetPasswordvue_type_template_id_28f463b9_render = function () {
|
|
@@ -6007,6 +6007,12 @@ var mainvue_type_script_lang_js_extends = Object.assign || function (target) { f
|
|
|
6007
6007
|
this.loginInfo(val == 3);
|
|
6008
6008
|
}
|
|
6009
6009
|
},
|
|
6010
|
+
identifyingId: function identifyingId(val) {
|
|
6011
|
+
if (val) {
|
|
6012
|
+
this.loginInfo(this.active == 3);
|
|
6013
|
+
}
|
|
6014
|
+
},
|
|
6015
|
+
|
|
6010
6016
|
appName: {
|
|
6011
6017
|
immediate: true,
|
|
6012
6018
|
handler: function handler(val) {
|
|
@@ -6610,6 +6616,9 @@ var mainvue_type_script_lang_js_extends = Object.assign || function (target) { f
|
|
|
6610
6616
|
initRequestLoginInfo: function initRequestLoginInfo() {
|
|
6611
6617
|
var _this9 = this;
|
|
6612
6618
|
|
|
6619
|
+
if (this.identifyingId == '') {
|
|
6620
|
+
return false;
|
|
6621
|
+
}
|
|
6613
6622
|
util["a" /* default */].ajax({
|
|
6614
6623
|
method: 'post',
|
|
6615
6624
|
url: this.scanAction,
|