@kdcloudjs/kdesign 1.7.1 → 1.7.2

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 CHANGED
@@ -1,3 +1,20 @@
1
+ ## [1.7.1](https://github.com/kdcloudone/kdesign/compare/v1.7.0...v1.7.1) (2023-03-24)
2
+
3
+
4
+ ### Bug Fixes
5
+
6
+ * [cli] 添加组件概览缩略图默认值 ([9ad9386](https://github.com/kdcloudone/kdesign/commit/9ad9386fa64702605942c8bddfa8179b869db348))
7
+ * [cli] 修复国际化配置需全量传入参数问题 fix [#297](https://github.com/kdcloudone/kdesign/issues/297) ([90de9ad](https://github.com/kdcloudone/kdesign/commit/90de9ad3f5bf952432161de40a4067f678365a9c))
8
+ * [pagination]修复样式问题 fix [#288](https://github.com/kdcloudone/kdesign/issues/288) ([37ec001](https://github.com/kdcloudone/kdesign/commit/37ec00156fe68c7188150158ceffa0e0457d784c))
9
+ * [pagination]修复样式问题 fix [#288](https://github.com/kdcloudone/kdesign/issues/288) ([8283ed8](https://github.com/kdcloudone/kdesign/commit/8283ed89af37eebfe2dc06c85769715558760857))
10
+
11
+
12
+ ### Features
13
+
14
+ * [color-picker] add color-picker component ([74c8266](https://github.com/kdcloudone/kdesign/commit/74c8266fa426ba3d6b7b2ba03eac7cac75990fdc))
15
+
16
+
17
+
1
18
  # [1.7.0](https://github.com/kdcloudone/kdesign/compare/v1.6.40...v1.7.0) (2023-03-23)
2
19
 
3
20
 
@@ -3068,7 +3068,11 @@
3068
3068
  }
3069
3069
 
3070
3070
  .@{kd-prefix}-select-dropdown {
3071
- overflow: hidden;
3071
+ .@{kd-prefix}-select-item-option {
3072
+ display: flex;
3073
+ justify-content: center;
3074
+ min-width: unset;
3075
+ }
3072
3076
  }
3073
3077
  }
3074
3078
 
package/dist/kdesign.css CHANGED
@@ -1,6 +1,6 @@
1
1
  /*!
2
2
  *
3
- * @kdcloudjs/kdesign v1.7.0
3
+ * @kdcloudjs/kdesign v1.7.1
4
4
  *
5
5
  * Copyright 2020-present, Kingdee, Inc.
6
6
  * All rights reserved.
@@ -6140,8 +6140,14 @@ template {
6140
6140
  box-shadow: 0 4px 10px 0 rgba(0, 0, 0, 0.2);
6141
6141
  border-radius: 2px;
6142
6142
  }
6143
- .kd-color-picker-pop .kd-color-picker-panel-input .kd-select .kd-select-dropdown {
6144
- overflow: hidden;
6143
+ .kd-color-picker-pop .kd-color-picker-panel-input .kd-select .kd-select-dropdown .kd-select-item-option {
6144
+ display: -webkit-box;
6145
+ display: -ms-flexbox;
6146
+ display: flex;
6147
+ -webkit-box-pack: center;
6148
+ -ms-flex-pack: center;
6149
+ justify-content: center;
6150
+ min-width: unset;
6145
6151
  }
6146
6152
  .kd-color-picker-pop .kd-color-picker-panel-input .kd-select-bordered {
6147
6153
  border-radius: 2px;