@kdcloudjs/kdesign 1.3.0 → 1.3.1
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 +15 -0
- package/dist/kdesign-complete.less +7 -0
- package/dist/kdesign.css +8 -1
- package/dist/kdesign.css.map +1 -1
- package/dist/kdesign.js +13 -2
- package/dist/kdesign.js.map +1 -1
- package/dist/kdesign.min.css +2 -2
- package/dist/kdesign.min.js +2 -2
- package/dist/kdesign.min.js.map +1 -1
- package/es/checkbox/style/index.css +7 -0
- package/es/checkbox/style/index.less +7 -0
- package/es/select/select.js +12 -1
- package/lib/checkbox/style/index.css +7 -0
- package/lib/checkbox/style/index.less +7 -0
- package/lib/select/select.js +12 -1
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,18 @@
|
|
|
1
|
+
# [1.3.0](https://github.com/kdcloudone/kdesign/compare/v1.2.3...v1.3.0) (2022-05-19)
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
### Bug Fixes
|
|
5
|
+
|
|
6
|
+
* [badge] status属性对应颜色调整 ([c442795](https://github.com/kdcloudone/kdesign/commit/c442795602962854e0bf089a4bdad57e657ce23f))
|
|
7
|
+
* [badge] status显示问题 ([b667474](https://github.com/kdcloudone/kdesign/commit/b667474ea0ede932c408340c2d3c5d036c5eaee6))
|
|
8
|
+
* [carousel] 走马灯样式问题修复 ([133ed61](https://github.com/kdcloudone/kdesign/commit/133ed61793b313f8c215b20b411ce5027076437e))
|
|
9
|
+
* [checkbox] 修复group的name传值问题 ([82119f2](https://github.com/kdcloudone/kdesign/commit/82119f2378e80cfca2f5f7df57df79a7aa2f84cb))
|
|
10
|
+
* [form]新增valuePropName属性 ([2d4534b](https://github.com/kdcloudone/kdesign/commit/2d4534b9ec0c217504d08c1fcb7d5660736e65db))
|
|
11
|
+
* [select] 修复ts类型报错 ([d8bd48a](https://github.com/kdcloudone/kdesign/commit/d8bd48aab3217b6eccab80ce0c7c5d59d61f2b2b))
|
|
12
|
+
* [tag] 分类由 导航 => 数据展示 ([251bef1](https://github.com/kdcloudone/kdesign/commit/251bef15101992a24359e1f6eafc24269519182f))
|
|
13
|
+
|
|
14
|
+
|
|
15
|
+
|
|
1
16
|
## [1.2.3](https://github.com/kdcloudone/kdesign/compare/v1.2.2...v1.2.3) (2022-05-12)
|
|
2
17
|
|
|
3
18
|
|
|
@@ -1941,6 +1941,8 @@
|
|
|
1941
1941
|
justify-content: center;
|
|
1942
1942
|
align-items: center;
|
|
1943
1943
|
z-index: 999;
|
|
1944
|
+
user-select: none;
|
|
1945
|
+
|
|
1944
1946
|
.kd-input-underline {
|
|
1945
1947
|
background-color: transparent;
|
|
1946
1948
|
border-bottom: none;
|
|
@@ -2152,6 +2154,11 @@
|
|
|
2152
2154
|
color: @checkbox-font-color;
|
|
2153
2155
|
}
|
|
2154
2156
|
}
|
|
2157
|
+
&-indeterminate {
|
|
2158
|
+
.@{checkbox-prefix-cls}-children {
|
|
2159
|
+
color: @checkbox-font-color;
|
|
2160
|
+
}
|
|
2161
|
+
}
|
|
2155
2162
|
}
|
|
2156
2163
|
|
|
2157
2164
|
|
package/dist/kdesign.css
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
/*!
|
|
2
2
|
*
|
|
3
|
-
* @kdcloudjs/kdesign v1.
|
|
3
|
+
* @kdcloudjs/kdesign v1.3.0
|
|
4
4
|
*
|
|
5
5
|
* Copyright 2020-present, Kingdee, Inc.
|
|
6
6
|
* All rights reserved.
|
|
@@ -4682,6 +4682,10 @@ template {
|
|
|
4682
4682
|
-ms-flex-align: center;
|
|
4683
4683
|
align-items: center;
|
|
4684
4684
|
z-index: 999;
|
|
4685
|
+
-webkit-user-select: none;
|
|
4686
|
+
-moz-user-select: none;
|
|
4687
|
+
-ms-user-select: none;
|
|
4688
|
+
user-select: none;
|
|
4685
4689
|
}
|
|
4686
4690
|
.kd-checkbox-children .kd-input-underline {
|
|
4687
4691
|
background-color: transparent;
|
|
@@ -4914,6 +4918,9 @@ template {
|
|
|
4914
4918
|
.kd-checkbox-default.checked .kd-checkbox-children {
|
|
4915
4919
|
color: var(--kd-c-checkbox-color-text-primary, #212121);
|
|
4916
4920
|
}
|
|
4921
|
+
.kd-checkbox-default-indeterminate .kd-checkbox-children {
|
|
4922
|
+
color: var(--kd-c-checkbox-color-text-primary, #212121);
|
|
4923
|
+
}
|
|
4917
4924
|
|
|
4918
4925
|
/* ----------- color ——————---- start */
|
|
4919
4926
|
/* ----------- color ——————---- end */
|