eoss-ui 0.6.25 → 0.6.27
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 +3 -3
- package/lib/eoss-ui.common.js +283 -138
- package/lib/flow-list.js +13 -7
- package/lib/flow.js +8 -8
- package/lib/handler.js +73 -38
- package/lib/icons.js +1 -1
- package/lib/index.js +1 -1
- package/lib/login.js +18 -8
- package/lib/main.js +151 -57
- package/lib/theme-chalk/base.css +1 -1
- package/lib/theme-chalk/fonts/iconfont.ttf +0 -0
- package/lib/theme-chalk/fonts/iconfont.woff +0 -0
- package/lib/theme-chalk/handler.css +1 -1
- package/lib/theme-chalk/icon.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/simplicity.css +1 -1
- package/lib/theme-chalk/sizer.css +1 -1
- package/lib/theme-chalk/upload.css +1 -1
- package/package.json +1 -1
- package/packages/.DS_Store +0 -0
- package/packages/button-group/src/main.vue +1 -1
- package/packages/flow/src/processReject.vue +1 -1
- package/packages/flow-list/src/main.vue +6 -1
- package/packages/handler/.DS_Store +0 -0
- package/packages/handler/src/main.vue +60 -46
- package/packages/icons/src/icon.json +1 -1
- package/packages/login/.DS_Store +0 -0
- package/packages/login/src/main.vue +16 -6
- package/packages/main/.DS_Store +0 -0
- package/packages/main/src/default/index.vue +16 -4
- package/packages/main/src/simplicity/handler.vue +55 -17
- package/packages/main/src/simplicity/index.vue +16 -3
- package/packages/theme-chalk/lib/base.css +1 -1
- package/packages/theme-chalk/lib/fonts/iconfont.ttf +0 -0
- package/packages/theme-chalk/lib/fonts/iconfont.woff +0 -0
- package/packages/theme-chalk/lib/handler.css +1 -1
- package/packages/theme-chalk/lib/icon.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/simplicity.css +1 -1
- package/packages/theme-chalk/lib/sizer.css +1 -1
- package/packages/theme-chalk/lib/upload.css +1 -1
- package/packages/theme-chalk/src/.DS_Store +0 -0
- package/packages/theme-chalk/src/fonts/iconfont.ttf +0 -0
- package/packages/theme-chalk/src/fonts/iconfont.woff +0 -0
- package/packages/theme-chalk/src/handler.scss +10 -0
- package/packages/theme-chalk/src/icon.scss +8 -0
- package/packages/theme-chalk/src/simplicity.scss +18 -8
- package/src/index.js +1 -1
package/lib/button-group.js
CHANGED
|
@@ -3960,7 +3960,7 @@ module.exports = require("sm-crypto");
|
|
|
3960
3960
|
// ESM COMPAT FLAG
|
|
3961
3961
|
__webpack_require__.r(__webpack_exports__);
|
|
3962
3962
|
|
|
3963
|
-
// CONCATENATED MODULE: ./node_modules/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!./node_modules/vue-loader/lib??vue-loader-options!./packages/button-group/src/main.vue?vue&type=template&id=
|
|
3963
|
+
// CONCATENATED MODULE: ./node_modules/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!./node_modules/vue-loader/lib??vue-loader-options!./packages/button-group/src/main.vue?vue&type=template&id=7bbfad27&
|
|
3964
3964
|
var render = function () {
|
|
3965
3965
|
var _vm = this
|
|
3966
3966
|
var _h = _vm.$createElement
|
|
@@ -4241,7 +4241,7 @@ var staticRenderFns = []
|
|
|
4241
4241
|
render._withStripped = true
|
|
4242
4242
|
|
|
4243
4243
|
|
|
4244
|
-
// CONCATENATED MODULE: ./packages/button-group/src/main.vue?vue&type=template&id=
|
|
4244
|
+
// CONCATENATED MODULE: ./packages/button-group/src/main.vue?vue&type=template&id=7bbfad27&
|
|
4245
4245
|
|
|
4246
4246
|
// EXTERNAL MODULE: ./src/utils/util.js
|
|
4247
4247
|
var util = __webpack_require__(0);
|
|
@@ -4483,7 +4483,7 @@ var _extends = Object.assign || function (target) { for (var i = 1; i < argument
|
|
|
4483
4483
|
if (useCaseCodes && (item.useCaseCode || keyword)) {
|
|
4484
4484
|
return useCaseCodes.indexOf(item.useCaseCode || keyword) > -1;
|
|
4485
4485
|
}
|
|
4486
|
-
return true;
|
|
4486
|
+
return item.hide !== true;
|
|
4487
4487
|
});
|
|
4488
4488
|
var newBtns = arry.map(function (item) {
|
|
4489
4489
|
var badge = void 0;
|