@kdcloudjs/kdesign 1.7.61 → 1.7.62

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,17 @@
1
+ ## [1.7.61](https://github.com/kdcloudone/kdesign/compare/v1.7.60...v1.7.61) (2024-05-24)
2
+
3
+
4
+ ### Bug Fixes
5
+
6
+ * [city-picker] 修复清空按钮不居中的问题 fix [#802](https://github.com/kdcloudone/kdesign/issues/802) ([d250a7f](https://github.com/kdcloudone/kdesign/commit/d250a7f209aeb0c566abf71998238e42205ba68b))
7
+ * [cli] 添加最新语言包链接 ([05e9c9f](https://github.com/kdcloudone/kdesign/commit/05e9c9f47aa39a877dbec7e5744bc5f9f8ae23b7))
8
+ * [date-picker]修复国际化问题 fix [#797](https://github.com/kdcloudone/kdesign/issues/797) ([4053f02](https://github.com/kdcloudone/kdesign/commit/4053f02a68e700cbf56eeb2a9391d54f914a5d44))
9
+ * [modal] 修复弹窗在关闭时按esc会执行onCancel的问题 fix [#748](https://github.com/kdcloudone/kdesign/issues/748) ([012bf47](https://github.com/kdcloudone/kdesign/commit/012bf47ff61ace8c04e9f199e065410b5758033e))
10
+ * [popconfirm] 修复message属性传值问题 fix [#799](https://github.com/kdcloudone/kdesign/issues/799) ([8215a68](https://github.com/kdcloudone/kdesign/commit/8215a681de81995848826de9185dff436198de0e))
11
+ * [select] 更新清空按钮图标 fix [#803](https://github.com/kdcloudone/kdesign/issues/803) ([69d0f9d](https://github.com/kdcloudone/kdesign/commit/69d0f9d9f86386af8124b809fe89d1dbf6ca8f97))
12
+
13
+
14
+
1
15
  ## [1.7.60](https://github.com/kdcloudone/kdesign/compare/v1.7.59...v1.7.60) (2024-05-17)
2
16
 
3
17
 
@@ -2154,7 +2154,7 @@
2154
2154
  right: 0;
2155
2155
  position: absolute;
2156
2156
  display: flex;
2157
- flex: 0;
2157
+ flex: 0 0 auto;
2158
2158
  flex-wrap: wrap;
2159
2159
  align-items: center;
2160
2160
  justify-content: center;
package/dist/kdesign.css CHANGED
@@ -1,6 +1,6 @@
1
1
  /*!
2
2
  *
3
- * @kdcloudjs/kdesign v1.7.60
3
+ * @kdcloudjs/kdesign v1.7.61
4
4
  *
5
5
  * Copyright 2020-present, Kingdee, Inc.
6
6
  * All rights reserved.
@@ -4944,8 +4944,8 @@ template {
4944
4944
  display: -ms-flexbox;
4945
4945
  display: flex;
4946
4946
  -webkit-box-flex: 0;
4947
- -ms-flex: 0;
4948
- flex: 0;
4947
+ -ms-flex: 0 0 auto;
4948
+ flex: 0 0 auto;
4949
4949
  -ms-flex-wrap: wrap;
4950
4950
  flex-wrap: wrap;
4951
4951
  -webkit-box-align: center;