@kdcloudjs/kdesign 1.7.23 → 1.7.25

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 (58) hide show
  1. package/CHANGELOG.md +64 -0
  2. package/dist/kdesign-complete.less +31 -18
  3. package/dist/kdesign.css +59 -18
  4. package/dist/kdesign.css.map +1 -1
  5. package/dist/kdesign.js +522 -213
  6. package/dist/kdesign.js.map +1 -1
  7. package/dist/kdesign.min.css +4 -4
  8. package/dist/kdesign.min.js +8 -8
  9. package/dist/kdesign.min.js.map +1 -1
  10. package/es/_utils/usePopper.d.ts +1 -0
  11. package/es/_utils/usePopper.js +40 -21
  12. package/es/city-picker/city-picker.js +36 -25
  13. package/es/city-picker/interface.d.ts +1 -0
  14. package/es/city-picker/option.js +2 -2
  15. package/es/city-picker/style/index.css +14 -10
  16. package/es/city-picker/style/index.less +9 -6
  17. package/es/city-picker/style/token.less +4 -5
  18. package/es/input-number/inputNumber.js +20 -5
  19. package/es/input-number/useSelectionRange.d.ts +4 -0
  20. package/es/input-number/useSelectionRange.js +22 -0
  21. package/es/locale/locale.d.ts +4 -4
  22. package/es/locale/zh-CN.d.ts +4 -2
  23. package/es/locale/zh-CN.js +4 -2
  24. package/es/radio/style/index.css +2 -0
  25. package/es/radio/style/index.less +2 -0
  26. package/es/search/search.js +2 -1
  27. package/es/select/select.js +6 -5
  28. package/es/select/style/index.css +6 -3
  29. package/es/select/style/index.less +10 -4
  30. package/es/select/style/token.less +1 -1
  31. package/es/style/core/motion/slide.less +5 -2
  32. package/es/style/index.css +36 -4
  33. package/es/table/api.js +19 -3
  34. package/lib/_utils/usePopper.d.ts +1 -0
  35. package/lib/_utils/usePopper.js +40 -21
  36. package/lib/city-picker/city-picker.js +36 -25
  37. package/lib/city-picker/interface.d.ts +1 -0
  38. package/lib/city-picker/option.js +2 -2
  39. package/lib/city-picker/style/index.css +14 -10
  40. package/lib/city-picker/style/index.less +9 -6
  41. package/lib/city-picker/style/token.less +4 -5
  42. package/lib/input-number/inputNumber.js +19 -4
  43. package/lib/input-number/useSelectionRange.d.ts +4 -0
  44. package/lib/input-number/useSelectionRange.js +29 -0
  45. package/lib/locale/locale.d.ts +4 -4
  46. package/lib/locale/zh-CN.d.ts +4 -2
  47. package/lib/locale/zh-CN.js +4 -2
  48. package/lib/radio/style/index.css +2 -0
  49. package/lib/radio/style/index.less +2 -0
  50. package/lib/search/search.js +2 -1
  51. package/lib/select/select.js +6 -5
  52. package/lib/select/style/index.css +6 -3
  53. package/lib/select/style/index.less +10 -4
  54. package/lib/select/style/token.less +1 -1
  55. package/lib/style/core/motion/slide.less +5 -2
  56. package/lib/style/index.css +36 -4
  57. package/lib/table/api.js +19 -3
  58. package/package.json +2 -2
package/CHANGELOG.md CHANGED
@@ -1,3 +1,67 @@
1
+ ## [1.7.24](https://github.com/kdcloudone/kdesign/compare/v1.7.23...v1.7.24) (2023-08-25)
2
+
3
+
4
+ ### Bug Fixes
5
+
6
+ * [city-picker] 修复国内版页签切换到国际/中国港澳台时下拉面板显示问题 fix [#539](https://github.com/kdcloudone/kdesign/issues/539) ([fa4ca55](https://github.com/kdcloudone/kdesign/commit/fa4ca552c56fdc8c5bf8bcb25f87f8cd5849aa92))
7
+ * [city-picker] 修复下拉面板动效与选择器不一致问题 fix [#548](https://github.com/kdcloudone/kdesign/issues/548) ([d5a6b66](https://github.com/kdcloudone/kdesign/commit/d5a6b66c35f9c5d56b9f3db31dd90cb4d6e16801))
8
+ * [city-picker] 修复下拉面板最后一行显示不全 fix [#549](https://github.com/kdcloudone/kdesign/issues/549) ([1a4a997](https://github.com/kdcloudone/kdesign/commit/1a4a9976647e155a430edc849d2fab2932c74858))
9
+ * [cli] 更新input ref导致的报错 ([247aa40](https://github.com/kdcloudone/kdesign/commit/247aa40089a6ec02e78d406f4c78d3777bd9c954))
10
+ * [select] 修复下拉面板样式与视觉稿差异 fix [#543](https://github.com/kdcloudone/kdesign/issues/543) ([8db7d64](https://github.com/kdcloudone/kdesign/commit/8db7d642fab36ecfca6c41882bf9bdb47fed4145))
11
+ * [select] 修复showSearch为false时focus后直接enter键报错问题 fix [#547](https://github.com/kdcloudone/kdesign/issues/547) ([ce51857](https://github.com/kdcloudone/kdesign/commit/ce51857bb7f92bfb1c869fa7ca5193602417a127))
12
+ * [table] 更新版本 ([bdc1ead](https://github.com/kdcloudone/kdesign/commit/bdc1ead18102917635e7091dace5ef6d27f1475d))
13
+ * [usepopper] 修复由于ref返回值变化导致报错 fix [#538](https://github.com/kdcloudone/kdesign/issues/538) ([c7da260](https://github.com/kdcloudone/kdesign/commit/c7da26013149acbc64d1766817c9fd891f917492))
14
+ * fix: [radio] 修复没有文本的时候radio消失的问题 fix [#544](https://github.com/kdcloudone/kdesign/issues/544) ([63ad3f4](https://github.com/kdcloudone/kdesign/commit/63ad3f4941923110125346d86658244c6d397f5d))
15
+
16
+
17
+ ### Features
18
+
19
+ * [city-picker] 新增切换页签时的回调 fix [#536](https://github.com/kdcloudone/kdesign/issues/536) ([e36057e](https://github.com/kdcloudone/kdesign/commit/e36057ed966a744c04dee7e91250f3e21011e03e))
20
+ * [input-number] 新增键盘事件回调 fix [#529](https://github.com/kdcloudone/kdesign/issues/529) ([808cf0b](https://github.com/kdcloudone/kdesign/commit/808cf0b19b5b6276faf1562ca200117e203720b1))
21
+
22
+
23
+
24
+ ## [1.7.23](https://github.com/kdcloudone/kdesign/compare/v1.7.22...v1.7.23) (2023-08-18)
25
+
26
+
27
+ ### Features
28
+
29
+ * 国际化token开放 取消checkbox的label的display属性修改 ([a87bdd9](https://github.com/kdcloudone/kdesign/commit/a87bdd91a4e97e5b94c595d3cd87008819315bf3))
30
+ * 国际化token开放 取消checkbox的label的display属性修改 ([7667025](https://github.com/kdcloudone/kdesign/commit/7667025082d03a5f9cda3bd66fe166753b90065c))
31
+ * 国际化token开放 取消checkbox的label的display属性修改 ([9015d5b](https://github.com/kdcloudone/kdesign/commit/9015d5bdf9da8ae668f6f9a17c9410b8963204d1))
32
+ * 国际化token开放 取消checkbox的label的display属性修改 ([bd550f0](https://github.com/kdcloudone/kdesign/commit/bd550f0b7be7f82659bbc3c63dd51f25f6f5d385))
33
+
34
+
35
+
36
+ ## [1.7.22](https://github.com/kdcloudone/kdesign/compare/v1.7.21...v1.7.22) (2023-08-18)
37
+
38
+
39
+ ### Bug Fixes
40
+
41
+ * [base-data] 修复demo中历史记录会重复的问题 fix [#361](https://github.com/kdcloudone/kdesign/issues/361) ([4967bb6](https://github.com/kdcloudone/kdesign/commit/4967bb63bcfe7ee508bc9a9e24f89e19175ad3c9))
42
+ * [checkboxgroup]checbox.Group ConfigProver 配置不生效 [#418](https://github.com/kdcloudone/kdesign/issues/418) ([5134661](https://github.com/kdcloudone/kdesign/commit/51346614a2e4dc183801e39d29b323ec0cb14d45))
43
+ * [cli] 更新单测 ([5241f79](https://github.com/kdcloudone/kdesign/commit/5241f797dc572bb7e4c757973b5e85a96fe04ff9))
44
+ * [cli] 添加页面的title显示 fix [#394](https://github.com/kdcloudone/kdesign/issues/394) ([08557fa](https://github.com/kdcloudone/kdesign/commit/08557fa8b21f658069b1c56909610d651a676a72))
45
+ * [collapse]修复边框问题 fix [#433](https://github.com/kdcloudone/kdesign/issues/433) ([3efbd79](https://github.com/kdcloudone/kdesign/commit/3efbd797205aaed04fab42039e8907eebf7baa54))
46
+ * [dropdown] 子元素为空的时候,报错 [#421](https://github.com/kdcloudone/kdesign/issues/421) ([e2ba6ae](https://github.com/kdcloudone/kdesign/commit/e2ba6ae8617f3f52fcf7ea2ad01ccb82ed1166df))
47
+ * [input-number] 修复文档描述与实际效果不符 fix [#420](https://github.com/kdcloudone/kdesign/issues/420) ([6e5c1be](https://github.com/kdcloudone/kdesign/commit/6e5c1be50201afcbde6dd04973990d3554eee831))
48
+ * [input-number] 修复defaultValue不生效问题 fix [#407](https://github.com/kdcloudone/kdesign/issues/407) ([5827b20](https://github.com/kdcloudone/kdesign/commit/5827b208d4b510abb654a7346a596bf81a9f4a03))
49
+ * [menu]修复二级菜单渲染问题 fix [#344](https://github.com/kdcloudone/kdesign/issues/344) ([bcb12f4](https://github.com/kdcloudone/kdesign/commit/bcb12f4ef377439a8e76f66ad0b5b691db3f1275))
50
+ * [menu]修复defaultOpenKeys问题 fix [#353](https://github.com/kdcloudone/kdesign/issues/353) ([7616f25](https://github.com/kdcloudone/kdesign/commit/7616f25429801e96b7a96cda42f619449002a94a))
51
+ * [modal] 修复button点击不失焦,按enter多次弹出modal问题 fix [#414](https://github.com/kdcloudone/kdesign/issues/414) ([3a053db](https://github.com/kdcloudone/kdesign/commit/3a053db8c657a3811958a5be9d2e07b4ee4e754c))
52
+ * [timeline] 修复设置reverse后的视觉偏差 fix [#409](https://github.com/kdcloudone/kdesign/issues/409) ([a6d64d8](https://github.com/kdcloudone/kdesign/commit/a6d64d8d4ded6b658a5df1c5c29e17117eab08f6))
53
+ * [tooltip]: Tooltip文字提示 没有子元素的时候报错 [#406](https://github.com/kdcloudone/kdesign/issues/406) ([6effeaa](https://github.com/kdcloudone/kdesign/commit/6effeaa8b53cfc92cd989a9bd1a118fd6be7a0f7))
54
+ * [tree] 修复虚拟滚动节点过长无滚动条问题 fix [#530](https://github.com/kdcloudone/kdesign/issues/530) ([080b3b0](https://github.com/kdcloudone/kdesign/commit/080b3b05a3972f48e0e3b6e7962a4768dffea060))
55
+ * [tree] 修复虚拟滚动列表高度未撑满整个树组件 fix [#526](https://github.com/kdcloudone/kdesign/issues/526) ([4ac601a](https://github.com/kdcloudone/kdesign/commit/4ac601a3d04fdc0aeae184619c60f6b86c9229b2))
56
+
57
+
58
+ ### Features
59
+
60
+ * [input]新增focus/blur实例方法 fix [#523](https://github.com/kdcloudone/kdesign/issues/523) ([045d829](https://github.com/kdcloudone/kdesign/commit/045d8290afbc49565a1f143d186a1a3641cf3cbd))
61
+ * [select] 新增focus,blur实例方法 fix [#429](https://github.com/kdcloudone/kdesign/issues/429) ([f9436c2](https://github.com/kdcloudone/kdesign/commit/f9436c24f1d0b6bfa00db698554bcba7dcdb55ed))
62
+
63
+
64
+
1
65
  ## [1.7.21](https://github.com/kdcloudone/kdesign/compare/v1.7.20...v1.7.21) (2023-08-11)
2
66
 
3
67
 
@@ -2646,6 +2646,11 @@
2646
2646
  &-type-line {
2647
2647
  padding: 0 12px;
2648
2648
  font-size: 12px;
2649
+
2650
+ .@{kd-prefix}-tab-pane-text {
2651
+ .over();
2652
+ width: 100%;
2653
+ }
2649
2654
  }
2650
2655
  }
2651
2656
  }
@@ -2687,17 +2692,14 @@
2687
2692
  padding: 8px 0;
2688
2693
  max-height: 320px;
2689
2694
  overflow-y: auto;
2695
+ box-sizing: content-box;
2690
2696
 
2691
2697
  // 下拉列表选项
2692
2698
  &-item {
2699
+ .over();
2693
2700
  .item();
2694
- display: flex;
2695
2701
  cursor: pointer;
2696
2702
 
2697
- &-content {
2698
- .over();
2699
- }
2700
-
2701
2703
  &-info {
2702
2704
  color: @city-picker-placeholder-color;
2703
2705
  white-space: nowrap;
@@ -2709,6 +2711,7 @@
2709
2711
 
2710
2712
  &-selected:not(&-disabled) {
2711
2713
  background-color: @city-picker-item-selected-bg;
2714
+ color: @city-picker-list-item-color-selected;
2712
2715
  }
2713
2716
 
2714
2717
  &-disabled {
@@ -2720,7 +2723,7 @@
2720
2723
  }
2721
2724
 
2722
2725
  &-highlight {
2723
- color: #5582f3;
2726
+ color: @city-picker-highlight-color;
2724
2727
  }
2725
2728
 
2726
2729
  // 选择器框大小
@@ -2855,7 +2858,7 @@
2855
2858
  @city-picker-dropdown-bg: var(~'@{city-picker-custom-prefix}-dropdown-color-background', @color-background);
2856
2859
  @city-picker-disabled-option-bg: var(~'@{city-picker-custom-prefix}-item-color-background-disabled', #fff);
2857
2860
  @city-picker-item-active-bg: var(~'@{city-picker-custom-prefix}-color-background', #f5f5f5);
2858
- @city-picker-item-selected-bg: var(~'@{city-picker-custom-prefix}-color-background-selected', #f2f6ff);
2861
+ @city-picker-item-selected-bg: var(~'@{city-picker-custom-prefix}-color-background-selected', @color-theme-3);
2859
2862
  @city-picker-g-color-border: var(~'@{city-picker-custom-prefix}-color-border', @color-input);
2860
2863
  @city-picker-g-color-border-foucs: var(~'@{city-picker-custom-prefix}-color-border-foucs', @color-theme);
2861
2864
  @city-picker-g-color-border-hover: var(~'@{city-picker-custom-prefix}-color-border-hover', @color-theme);
@@ -2865,12 +2868,11 @@
2865
2868
  @city-picker-g-item-text-color-disabled: var(~'@{city-picker-custom-prefix}-item-color-text-disabled', @color-disabled);
2866
2869
  @city-picker-color-background-disabled: var(~'@{city-picker-custom-prefix}-color-background-disabled', #fff);
2867
2870
  @city-picker-color-text-disabled: var(~'@{city-picker-custom-prefix}-color-text-disabled', @color-disabled);
2868
- @city-picker-arrow-icon-color-text-disabled: var(
2869
- ~'@{city-picker-custom-prefix}-arrow-icon-color-text-disabled',
2870
- #b2b2b2
2871
- );
2871
+ @city-picker-arrow-icon-color-text-disabled: var(~'@{city-picker-custom-prefix}-arrow-icon-color-text-disabled', #b2b2b2);
2872
2872
  @city-picker-clear-color: var(~'@{city-picker-custom-prefix}-icon-clear-color-text', #d9d9d9);
2873
2873
  @city-picker-clear-color-hover: var(~'@{city-picker-custom-prefix}-icon-clear-color-text-hover', #999);
2874
+ @city-picker-list-item-color-selected: var(~'@{city-picker-custom-prefix}-list-item-color-text-selected', @color-theme);
2875
+ @city-picker-highlight-color: var(~'@{city-picker-custom-prefix}-highlight-color-text', @color-theme);
2874
2876
 
2875
2877
  // font
2876
2878
  @city-picker-list-font-size: var(~'@{city-picker-custom-prefix}-dropdown-font-size', 12px); // 下拉列表文字大小
@@ -8565,6 +8567,7 @@ textarea {
8565
8567
  font-size: @radio-font-size;
8566
8568
  max-width: @radio-default-label-max-width;
8567
8569
  overflow: hidden;
8570
+ min-height: @radio-circle-size;
8568
8571
 
8569
8572
  &::before {
8570
8573
  position: absolute;
@@ -8600,6 +8603,7 @@ textarea {
8600
8603
  &-input {
8601
8604
  position: absolute;
8602
8605
  opacity: 0;
8606
+ left: 0;
8603
8607
  }
8604
8608
 
8605
8609
  &>span {
@@ -9789,10 +9793,10 @@ textarea {
9789
9793
  left: 0;
9790
9794
  z-index: @select-z-index;
9791
9795
  box-sizing: border-box;
9792
- padding: 8px 0; // update
9796
+ padding: @select-dropdown-padding-vertical 0;
9793
9797
  margin: 0;
9794
9798
  overflow: auto;
9795
- font-size: @select-list-font-size; // update
9799
+ font-size: @select-list-font-size;
9796
9800
  font-variant: initial;
9797
9801
  background-color: @select-dropdown-bg;
9798
9802
  border-radius: @select-g-radius-border;
@@ -9816,6 +9820,12 @@ textarea {
9816
9820
  }
9817
9821
  }
9818
9822
 
9823
+ &-multiple-dropdown-panel {
9824
+ .@{select-prefix-cls}-dropdown {
9825
+ padding-bottom: 0;
9826
+ }
9827
+ }
9828
+
9819
9829
  // 下拉列表选项
9820
9830
  &-item {
9821
9831
  .item();
@@ -10061,8 +10071,8 @@ textarea {
10061
10071
  align-items: center;
10062
10072
  width: 100%;
10063
10073
  padding: 0 12px;
10064
- height: 32px;
10065
- line-height: 32px;
10074
+ height: 40px;
10075
+ line-height: 40px;
10066
10076
  border-top: 1px solid #d9d9d9;
10067
10077
  box-sizing: border-box;
10068
10078
 
@@ -10171,7 +10181,6 @@ textarea {
10171
10181
 
10172
10182
  @select-custom-prefix: ~'--@{kd-prefix}-c-select';
10173
10183
 
10174
-
10175
10184
  // color
10176
10185
  @select-dropdown-bg: var(~'@{select-custom-prefix}-dropdown-color-background', @color-background);
10177
10186
  @select-disabled-option-bg: var(~'@{select-custom-prefix}-item-color-background-disabled', #fff);
@@ -10214,6 +10223,7 @@ textarea {
10214
10223
  // spacing
10215
10224
  @select-bordered: var(~'@{select-custom-prefix}-bordered-spacing-padding-left', 8px);
10216
10225
  @select-wrapper-padding: var(~'@{select-custom-prefix}-wrapper-spacing-padding', 1px 28px 1px 0);
10226
+ @select-dropdown-padding-vertical: var(~'@{select-custom-prefix}-dropdown-spacing-padding-vertical', 8px);
10217
10227
 
10218
10228
  // radius
10219
10229
  @select-g-radius-border: var(~'@{select-custom-prefix}-radius-border', @radius-border);
@@ -11524,12 +11534,15 @@ textarea {
11524
11534
  .slide-motion(topLeft, kdSlideDown, kd-cascader-menus);
11525
11535
  .slide-motion(bottomLeft, kdSlideUp, kd-cascader-menus);
11526
11536
 
11527
- .slide-motion(topLeft, kdSlideDown, kd-select);
11528
- .slide-motion(bottomLeft, kdSlideUp, kd-select);
11537
+ .slide-motion(topLeft, kdSlideDown, kd-select-dropdown-panel);
11538
+ .slide-motion(bottomLeft, kdSlideUp, kd-select-dropdown-panel);
11529
11539
 
11530
11540
  .slide-motion(topLeft, kdSlideDown, kd-date-picker-panel);
11531
11541
  .slide-motion(bottomLeft, kdSlideUp, kd-date-picker-panel);
11532
11542
 
11543
+ .slide-motion(topLeft, kdSlideDown, kd-city-picker-dropdown);
11544
+ .slide-motion(bottomLeft, kdSlideUp, kd-city-picker-dropdown);
11545
+
11533
11546
  @keyframes kdSlideCenterIn {
11534
11547
  0% {
11535
11548
  opacity: 0;
package/dist/kdesign.css CHANGED
@@ -1,6 +1,6 @@
1
1
  /*!
2
2
  *
3
- * @kdcloudjs/kdesign v1.7.22
3
+ * @kdcloudjs/kdesign v1.7.24
4
4
  *
5
5
  * Copyright 2020-present, Kingdee, Inc.
6
6
  * All rights reserved.
@@ -1598,7 +1598,7 @@
1598
1598
  -webkit-animation-timing-function: cubic-bezier(0.4, 0, 1, 0.6);
1599
1599
  animation-timing-function: cubic-bezier(0.4, 0, 1, 0.6);
1600
1600
  }
1601
- .kd-select.topLeft-active {
1601
+ .kd-select-dropdown-panel.topLeft-active {
1602
1602
  -webkit-animation-name: kdSlideDownIn;
1603
1603
  animation-name: kdSlideDownIn;
1604
1604
  -webkit-animation-duration: calc(0.3s - 0.1s);
@@ -1606,7 +1606,7 @@
1606
1606
  -webkit-animation-timing-function: cubic-bezier(0, 0.4, 0.4, 1);
1607
1607
  animation-timing-function: cubic-bezier(0, 0.4, 0.4, 1);
1608
1608
  }
1609
- .kd-select.topLeft.hidden {
1609
+ .kd-select-dropdown-panel.topLeft.hidden {
1610
1610
  -webkit-animation-name: kdSlideDownOut;
1611
1611
  animation-name: kdSlideDownOut;
1612
1612
  -webkit-animation-duration: 0.1s;
@@ -1614,7 +1614,7 @@
1614
1614
  -webkit-animation-timing-function: cubic-bezier(0.4, 0, 1, 0.6);
1615
1615
  animation-timing-function: cubic-bezier(0.4, 0, 1, 0.6);
1616
1616
  }
1617
- .kd-select.bottomLeft-active {
1617
+ .kd-select-dropdown-panel.bottomLeft-active {
1618
1618
  -webkit-animation-name: kdSlideUpIn;
1619
1619
  animation-name: kdSlideUpIn;
1620
1620
  -webkit-animation-duration: calc(0.3s - 0.1s);
@@ -1622,7 +1622,7 @@
1622
1622
  -webkit-animation-timing-function: cubic-bezier(0, 0.4, 0.4, 1);
1623
1623
  animation-timing-function: cubic-bezier(0, 0.4, 0.4, 1);
1624
1624
  }
1625
- .kd-select.bottomLeft.hidden {
1625
+ .kd-select-dropdown-panel.bottomLeft.hidden {
1626
1626
  -webkit-animation-name: kdSlideUpOut;
1627
1627
  animation-name: kdSlideUpOut;
1628
1628
  -webkit-animation-duration: 0.1s;
@@ -1662,6 +1662,38 @@
1662
1662
  -webkit-animation-timing-function: cubic-bezier(0.4, 0, 1, 0.6);
1663
1663
  animation-timing-function: cubic-bezier(0.4, 0, 1, 0.6);
1664
1664
  }
1665
+ .kd-city-picker-dropdown.topLeft-active {
1666
+ -webkit-animation-name: kdSlideDownIn;
1667
+ animation-name: kdSlideDownIn;
1668
+ -webkit-animation-duration: calc(0.3s - 0.1s);
1669
+ animation-duration: calc(0.3s - 0.1s);
1670
+ -webkit-animation-timing-function: cubic-bezier(0, 0.4, 0.4, 1);
1671
+ animation-timing-function: cubic-bezier(0, 0.4, 0.4, 1);
1672
+ }
1673
+ .kd-city-picker-dropdown.topLeft.hidden {
1674
+ -webkit-animation-name: kdSlideDownOut;
1675
+ animation-name: kdSlideDownOut;
1676
+ -webkit-animation-duration: 0.1s;
1677
+ animation-duration: 0.1s;
1678
+ -webkit-animation-timing-function: cubic-bezier(0.4, 0, 1, 0.6);
1679
+ animation-timing-function: cubic-bezier(0.4, 0, 1, 0.6);
1680
+ }
1681
+ .kd-city-picker-dropdown.bottomLeft-active {
1682
+ -webkit-animation-name: kdSlideUpIn;
1683
+ animation-name: kdSlideUpIn;
1684
+ -webkit-animation-duration: calc(0.3s - 0.1s);
1685
+ animation-duration: calc(0.3s - 0.1s);
1686
+ -webkit-animation-timing-function: cubic-bezier(0, 0.4, 0.4, 1);
1687
+ animation-timing-function: cubic-bezier(0, 0.4, 0.4, 1);
1688
+ }
1689
+ .kd-city-picker-dropdown.bottomLeft.hidden {
1690
+ -webkit-animation-name: kdSlideUpOut;
1691
+ animation-name: kdSlideUpOut;
1692
+ -webkit-animation-duration: 0.1s;
1693
+ animation-duration: 0.1s;
1694
+ -webkit-animation-timing-function: cubic-bezier(0.4, 0, 1, 0.6);
1695
+ animation-timing-function: cubic-bezier(0.4, 0, 1, 0.6);
1696
+ }
1665
1697
  @-webkit-keyframes kdSlideCenterIn {
1666
1698
  0% {
1667
1699
  opacity: 0;
@@ -5495,6 +5527,12 @@ template {
5495
5527
  padding: 0 12px;
5496
5528
  font-size: 12px;
5497
5529
  }
5530
+ .kd-city-picker-dropdown .kd-tabs-tab-list .kd-tab-pane-type-line .kd-tab-pane-text {
5531
+ overflow: hidden;
5532
+ white-space: nowrap;
5533
+ text-overflow: ellipsis;
5534
+ width: 100%;
5535
+ }
5498
5536
  .kd-city-picker-dropdown .kd-tabs-noContainer {
5499
5537
  height: unset;
5500
5538
  }
@@ -5538,8 +5576,13 @@ template {
5538
5576
  padding: 8px 0;
5539
5577
  max-height: 320px;
5540
5578
  overflow-y: auto;
5579
+ -webkit-box-sizing: content-box;
5580
+ box-sizing: content-box;
5541
5581
  }
5542
5582
  .kd-city-picker-list-item {
5583
+ overflow: hidden;
5584
+ white-space: nowrap;
5585
+ text-overflow: ellipsis;
5543
5586
  position: relative;
5544
5587
  display: block;
5545
5588
  font-weight: normal;
@@ -5548,16 +5591,8 @@ template {
5548
5591
  padding: 5px 12px;
5549
5592
  color: var(--kd-c-city-picker-footer-color-text, var(--kd-g-color-text-primary, #212121));
5550
5593
  line-height: var(--kd-c-city-picker-dropdown-line-height, 22px);
5551
- display: -webkit-box;
5552
- display: -ms-flexbox;
5553
- display: flex;
5554
5594
  cursor: pointer;
5555
5595
  }
5556
- .kd-city-picker-list-item-content {
5557
- overflow: hidden;
5558
- white-space: nowrap;
5559
- text-overflow: ellipsis;
5560
- }
5561
5596
  .kd-city-picker-list-item-info {
5562
5597
  color: var(--kd-c-city-picker-placeholder-color-text, #b2b2b2);
5563
5598
  white-space: nowrap;
@@ -5566,7 +5601,8 @@ template {
5566
5601
  background-color: var(--kd-c-city-picker-color-background, #f5f5f5);
5567
5602
  }
5568
5603
  .kd-city-picker-list-item-selected:not(.kd-city-picker-list-item-disabled) {
5569
- background-color: var(--kd-c-city-picker-color-background-selected, #f2f6ff);
5604
+ background-color: var(--kd-c-city-picker-color-background-selected, var(--kd-g-color-theme-3, #e3eeff));
5605
+ color: var(--kd-c-city-picker-list-item-color-text-selected, var(--kd-g-color-theme, #5582f3));
5570
5606
  }
5571
5607
  .kd-city-picker-list-item-disabled {
5572
5608
  color: var(--kd-c-city-picker-item-color-text-disabled, var(--kd-g-color-disabled, #b2b2b2));
@@ -5574,7 +5610,7 @@ template {
5574
5610
  background-color: var(--kd-c-city-picker-item-color-background-disabled, #fff);
5575
5611
  }
5576
5612
  .kd-city-picker-highlight {
5577
- color: #5582f3;
5613
+ color: var(--kd-c-city-picker-highlight-color-text, var(--kd-g-color-theme, #5582f3));
5578
5614
  }
5579
5615
  .kd-city-picker-size-small {
5580
5616
  min-height: var(--kd-c-city-picker-sizing-height-small, 24px);
@@ -13487,6 +13523,7 @@ textarea {
13487
13523
  font-size: var(--kd-c-radio-font-size, var(--kd-g-font-size-small, 12px));
13488
13524
  max-width: var(--kd-c-radio-default-label-max-width);
13489
13525
  overflow: hidden;
13526
+ min-height: var(--kd-c-radio-square-sizing-width-height, 14px);
13490
13527
  }
13491
13528
  .kd-radio::before {
13492
13529
  position: absolute;
@@ -13528,6 +13565,7 @@ textarea {
13528
13565
  .kd-radio-input {
13529
13566
  position: absolute;
13530
13567
  opacity: 0;
13568
+ left: 0;
13531
13569
  }
13532
13570
  .kd-radio > span {
13533
13571
  padding: 0 6px 0 var(--kd-c-radio-spacing-padding-left, 4px);
@@ -15118,7 +15156,7 @@ textarea {
15118
15156
  z-index: var(--kd-c-select-z-index, var(--kd-g-z-index-popper, 1050));
15119
15157
  -webkit-box-sizing: border-box;
15120
15158
  box-sizing: border-box;
15121
- padding: 8px 0;
15159
+ padding: var(--kd-c-select-dropdown-spacing-padding-vertical, 8px) 0;
15122
15160
  margin: 0;
15123
15161
  overflow: auto;
15124
15162
  font-size: var(--kd-c-select-dropdown-font-size, 12px);
@@ -15141,6 +15179,9 @@ textarea {
15141
15179
  .kd-select-dropdown-search-hidden {
15142
15180
  display: none;
15143
15181
  }
15182
+ .kd-select-multiple-dropdown-panel .kd-select-dropdown {
15183
+ padding-bottom: 0;
15184
+ }
15144
15185
  .kd-select-item {
15145
15186
  position: relative;
15146
15187
  display: block;
@@ -15407,8 +15448,8 @@ textarea {
15407
15448
  align-items: center;
15408
15449
  width: 100%;
15409
15450
  padding: 0 12px;
15410
- height: 32px;
15411
- line-height: 32px;
15451
+ height: 40px;
15452
+ line-height: 40px;
15412
15453
  border-top: 1px solid #d9d9d9;
15413
15454
  -webkit-box-sizing: border-box;
15414
15455
  box-sizing: border-box;