@kdcloudjs/kdesign 1.7.45 → 1.7.47

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 (91) hide show
  1. package/CHANGELOG.md +292 -0
  2. package/dist/kdesign-complete.less +247 -0
  3. package/dist/kdesign.css +368 -1
  4. package/dist/kdesign.css.map +1 -1
  5. package/dist/kdesign.js +865 -237
  6. package/dist/kdesign.js.map +1 -1
  7. package/dist/kdesign.min.css +2 -2
  8. package/dist/kdesign.min.js +10 -10
  9. package/dist/kdesign.min.js.map +1 -1
  10. package/es/_utils/usePopper.js +1 -1
  11. package/es/breadcrumb/breadcrumb.d.ts +7 -0
  12. package/es/breadcrumb/breadcrumb.js +204 -0
  13. package/es/breadcrumb/breadcrumbItem.d.ts +4 -0
  14. package/es/breadcrumb/breadcrumbItem.js +53 -0
  15. package/es/breadcrumb/index.d.ts +3 -0
  16. package/es/breadcrumb/index.js +3 -0
  17. package/es/breadcrumb/interface.d.ts +33 -0
  18. package/es/breadcrumb/interface.js +2 -0
  19. package/es/breadcrumb/style/css.js +2 -0
  20. package/es/breadcrumb/style/index.css +174 -0
  21. package/es/breadcrumb/style/index.d.ts +2 -0
  22. package/es/breadcrumb/style/index.js +2 -0
  23. package/es/breadcrumb/style/index.less +71 -0
  24. package/es/breadcrumb/style/mixin.less +7 -0
  25. package/es/breadcrumb/style/token.less +27 -0
  26. package/es/city-picker/city-picker.js +3 -1
  27. package/es/config-provider/compDefaultProps.d.ts +11 -0
  28. package/es/config-provider/compDefaultProps.js +12 -1
  29. package/es/divider/divider.d.ts +22 -0
  30. package/es/divider/divider.js +66 -0
  31. package/es/divider/index.d.ts +3 -0
  32. package/es/divider/index.js +3 -0
  33. package/es/divider/style/css.js +2 -0
  34. package/es/divider/style/index.css +191 -0
  35. package/es/divider/style/index.d.ts +2 -0
  36. package/es/divider/style/index.js +2 -0
  37. package/es/divider/style/index.less +105 -0
  38. package/es/divider/style/mixin.less +19 -0
  39. package/es/divider/style/token.less +12 -0
  40. package/es/index.d.ts +2 -0
  41. package/es/index.js +3 -1
  42. package/es/select/select.js +81 -15
  43. package/es/tree/tree.d.ts +1 -0
  44. package/es/tree/tree.js +5 -4
  45. package/es/tree/treeHooks.d.ts +1 -1
  46. package/es/tree/treeHooks.js +3 -3
  47. package/es/tree/utils/treeUtils.d.ts +3 -3
  48. package/es/tree/utils/treeUtils.js +12 -4
  49. package/lib/_utils/usePopper.js +1 -1
  50. package/lib/breadcrumb/breadcrumb.d.ts +7 -0
  51. package/lib/breadcrumb/breadcrumb.js +217 -0
  52. package/lib/breadcrumb/breadcrumbItem.d.ts +4 -0
  53. package/lib/breadcrumb/breadcrumbItem.js +66 -0
  54. package/lib/breadcrumb/index.d.ts +3 -0
  55. package/lib/breadcrumb/index.js +27 -0
  56. package/lib/breadcrumb/interface.d.ts +33 -0
  57. package/lib/breadcrumb/interface.js +9 -0
  58. package/lib/breadcrumb/style/css.js +4 -0
  59. package/lib/breadcrumb/style/index.css +174 -0
  60. package/lib/breadcrumb/style/index.d.ts +2 -0
  61. package/lib/breadcrumb/style/index.js +4 -0
  62. package/lib/breadcrumb/style/index.less +71 -0
  63. package/lib/breadcrumb/style/mixin.less +7 -0
  64. package/lib/breadcrumb/style/token.less +27 -0
  65. package/lib/checkbox/group.js +0 -3
  66. package/lib/city-picker/city-picker.js +3 -1
  67. package/lib/config-provider/compDefaultProps.d.ts +11 -0
  68. package/lib/config-provider/compDefaultProps.js +12 -1
  69. package/lib/date-picker/utils/date-fns.js +1 -5
  70. package/lib/divider/divider.d.ts +22 -0
  71. package/lib/divider/divider.js +82 -0
  72. package/lib/divider/index.d.ts +3 -0
  73. package/lib/divider/index.js +27 -0
  74. package/lib/divider/style/css.js +4 -0
  75. package/lib/divider/style/index.css +191 -0
  76. package/lib/divider/style/index.d.ts +2 -0
  77. package/lib/divider/style/index.js +4 -0
  78. package/lib/divider/style/index.less +105 -0
  79. package/lib/divider/style/mixin.less +19 -0
  80. package/lib/divider/style/token.less +12 -0
  81. package/lib/index.d.ts +2 -0
  82. package/lib/index.js +14 -0
  83. package/lib/select/select.js +81 -15
  84. package/lib/style/components.less +2 -0
  85. package/lib/tree/tree.d.ts +1 -0
  86. package/lib/tree/tree.js +5 -4
  87. package/lib/tree/treeHooks.d.ts +1 -1
  88. package/lib/tree/treeHooks.js +3 -3
  89. package/lib/tree/utils/treeUtils.d.ts +3 -3
  90. package/lib/tree/utils/treeUtils.js +12 -4
  91. package/package.json +1 -1
package/CHANGELOG.md CHANGED
@@ -1,3 +1,295 @@
1
+ ## [1.7.46](https://github.com/kdcloudone/kdesign/compare/v1.7.45...v1.7.46) (2024-01-12)
2
+
3
+
4
+ ### Bug Fixes
5
+
6
+ * [city-picker] 修复国内版回填的提示内容显示问题 fix [#708](https://github.com/kdcloudone/kdesign/issues/708) ([39d36ae](https://github.com/kdcloudone/kdesign/commit/39d36aec993a4ca078a530a17c9cf4cd8ea84298))
7
+ * [select] 调整全选逻辑 fix [#687](https://github.com/kdcloudone/kdesign/issues/687) ([1c1a893](https://github.com/kdcloudone/kdesign/commit/1c1a893e2ddc2d02b6bebbbc6fa0e066471318ad))
8
+ * [tree] 修复勾选时onCheck函数返回了错误的halfCheckedKeys fix [#710](https://github.com/kdcloudone/kdesign/issues/710) ([8d8d739](https://github.com/kdcloudone/kdesign/commit/8d8d7396f42f05d4956d410377f595523bf3fa48))
9
+ * [usePopper] 修复下拉面板未对齐问题 fix [#712](https://github.com/kdcloudone/kdesign/issues/712) ([9fafa4f](https://github.com/kdcloudone/kdesign/commit/9fafa4fae1920a288fcb84f0d6b811d1ba0fa9c5))
10
+
11
+
12
+ ### Features
13
+
14
+ * [tree] 新增api expandOnFilterNode支持过滤时是否显示过滤节点的下级 fix [#707](https://github.com/kdcloudone/kdesign/issues/707) ([f589bc4](https://github.com/kdcloudone/kdesign/commit/f589bc40ea6e05ad8a460897bbe97b10cc09f336))
15
+
16
+
17
+
18
+ ## [1.7.45](https://github.com/kdcloudone/kdesign/compare/v1.7.44...v1.7.45) (2024-01-04)
19
+
20
+
21
+ ### Bug Fixes
22
+
23
+ * [city-picker] 修复国内版搜索国外城市不显示上级区划 fix [#700](https://github.com/kdcloudone/kdesign/issues/700) ([182ac5b](https://github.com/kdcloudone/kdesign/commit/182ac5b2ca502e5d7441a3ef208f836b52fd1b6f))
24
+ * [filter] 修复demo中Option的报错 ([a7c7b6e](https://github.com/kdcloudone/kdesign/commit/a7c7b6e994e72e788965077bded833db9f1f9917))
25
+ * [form] 修复必选图标由于字体设置导致的样式不一致问题 ([0d31be0](https://github.com/kdcloudone/kdesign/commit/0d31be0aa4d8f9106380d681b5ba8037dbbd6dbc))
26
+ * [image-cropper] 修复api文档书写错误 fix [#688](https://github.com/kdcloudone/kdesign/issues/688) ([8e271f4](https://github.com/kdcloudone/kdesign/commit/8e271f4f88c2d35c4cc2f21384bc60da6b77ca5d))
27
+ * [select] 多选搜索时下面面板未空时不显示全选按钮 fix [#698](https://github.com/kdcloudone/kdesign/issues/698) ([41cb855](https://github.com/kdcloudone/kdesign/commit/41cb8559802070bb4022044dacb67977f1574352))
28
+ * [select] 修复从单选切换为多选时页面报错的问题 fix [#701](https://github.com/kdcloudone/kdesign/issues/701) ([4a2280a](https://github.com/kdcloudone/kdesign/commit/4a2280a15d4df64be227c0b3e6afa35fd8779fd4))
29
+ * [table] 更新table版本修复react18严格模式报错及全选与拖拽标题共用是报错问题 fix [#641](https://github.com/kdcloudone/kdesign/issues/641), [#695](https://github.com/kdcloudone/kdesign/issues/695) ([c71ae48](https://github.com/kdcloudone/kdesign/commit/c71ae48296a47fb3869e0e473c7d80dd79a6e878))
30
+ * [table] 修复表格默认加载输出异常警告日志 ([f1dd8ab](https://github.com/kdcloudone/kdesign/commit/f1dd8ab64bcae0536b04772d2122a378d8a396bc))
31
+ * [table] 修复格式导致的报错 ([305af91](https://github.com/kdcloudone/kdesign/commit/305af91ded3b9cbb3a681f4bbd3eee41f3f7d24e))
32
+
33
+
34
+ ### Features
35
+
36
+ * [cli] 添加埋点功能 ([739389a](https://github.com/kdcloudone/kdesign/commit/739389afebb001cb47f5edf1d241430c99d9d573))
37
+
38
+
39
+
40
+ ## [1.7.44](https://github.com/kdcloudone/kdesign/compare/v1.7.43...v1.7.44) (2023-12-14)
41
+
42
+
43
+ ### Bug Fixes
44
+
45
+ * [checkbox] 修复传入的children为空时样式显示问题 fix [#672](https://github.com/kdcloudone/kdesign/issues/672) ([9d6b774](https://github.com/kdcloudone/kdesign/commit/9d6b774c0e71665341a20f3922144ce5743a8705))
46
+ * [select] 修复多选搜索没有结果时会把全选勾上 fix [#668](https://github.com/kdcloudone/kdesign/issues/668) ([2ab75ef](https://github.com/kdcloudone/kdesign/commit/2ab75effaf2cef5c0a1648bbff9eaff9a9ab2c4e))
47
+ * [tree] 修复expandOnClickNode为true时,点击叶子节点会触发loadData事件的问题 fix [#679](https://github.com/kdcloudone/kdesign/issues/679) ([84810c7](https://github.com/kdcloudone/kdesign/commit/84810c76486e430d64fa01cba22ca22e195e266f))
48
+
49
+
50
+
51
+ ## [1.7.43](https://github.com/kdcloudone/kdesign/compare/v1.7.42...v1.7.43) (2023-12-13)
52
+
53
+
54
+ ### Bug Fixes
55
+
56
+ * [构建]提升开发环境构建速度 [#676](https://github.com/kdcloudone/kdesign/issues/676) ([f38ed98](https://github.com/kdcloudone/kdesign/commit/f38ed982f69c1d43b61cf397682f0d9a65be84a2))
57
+ * [文档]官网新增社区精选组件 [#675](https://github.com/kdcloudone/kdesign/issues/675) ([039e07e](https://github.com/kdcloudone/kdesign/commit/039e07e47dd7a9a1375677d37234ae44d7a7e42a))
58
+ * 社区精选组件链接跳转not Found [#680](https://github.com/kdcloudone/kdesign/issues/680) ([9af2c52](https://github.com/kdcloudone/kdesign/commit/9af2c524be25c0af2404f25eb09b46afbb78200d))
59
+
60
+
61
+
62
+ ## [1.7.42](https://github.com/kdcloudone/kdesign/compare/v1.7.41...v1.7.42) (2023-12-07)
63
+
64
+
65
+ ### Bug Fixes
66
+
67
+ * [pagination] 修复total过大时导致页面卡顿问题 fix [#666](https://github.com/kdcloudone/kdesign/issues/666) ([df38723](https://github.com/kdcloudone/kdesign/commit/df387231da20db4b306487a3c14604562bba75f4))
68
+ * [tree] 修复在类组件中使用时,搜索结果未展开的问题 fix [#667](https://github.com/kdcloudone/kdesign/issues/667) ([330d343](https://github.com/kdcloudone/kdesign/commit/330d343cc360b9da8f50ef3e1a089bf9647423cf))
69
+ * [tree] 修复loadData函数ts类型校验报错问题 fix [#651](https://github.com/kdcloudone/kdesign/issues/651) ([1a953a6](https://github.com/kdcloudone/kdesign/commit/1a953a6a9dc3dd0878288f479483abdea0159c18))
70
+
71
+
72
+
73
+ ## [1.7.41](https://github.com/kdcloudone/kdesign/compare/v1.7.40...v1.7.41) (2023-12-04)
74
+
75
+
76
+ ### Bug Fixes
77
+
78
+ * [cli] 更新单测快照 ([d3642db](https://github.com/kdcloudone/kdesign/commit/d3642dbba83db7745c0fa5c75be26e11c4c16268))
79
+ * [cli] demo添加typescript支持 fix [#282](https://github.com/kdcloudone/kdesign/issues/282) ([82c5252](https://github.com/kdcloudone/kdesign/commit/82c525207953218a9ade6e372621869814350b41))
80
+ * [fix]kdesign官网无法在ie11上显示 [#662](https://github.com/kdcloudone/kdesign/issues/662) ([b2b9605](https://github.com/kdcloudone/kdesign/commit/b2b9605ac80a6e50e13a604ff0508d6d5e30db1a))
81
+ * [input]添加textarea限制字数后超出提示 fix [#650](https://github.com/kdcloudone/kdesign/issues/650) ([b923ce1](https://github.com/kdcloudone/kdesign/commit/b923ce110d718b77ae0b1164476ef1310b495ceb))
82
+ * [notification]修复success回调重复触发问题 fix [#649](https://github.com/kdcloudone/kdesign/issues/649) ([6751170](https://github.com/kdcloudone/kdesign/commit/67511708a7ddc0de9fffa275722399961015fa64))
83
+
84
+
85
+ ### Features
86
+
87
+ * [modal] 新增支持弹窗拖拽调整大小功能 fix [#158](https://github.com/kdcloudone/kdesign/issues/158) ([379d2f8](https://github.com/kdcloudone/kdesign/commit/379d2f87e506066456cc13bf25d9b0099452a646))
88
+
89
+
90
+
91
+ ## [1.7.40](https://github.com/kdcloudone/kdesign/compare/v1.7.39...v1.7.40) (2023-11-27)
92
+
93
+
94
+ ### Bug Fixes
95
+
96
+ * [alert] 修复点击关闭按钮依旧占位的问题 fix [#652](https://github.com/kdcloudone/kdesign/issues/652) ([f22c2a3](https://github.com/kdcloudone/kdesign/commit/f22c2a3c8b6f864a59e3c1db91ae4ebab06508e0))
97
+ * [cli] 添加剪切板组件预览图 ([0317fb9](https://github.com/kdcloudone/kdesign/commit/0317fb977edaacdff7f658e31d9b968f99d7dee2))
98
+ * [cli] 修复demo中多余的name属性 ([01260a9](https://github.com/kdcloudone/kdesign/commit/01260a984d419e2d948621e6a4a46863b36ad716))
99
+ * [modal] 修复弹窗超出视口高度时无法滚动的问题 fix [#226](https://github.com/kdcloudone/kdesign/issues/226) fix [#581](https://github.com/kdcloudone/kdesign/issues/581) ([11e3d8e](https://github.com/kdcloudone/kdesign/commit/11e3d8ead40e50267acdd70e6ea3646f48c7d60b))
100
+ * [tree] 修复树组件搜索不生效问题 fix [#644](https://github.com/kdcloudone/kdesign/issues/644) ([4cad188](https://github.com/kdcloudone/kdesign/commit/4cad188d6c638da9a1e57c6285536195064ded6d))
101
+
102
+
103
+ ### Features
104
+
105
+ * [date-picker]新增自定义单元格API fix [#266](https://github.com/kdcloudone/kdesign/issues/266) ([a70026f](https://github.com/kdcloudone/kdesign/commit/a70026ff77715ac439f0e6570cb39ec5ffd078bb))
106
+ * [QRCode] 新增二维码组件 [#626](https://github.com/kdcloudone/kdesign/issues/626) ([f5f61d6](https://github.com/kdcloudone/kdesign/commit/f5f61d689c0b2cfcd19ad1585dfe47efd6e4c76f))
107
+
108
+
109
+
110
+ ## [1.7.39](https://github.com/kdcloudone/kdesign/compare/v1.7.37...v1.7.39) (2023-10-27)
111
+
112
+
113
+ ### Bug Fixes
114
+
115
+ * [cascader] 修复多选选中项很多时,滚动内容清空按钮不垂直居中问题 fix [#332](https://github.com/kdcloudone/kdesign/issues/332) ([77e64a8](https://github.com/kdcloudone/kdesign/commit/77e64a8cdafcf0229bc55cc9b3265246c08bf81c))
116
+ * [input-number] 修复配置digitLength和decimalLength时的交互问题 fix [#630](https://github.com/kdcloudone/kdesign/issues/630) ([717187c](https://github.com/kdcloudone/kdesign/commit/717187cf6a7269899d435b9f929c832e5e204d17))
117
+ * [tree-select] 修复单选设置placeholder不生效问题 fix [#631](https://github.com/kdcloudone/kdesign/issues/631) ([10687cb](https://github.com/kdcloudone/kdesign/commit/10687cba08535e225bb0dca487a5ca552548be9a))
118
+
119
+
120
+ ### Features
121
+
122
+ * [cli] readme文件新增官网链接 ([15e33e3](https://github.com/kdcloudone/kdesign/commit/15e33e3359b47c26acf5ede8c7177edf97c957d0))
123
+
124
+
125
+
126
+ ## [1.7.37](https://github.com/kdcloudone/kdesign/compare/v1.7.35...v1.7.37) (2023-10-19)
127
+
128
+
129
+ ### Bug Fixes
130
+
131
+ * [city-picker] 修复空值输入搜索内容时显示清空按钮问题 fix [#623](https://github.com/kdcloudone/kdesign/issues/623) ([5101a95](https://github.com/kdcloudone/kdesign/commit/5101a9518346fc188277407586ac7f0a601336e3))
132
+ * [message] 修复设置content为reactNode时图标和关闭按钮不出现的问题 fix [#293](https://github.com/kdcloudone/kdesign/issues/293) ([7e8943c](https://github.com/kdcloudone/kdesign/commit/7e8943c355ad636922ed51328cc7c185b41f3654))
133
+ * [select] 去除单选的backspace快捷键功能 fix [#632](https://github.com/kdcloudone/kdesign/issues/632) ([2915ddb](https://github.com/kdcloudone/kdesign/commit/2915ddbb31711c44cb30c92e0ccb7db9ffb8154e))
134
+ * [tree-select] 修复在表单中无法重置树选择下拉面板选中项问题 fix [#588](https://github.com/kdcloudone/kdesign/issues/588) ([e602dfa](https://github.com/kdcloudone/kdesign/commit/e602dfae0dd7570f4d75b1ad63b7445ab99143b0))
135
+ * [tree] 修复树组件设置节点过滤后无法展开收起节点问题 fix [#509](https://github.com/kdcloudone/kdesign/issues/509) ([a0e8577](https://github.com/kdcloudone/kdesign/commit/a0e8577c0ef3befede84a2590dd3edb487d10827))
136
+
137
+
138
+ ### Features
139
+
140
+ * [clipboard] 新增剪贴板组件 fix [#584](https://github.com/kdcloudone/kdesign/issues/584) ([dbc6d0e](https://github.com/kdcloudone/kdesign/commit/dbc6d0e69f9659f4316769b190ddd0d7b6c84c79))
141
+ * [select] 新增错误状态 fix [#627](https://github.com/kdcloudone/kdesign/issues/627) ([7e3fd35](https://github.com/kdcloudone/kdesign/commit/7e3fd357c861d246b3d91d617120dc1531b15ad1))
142
+ * [tree-select] 新增错误状态 fix [#628](https://github.com/kdcloudone/kdesign/issues/628) ([f97d614](https://github.com/kdcloudone/kdesign/commit/f97d6147b0267f424ebc2f6167dad5e1024640c8))
143
+ * [tree] 新增连接线 fix [#214](https://github.com/kdcloudone/kdesign/issues/214) ([de79d0d](https://github.com/kdcloudone/kdesign/commit/de79d0da2a52749025a90eda774e421e76513a5c))
144
+
145
+
146
+
147
+ ## [1.7.35](https://github.com/kdcloudone/kdesign/compare/v1.7.34...v1.7.35) (2023-10-19)
148
+
149
+
150
+ ### Bug Fixes
151
+
152
+ * [select] 修复传入dropdownRender属性导致页面卡死问题 fix [#573](https://github.com/kdcloudone/kdesign/issues/573) ([a258c48](https://github.com/kdcloudone/kdesign/commit/a258c4831351e45f6f143b832a0f9071ec0e9ef1))
153
+ * [select] 修复select下拉面板浮层位置变动为bottomRight后导致面板无法关闭问题 fix [#622](https://github.com/kdcloudone/kdesign/issues/622) ([fa5f040](https://github.com/kdcloudone/kdesign/commit/fa5f040aad962311ce4bc863f3227c89fa51bbc1))
154
+
155
+
156
+ ### Features
157
+
158
+ * [cli] 修改开发环境的地址 ([3cd110d](https://github.com/kdcloudone/kdesign/commit/3cd110dec15e9aa6fbda1ea482b01b350df523f2))
159
+ * [color-picker] 修改输入框和下拉框的样式 ([914d6b7](https://github.com/kdcloudone/kdesign/commit/914d6b70bbc8114af40b1a277ac0db5186324aef))
160
+ * [select] 新增选择器国际化功能 fix [#592](https://github.com/kdcloudone/kdesign/issues/592) ([98ef1f8](https://github.com/kdcloudone/kdesign/commit/98ef1f89dde249566fb9f838260613c1ad908df7))
161
+ * 新增visible和onVisibleChange API close [#580](https://github.com/kdcloudone/kdesign/issues/580) ([0b94801](https://github.com/kdcloudone/kdesign/commit/0b94801a478f8145d76b583a6ce6e6104921c636))
162
+
163
+
164
+
165
+ ## [1.7.34](https://github.com/kdcloudone/kdesign/compare/v1.7.33...v1.7.34) (2023-10-11)
166
+
167
+
168
+ ### Bug Fixes
169
+
170
+ * [date-picker]表单校验问题 fix [#619](https://github.com/kdcloudone/kdesign/issues/619) ([e963693](https://github.com/kdcloudone/kdesign/commit/e9636937e7c954a0f5324d25a368eb1ba1eb2fd2))
171
+ * [date-picker]修复safari组件异常问题 fix [#609](https://github.com/kdcloudone/kdesign/issues/609) ([3c6e54a](https://github.com/kdcloudone/kdesign/commit/3c6e54a4f3b00cfe5ad61817f945dd0f29551c4d))
172
+ * [upload]ie兼容性问题处理 fix [#620](https://github.com/kdcloudone/kdesign/issues/620) ([602b961](https://github.com/kdcloudone/kdesign/commit/602b9612c3fca3466f6bdfe640197148533bb6a0))
173
+
174
+
175
+
176
+ ## [1.7.33](https://github.com/kdcloudone/kdesign/compare/v1.7.32...v1.7.33) (2023-10-07)
177
+
178
+
179
+ ### Bug Fixes
180
+
181
+ * [select] 修复下拉面板出现多余滚动条问题 fix [#595](https://github.com/kdcloudone/kdesign/issues/595) ([44f351e](https://github.com/kdcloudone/kdesign/commit/44f351e36d5d648bc3b90d9bb9f0757d4ed2c12e))
182
+
183
+
184
+
185
+ ## [1.7.32](https://github.com/kdcloudone/kdesign/compare/v1.7.31...v1.7.32) (2023-09-27)
186
+
187
+
188
+ ### Bug Fixes
189
+
190
+ * [select] 样式 BUG ([1edef01](https://github.com/kdcloudone/kdesign/commit/1edef0118f33e38efcbc57b2311a45b9cfe168b5))
191
+
192
+
193
+
194
+ ## [1.7.31](https://github.com/kdcloudone/kdesign/compare/v1.7.30...v1.7.31) (2023-09-27)
195
+
196
+
197
+ ### Bug Fixes
198
+
199
+ * [select] 修复多选选择器页面上不显示问题 fix [#615](https://github.com/kdcloudone/kdesign/issues/615) ([789dc53](https://github.com/kdcloudone/kdesign/commit/789dc536b2f3854db4d1b77e78decc72be4577de))
200
+
201
+
202
+ ### Features
203
+
204
+ * [table] 新增国际化配置 ([825cb65](https://github.com/kdcloudone/kdesign/commit/825cb65106b273d8f438d3f41778e14536c9701c))
205
+ * [table] 修改table版本到最新版 ([35c0b3c](https://github.com/kdcloudone/kdesign/commit/35c0b3c406b1424d408b491d53cce4ae42ce86eb))
206
+
207
+
208
+
209
+ ## [1.7.30](https://github.com/kdcloudone/kdesign/compare/v1.7.29...v1.7.30) (2023-09-27)
210
+
211
+
212
+ ### Bug Fixes
213
+
214
+ * [city-picker] 更新快捷键规范 fix [#610](https://github.com/kdcloudone/kdesign/issues/610) ([77280b6](https://github.com/kdcloudone/kdesign/commit/77280b6d0700ee95462842ee795a8777d719b8ee))
215
+ * [city-picker] 更新清除按钮视觉规范 fix [#608](https://github.com/kdcloudone/kdesign/issues/608) ([6e72b87](https://github.com/kdcloudone/kdesign/commit/6e72b876c0917a49700b6d2d89e5ca3ee519308a))
216
+ * [city-picker] 修复禁用状态下不显示空提示 fix [#603](https://github.com/kdcloudone/kdesign/issues/603) ([3f67b98](https://github.com/kdcloudone/kdesign/commit/3f67b9822e853b9ff230b80c4efda8d6480f3e97))
217
+ * [grid] 修复边距问题 ([93a7f8f](https://github.com/kdcloudone/kdesign/commit/93a7f8fd21b5fd51352cf662a144e50ff4fd20f6))
218
+ * [select] 修复在ie11多选打开下拉面板页面卡死问题 fix [#612](https://github.com/kdcloudone/kdesign/issues/612) ([c0cdeb7](https://github.com/kdcloudone/kdesign/commit/c0cdeb77e37179c38b617ccb45594a8b185cea50))
219
+
220
+
221
+
222
+ ## [1.7.29](https://github.com/kdcloudone/kdesign/compare/v1.7.28...v1.7.29) (2023-09-25)
223
+
224
+
225
+ ### Bug Fixes
226
+
227
+ * [grid] 修复单测报错 ([e4f6322](https://github.com/kdcloudone/kdesign/commit/e4f6322371e95d68a090c2b3805255cdb05542b1))
228
+ * [grid] 修复ie11下间距失效的问题 fix [#604](https://github.com/kdcloudone/kdesign/issues/604) ([5cd3146](https://github.com/kdcloudone/kdesign/commit/5cd31468d48d9402c51535efb3e14506752733a8))
229
+ * [select] 修复在ie浏览器上出现多余滚动条问题 fix [#598](https://github.com/kdcloudone/kdesign/issues/598) ([16508b9](https://github.com/kdcloudone/kdesign/commit/16508b92a4678a209a9a3f7ca405e19aaf80edb1))
230
+
231
+
232
+
233
+ ## [1.7.28](https://github.com/kdcloudone/kdesign/compare/v1.7.27...v1.7.28) (2023-09-21)
234
+
235
+
236
+ ### Bug Fixes
237
+
238
+ * [city-picker] 修复在ie浏览器出现滚动条问题 fix [#593](https://github.com/kdcloudone/kdesign/issues/593) ([020d479](https://github.com/kdcloudone/kdesign/commit/020d4793a5586782b75cd68435d124f2ad3cf24d))
239
+ * [city-picker] 修复选中项后回填值显示异常问题 fix [#596](https://github.com/kdcloudone/kdesign/issues/596) ([fb93bd7](https://github.com/kdcloudone/kdesign/commit/fb93bd73d916c1a83a9f1024046554797a86bb45))
240
+ * [cli] 修复编译全局less变量后的显示问题 ([bc1a84e](https://github.com/kdcloudone/kdesign/commit/bc1a84ea3e30043e87ee2198970a6cecd63112ae))
241
+ * [create-component] 修复新建组件脚本生成 config-provider 默认参数的 BUG fix: [#586](https://github.com/kdcloudone/kdesign/issues/586) ([27be6ed](https://github.com/kdcloudone/kdesign/commit/27be6edfd05cea0285b54254382bf50dddc0aa74))
242
+ * [grid] 修复ie11竖向间距消失的问题 ([063d0f7](https://github.com/kdcloudone/kdesign/commit/063d0f7364009d935c33e1d29dd24d2f8a56fa54))
243
+ * [select] 修复在ie浏览器中使用选择器组件浏览器直接崩溃问题 fix [#579](https://github.com/kdcloudone/kdesign/issues/579) ([2787307](https://github.com/kdcloudone/kdesign/commit/278730767a2a1376404cfcc64c8023c210693329))
244
+
245
+
246
+ ### Features
247
+
248
+ * [city-picker] 新增支持受控时传入value为城市数据 fix [#594](https://github.com/kdcloudone/kdesign/issues/594) ([8731e30](https://github.com/kdcloudone/kdesign/commit/8731e3007cc29ee1c77b43b7a56ebba01c261a74))
249
+
250
+
251
+
252
+ ## [1.7.27](https://github.com/kdcloudone/kdesign/compare/v1.7.26...v1.7.27) (2023-09-15)
253
+
254
+
255
+ ### Bug Fixes
256
+
257
+ * [city-picker] 修复国内版常用面板无省份数据时显示国家名 fix [#576](https://github.com/kdcloudone/kdesign/issues/576) ([9783592](https://github.com/kdcloudone/kdesign/commit/9783592babfdaed9044ab9624b43922999163905))
258
+ * [city-picker] 修复下拉面板不关闭问题 fix [#575](https://github.com/kdcloudone/kdesign/issues/575) ([e274112](https://github.com/kdcloudone/kdesign/commit/e274112c10e53963233545fc4b16174d16c4ee68))
259
+
260
+
261
+ ### Features
262
+
263
+ * [city-picker] 新增快捷键功能 fix [#582](https://github.com/kdcloudone/kdesign/issues/582) ([4ee705c](https://github.com/kdcloudone/kdesign/commit/4ee705c43cc29c96bb497a42ffa3d46e8a657b03))
264
+ * [cli] 添加开发新组件说明文档 ([5d23b02](https://github.com/kdcloudone/kdesign/commit/5d23b029c3c10bba0099d885ec255ad9f48e150f))
265
+ * 国际化专项token开放第二批组件 ([fd2e704](https://github.com/kdcloudone/kdesign/commit/fd2e7044c7622c2e585242b030ba1fd58dfe201a))
266
+
267
+
268
+
269
+ ## [1.7.26](https://github.com/kdcloudone/kdesign/compare/v1.7.25...v1.7.26) (2023-09-08)
270
+
271
+
272
+ ### Bug Fixes
273
+
274
+ * [cascader]修复清空时显示问题 fix [#528](https://github.com/kdcloudone/kdesign/issues/528) ([4b1c711](https://github.com/kdcloudone/kdesign/commit/4b1c7110b11a4c9c600348ccc2c4993256ee9552))
275
+ * [cascader]修复disabled问题 fix [#397](https://github.com/kdcloudone/kdesign/issues/397),fix [#398](https://github.com/kdcloudone/kdesign/issues/398) ([91cc162](https://github.com/kdcloudone/kdesign/commit/91cc162a5308d7b9ce863f31f25fd2251861e487))
276
+ * [cascader]修复focus相关api及样式问题 fix [#338](https://github.com/kdcloudone/kdesign/issues/338), fix [#395](https://github.com/kdcloudone/kdesign/issues/395) ([bf255fc](https://github.com/kdcloudone/kdesign/commit/bf255fcbc4e261278ed346c917417af3fc145d45))
277
+ * [cascader]修复hover样式问题 fix [#396](https://github.com/kdcloudone/kdesign/issues/396) ([0c9de4c](https://github.com/kdcloudone/kdesign/commit/0c9de4c867e5328a0ae3ed15408ce36cfbe5a15a))
278
+ * [city-picker] 更新下拉面板视觉规范 fix [#565](https://github.com/kdcloudone/kdesign/issues/565) ([db5ffd4](https://github.com/kdcloudone/kdesign/commit/db5ffd46f220319a973553e17abe82f745187b73))
279
+ * [city-picker] 修复国际版当数据无province时,下拉项无分隔符问题 fix [#567](https://github.com/kdcloudone/kdesign/issues/567) ([0ce1677](https://github.com/kdcloudone/kdesign/commit/0ce1677667ac9bb9c9ff0d5ca2485b682ad23143))
280
+ * [city-picker] 修复受控时将value设置为空字符串,城市选项没清空问题 fix [#569](https://github.com/kdcloudone/kdesign/issues/569) ([7e69ccd](https://github.com/kdcloudone/kdesign/commit/7e69ccd95b099a92a794899f92bd96ae3a3f031f))
281
+ * [city-picker] 修复ie浏览器下容器宽度过长问题 fix [#568](https://github.com/kdcloudone/kdesign/issues/568) ([d66e890](https://github.com/kdcloudone/kdesign/commit/d66e890d50de81cff720004d161d1ecdf283b62c))
282
+ * [collapse] 添加header描述性语句api ([1ea5824](https://github.com/kdcloudone/kdesign/commit/1ea5824d72ac8e9930cedc0f2184d46ae5d894bb))
283
+ * [collapse] 修复边框显示问题 fix [#564](https://github.com/kdcloudone/kdesign/issues/564) ([7437b36](https://github.com/kdcloudone/kdesign/commit/7437b36069d5b4ca3b895c1befe17f9920cbfaf7))
284
+ * [tree-select] 新增tag标签的title属性 fix [#570](https://github.com/kdcloudone/kdesign/issues/570) ([341e21a](https://github.com/kdcloudone/kdesign/commit/341e21ada13a124b1d7b08a686bcdbef33341ef9))
285
+
286
+
287
+ ### Features
288
+
289
+ * [form]新增extra属性 fix [#223](https://github.com/kdcloudone/kdesign/issues/223) ([6b42df7](https://github.com/kdcloudone/kdesign/commit/6b42df763728317f4414b68dc02f61052cc85bb5))
290
+
291
+
292
+
1
293
  ## [1.7.25](https://github.com/kdcloudone/kdesign/compare/v1.7.24...v1.7.25) (2023-08-31)
2
294
 
3
295
 
@@ -919,6 +919,114 @@
919
919
  @base-data-dropdown-z-index: var(~'@{base-data-custom-prefix}-dropdown-z-index', @z-index-popper);
920
920
 
921
921
 
922
+ @breadcrumb-prefix-cls: ~'@{kd-prefix}-breadcrumb';
923
+
924
+ .@{breadcrumb-prefix-cls},
925
+ .@{breadcrumb-prefix-cls}-more-panel {
926
+ .breadcrumb;
927
+
928
+ display: flex;
929
+ height: 22px;
930
+
931
+ &-hide-icon {
932
+ position: absolute;
933
+ z-index: -999999;
934
+ top: -999999px;
935
+ visibility: hidden;
936
+ }
937
+
938
+ &-item {
939
+ display: flex;
940
+ cursor: text;
941
+
942
+ &-separator {
943
+ padding: 0 @breadcrumb-separator-spacing-padding-horizontal;
944
+ color: @breadcrumb-separator-color-text;
945
+ }
946
+
947
+ &-link {
948
+ &:hover {
949
+ color: #3987ed;
950
+ cursor: pointer;
951
+ }
952
+ }
953
+
954
+ &-emphasize-model {
955
+ color: @breadcrumb-color-text;
956
+ }
957
+
958
+ &-emphasize-model-current {
959
+ color: @breadcrumb-active-color-text;
960
+ }
961
+
962
+ &-weaken-model {
963
+ color: @breadcrumb-active-color-text;
964
+ }
965
+
966
+ &-weaken-model-current {
967
+ color: @breadcrumb-color-text;
968
+ }
969
+
970
+ &-text {
971
+ white-space: nowrap;
972
+
973
+ &:last-child {
974
+ text-overflow: ellipsis;
975
+ }
976
+ }
977
+
978
+ &-icon {
979
+ margin-right: 4px;
980
+ }
981
+ }
982
+
983
+ .kd-dropdown-trigger {
984
+ margin-left: 4px;
985
+ }
986
+ }
987
+
988
+ .@{breadcrumb-prefix-cls}-popper {
989
+ max-width: none !important;
990
+ }
991
+
992
+
993
+
994
+ .breadcrumb() {
995
+ color: @breadcrumb-color-text;
996
+ font-size: @breadcrumb-font-size;
997
+ font-weight: @breadcrumb-font-weight;
998
+ }
999
+
1000
+
1001
+
1002
+ @breadcrumb-custom-prefix: ~'--@{kd-prefix}-c-breadcrumb';
1003
+
1004
+ // color
1005
+ @breadcrumb-color-text: var(~'@{breadcrumb-custom-prefix}-color-text', #737373);
1006
+ @breadcrumb-active-color-text: var(~'@{breadcrumb-custom-prefix}-active-color-text', #111111);
1007
+ @breadcrumb-separator-color-text: var(~'@{breadcrumb-custom-prefix}-separator-color-text', #b2b2b2);
1008
+
1009
+ // font
1010
+ @breadcrumb-font-size: var(~'@{breadcrumb-custom-prefix}-font-size', @font-size-middle);
1011
+ @breadcrumb-font-weight: var(~'@{breadcrumb-custom-prefix}-font-weight', @font-weight-light);
1012
+
1013
+ // line-height
1014
+
1015
+ // motion
1016
+
1017
+ // radius
1018
+
1019
+ // shadow
1020
+
1021
+ // sizing
1022
+
1023
+ // spacing
1024
+ @breadcrumb-separator-spacing-padding-horizontal: var(~'@{breadcrumb-custom-prefix}-separator-spacing-padding-horizontal', 8px);
1025
+
1026
+ // z-index
1027
+
1028
+
1029
+
922
1030
  @btn-prefix-cls: ~'@{kd-prefix}-btn';
923
1031
 
924
1032
  .@{btn-prefix-cls} {
@@ -4568,6 +4676,145 @@
4568
4676
 
4569
4677
 
4570
4678
 
4679
+ @divider-prefix-cls: ~'@{kd-prefix}-divider';
4680
+
4681
+ .@{divider-prefix-cls} {
4682
+ .divider;
4683
+
4684
+ width: 900px;
4685
+ padding: @divider-spacing-padding-horizontal;
4686
+ border-block-start: 1px solid @color-border-strong;
4687
+
4688
+ &-vertical {
4689
+ display: inline-block;
4690
+ border-inline-start: 1px solid @color-border-strong;
4691
+ width: 0;
4692
+ height: 1em;
4693
+ }
4694
+
4695
+ &-solid {
4696
+ .borderStyle(solid)
4697
+ }
4698
+
4699
+ &-dashed {
4700
+ .borderStyle(dashed)
4701
+ }
4702
+
4703
+ &-dotted {
4704
+ .borderStyle(dotted)
4705
+ }
4706
+
4707
+ &-with-text {
4708
+ border: unset;
4709
+
4710
+ .@{divider-prefix-cls}-inner-text {
4711
+ display: flex;
4712
+ align-items: center;
4713
+
4714
+ &::before {
4715
+ content: '';
4716
+ width: 74px;
4717
+ margin-right: 8px;
4718
+ border-block-start: 1px solid @color-border-strong;
4719
+ }
4720
+
4721
+ &::after {
4722
+ content: '';
4723
+ width: calc(100% - 74px);
4724
+ margin-left: 8px;
4725
+ border-block-start: 1px solid @color-border-strong;
4726
+ }
4727
+ }
4728
+ }
4729
+
4730
+ &-with-text-center {
4731
+ .@{divider-prefix-cls}-inner-text {
4732
+
4733
+ &::before,
4734
+ &::after {
4735
+ width: 50%;
4736
+ }
4737
+ }
4738
+ }
4739
+
4740
+ &-with-text-right {
4741
+ .@{divider-prefix-cls}-inner-text {
4742
+
4743
+ &::before {
4744
+ width: calc(100% - 74px);
4745
+
4746
+ }
4747
+
4748
+ &::after {
4749
+ width: 74px;
4750
+ }
4751
+ }
4752
+ }
4753
+
4754
+ &-margin-left {
4755
+ .@{divider-prefix-cls}-inner-text {
4756
+
4757
+ &::before {
4758
+ width: 0;
4759
+
4760
+ }
4761
+
4762
+ &::after {
4763
+ width: 100%;
4764
+ }
4765
+ }
4766
+ }
4767
+
4768
+ &-margin-right {
4769
+ .@{divider-prefix-cls}-inner-text {
4770
+
4771
+ &::before {
4772
+ width: 100%;
4773
+
4774
+ }
4775
+
4776
+ &::after {
4777
+ width: 0;
4778
+ }
4779
+ }
4780
+ }
4781
+ }
4782
+
4783
+
4784
+
4785
+ .divider() {
4786
+ color: @divider-color-text;
4787
+ font-size: @divider-font-size;
4788
+ }
4789
+
4790
+ .borderStyle(@border-style) {
4791
+ border-block-start-style: @border-style;
4792
+ border-inline-start-style: @border-style;
4793
+
4794
+ .@{divider-prefix-cls}-inner-text {
4795
+
4796
+ &::before,
4797
+ &::after {
4798
+ border-block-start-style: @border-style !important
4799
+ }
4800
+ }
4801
+ }
4802
+
4803
+
4804
+
4805
+ @divider-custom-prefix: ~'--@{kd-prefix}-c-divider';
4806
+
4807
+ // color
4808
+ @divider-color-text: var(~'@{divider-custom-prefix}-color-text', @color-text-primary);
4809
+
4810
+ // font
4811
+ @divider-font-size: var(~'@{divider-custom-prefix}-font-size', @font-size-small);
4812
+
4813
+ // spacing
4814
+ @divider-spacing-padding-horizontal: var(~'@{divider-custom-prefix}-spacing-padding-horizontal', 0px);
4815
+
4816
+
4817
+
4571
4818
 
4572
4819
 
4573
4820