@kdcloudjs/kdesign 1.7.27 → 1.7.28

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.27](https://github.com/kdcloudone/kdesign/compare/v1.7.26...v1.7.27) (2023-09-15)
2
+
3
+
4
+ ### Bug Fixes
5
+
6
+ * [city-picker] 修复国内版常用面板无省份数据时显示国家名 fix [#576](https://github.com/kdcloudone/kdesign/issues/576) ([9783592](https://github.com/kdcloudone/kdesign/commit/9783592babfdaed9044ab9624b43922999163905))
7
+ * [city-picker] 修复下拉面板不关闭问题 fix [#575](https://github.com/kdcloudone/kdesign/issues/575) ([e274112](https://github.com/kdcloudone/kdesign/commit/e274112c10e53963233545fc4b16174d16c4ee68))
8
+
9
+
10
+ ### Features
11
+
12
+ * [city-picker] 新增快捷键功能 fix [#582](https://github.com/kdcloudone/kdesign/issues/582) ([4ee705c](https://github.com/kdcloudone/kdesign/commit/4ee705c43cc29c96bb497a42ffa3d46e8a657b03))
13
+ * [cli] 添加开发新组件说明文档 ([5d23b02](https://github.com/kdcloudone/kdesign/commit/5d23b029c3c10bba0099d885ec255ad9f48e150f))
14
+ * 国际化专项token开放第二批组件 ([fd2e704](https://github.com/kdcloudone/kdesign/commit/fd2e7044c7622c2e585242b030ba1fd58dfe201a))
15
+
16
+
17
+
1
18
  ## [1.7.26](https://github.com/kdcloudone/kdesign/compare/v1.7.25...v1.7.26) (2023-09-08)
2
19
 
3
20
 
@@ -216,7 +216,7 @@ module.exports = {
216
216
  "radio-border-width": "1px",
217
217
  "radio-margin-right": "8px",
218
218
  "radio-transition-fn": "cubic-bezier(0.075, 0.82, 0.165, 1)",
219
- "radio-circle-size": "13px",
219
+ "radio-circle-size": "14px",
220
220
  "radio-square-height": "32px",
221
221
  "radio-square-padding": "0 20px",
222
222
  "radio-button-height": "24px",
@@ -2570,6 +2570,7 @@
2570
2570
  opacity: 0;
2571
2571
  z-index: 1;
2572
2572
  position: absolute;
2573
+ top: 0;
2573
2574
  background: #fff;
2574
2575
  transition: opacity 0.15s ease;
2575
2576
  &:hover {
@@ -2586,6 +2587,10 @@
2586
2587
  text-overflow: ellipsis;
2587
2588
  right: 24px;
2588
2589
  left: 0;
2590
+ top: 0;
2591
+ bottom: 0;
2592
+ display: flex;
2593
+ align-items: center;
2589
2594
  }
2590
2595
 
2591
2596
  &-borderless {
@@ -2789,6 +2794,8 @@
2789
2794
 
2790
2795
  &-suffix {
2791
2796
  right: 0;
2797
+ top: 0;
2798
+ bottom: 0;
2792
2799
  position: absolute;
2793
2800
  display: flex;
2794
2801
  flex: 0;
@@ -12587,7 +12594,7 @@ template {
12587
12594
  @radio-border-width: 1px;
12588
12595
  @radio-margin-right: 8px;
12589
12596
  @radio-transition-fn: cubic-bezier(0.075, 0.82, 0.165, 1);
12590
- @radio-circle-size: 13px;
12597
+ @radio-circle-size: 14px;
12591
12598
  @radio-square-height: 32px;
12592
12599
  @radio-square-padding: 0 20px;
12593
12600
  @radio-button-height: 24px;
@@ -13013,6 +13020,7 @@ template {
13013
13020
 
13014
13021
  /* ----------- AdvancedSelector ——————---- end */
13015
13022
 
13023
+
13016
13024
  @global-custom-prefix: '--@{kd-prefix}-g';
13017
13025
 
13018
13026
  @color-theme: var(~'@{global-custom-prefix}-color-theme', @theme-color);
package/dist/kdesign.css CHANGED
@@ -1,6 +1,6 @@
1
1
  /*!
2
2
  *
3
- * @kdcloudjs/kdesign v1.7.26
3
+ * @kdcloudjs/kdesign v1.7.27
4
4
  *
5
5
  * Copyright 2020-present, Kingdee, Inc.
6
6
  * All rights reserved.
@@ -5445,6 +5445,7 @@ template {
5445
5445
  opacity: 0;
5446
5446
  z-index: 1;
5447
5447
  position: absolute;
5448
+ top: 0;
5448
5449
  background: #fff;
5449
5450
  -webkit-transition: opacity 0.15s ease;
5450
5451
  transition: opacity 0.15s ease;
@@ -5460,6 +5461,14 @@ template {
5460
5461
  text-overflow: ellipsis;
5461
5462
  right: 24px;
5462
5463
  left: 0;
5464
+ top: 0;
5465
+ bottom: 0;
5466
+ display: -webkit-box;
5467
+ display: -ms-flexbox;
5468
+ display: flex;
5469
+ -webkit-box-align: center;
5470
+ -ms-flex-align: center;
5471
+ align-items: center;
5463
5472
  }
5464
5473
  .kd-city-picker-borderless {
5465
5474
  border: none;
@@ -5666,6 +5675,8 @@ template {
5666
5675
  }
5667
5676
  .kd-city-picker-suffix {
5668
5677
  right: 0;
5678
+ top: 0;
5679
+ bottom: 0;
5669
5680
  position: absolute;
5670
5681
  display: -webkit-box;
5671
5682
  display: -ms-flexbox;