@bytenew/bn-bus-ui 1.1.406 → 1.1.407

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.
Files changed (2) hide show
  1. package/common.scss +27 -6
  2. package/package.json +1 -1
package/common.scss CHANGED
@@ -498,14 +498,26 @@ $border-directions: (
498
498
  line-height: #{$i}px !important;
499
499
  }
500
500
  /**
501
- * 动态生成圆角类
502
- * 示例:
503
- * .w-border-radius20 { border-radius: 20px !important; }
504
- */
501
+ * 动态生成圆角类
502
+ * 示例:
503
+ * .w-radius20 { radius: 20px !important; }
504
+ */
505
505
 
506
- .w-border-radius#{$i} {
506
+ .w-radius#{$i} {
507
507
  border-radius: #{$i}px !important;
508
508
  }
509
+ .w-radius-bl#{$i} {
510
+ border-bottom-left-radius: #{$i}px !important;
511
+ }
512
+ .w-radius-br#{$i} {
513
+ border-bottom-right-radius: #{$i}px !important;
514
+ }
515
+ .w-radius-tl#{$i} {
516
+ border-top-left-radius: #{$i}px !important;
517
+ }
518
+ .w-radius-tr#{$i} {
519
+ border-top-right-radius: #{$i}px !important;
520
+ }
509
521
  /**
510
522
  * 动态生成padding和margin类
511
523
  * 示例:
@@ -653,7 +665,12 @@ $border-directions: (
653
665
  .w-color-turquoise,
654
666
  .w-color-violet,
655
667
  .w-color-gold,
656
- .w-border-radius{
668
+ .w-radius,
669
+ .w-radius-bl,
670
+ .w-radius-br,
671
+ .w-radius-tl,
672
+ .w-radius-tr
673
+ {
657
674
  }
658
675
 
659
676
  //覆盖elementUI相关组件样式,写在最下面
@@ -751,4 +768,8 @@ $border-directions: (
751
768
  width: 24px;
752
769
  }
753
770
  }
771
+ }
772
+ //输入框圆角修改为8px
773
+ .el-input__wrapper{
774
+ border-radius: 8px;
754
775
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@bytenew/bn-bus-ui",
3
- "version": "1.1.406",
3
+ "version": "1.1.407",
4
4
  "description": "班牛业务组件库,集合版",
5
5
  "private": false,
6
6
  "main": "dist/bn-bus-ui.umd.js",