@kdcloudjs/kdesign 1.7.1 → 1.7.2
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 +17 -0
- package/dist/kdesign-complete.less +5 -1
- package/dist/kdesign.css +9 -3
- package/dist/kdesign.css.map +1 -1
- package/dist/kdesign.js +1571 -1785
- package/dist/kdesign.js.map +1 -1
- package/dist/kdesign.min.css +2 -2
- package/dist/kdesign.min.js +5 -5
- package/dist/kdesign.min.js.map +1 -1
- package/es/color-picker/constant/colorTypes.js +3 -3
- package/es/color-picker/style/index.css +8 -2
- package/es/color-picker/style/index.less +5 -1
- package/es/dropdown/dropdown.js +2 -7
- package/es/dropdown/menu.js +3 -0
- package/es/modal/modal.d.ts +7 -1
- package/es/modal/modal.js +29 -5
- package/lib/color-picker/constant/colorTypes.js +3 -3
- package/lib/color-picker/style/index.css +8 -2
- package/lib/color-picker/style/index.less +5 -1
- package/lib/dropdown/dropdown.js +2 -7
- package/lib/dropdown/menu.js +3 -0
- package/lib/modal/modal.d.ts +7 -1
- package/lib/modal/modal.js +31 -7
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,20 @@
|
|
|
1
|
+
## [1.7.1](https://github.com/kdcloudone/kdesign/compare/v1.7.0...v1.7.1) (2023-03-24)
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
### Bug Fixes
|
|
5
|
+
|
|
6
|
+
* [cli] 添加组件概览缩略图默认值 ([9ad9386](https://github.com/kdcloudone/kdesign/commit/9ad9386fa64702605942c8bddfa8179b869db348))
|
|
7
|
+
* [cli] 修复国际化配置需全量传入参数问题 fix [#297](https://github.com/kdcloudone/kdesign/issues/297) ([90de9ad](https://github.com/kdcloudone/kdesign/commit/90de9ad3f5bf952432161de40a4067f678365a9c))
|
|
8
|
+
* [pagination]修复样式问题 fix [#288](https://github.com/kdcloudone/kdesign/issues/288) ([37ec001](https://github.com/kdcloudone/kdesign/commit/37ec00156fe68c7188150158ceffa0e0457d784c))
|
|
9
|
+
* [pagination]修复样式问题 fix [#288](https://github.com/kdcloudone/kdesign/issues/288) ([8283ed8](https://github.com/kdcloudone/kdesign/commit/8283ed89af37eebfe2dc06c85769715558760857))
|
|
10
|
+
|
|
11
|
+
|
|
12
|
+
### Features
|
|
13
|
+
|
|
14
|
+
* [color-picker] add color-picker component ([74c8266](https://github.com/kdcloudone/kdesign/commit/74c8266fa426ba3d6b7b2ba03eac7cac75990fdc))
|
|
15
|
+
|
|
16
|
+
|
|
17
|
+
|
|
1
18
|
# [1.7.0](https://github.com/kdcloudone/kdesign/compare/v1.6.40...v1.7.0) (2023-03-23)
|
|
2
19
|
|
|
3
20
|
|
package/dist/kdesign.css
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
/*!
|
|
2
2
|
*
|
|
3
|
-
* @kdcloudjs/kdesign v1.7.
|
|
3
|
+
* @kdcloudjs/kdesign v1.7.1
|
|
4
4
|
*
|
|
5
5
|
* Copyright 2020-present, Kingdee, Inc.
|
|
6
6
|
* All rights reserved.
|
|
@@ -6140,8 +6140,14 @@ template {
|
|
|
6140
6140
|
box-shadow: 0 4px 10px 0 rgba(0, 0, 0, 0.2);
|
|
6141
6141
|
border-radius: 2px;
|
|
6142
6142
|
}
|
|
6143
|
-
.kd-color-picker-pop .kd-color-picker-panel-input .kd-select .kd-select-dropdown {
|
|
6144
|
-
|
|
6143
|
+
.kd-color-picker-pop .kd-color-picker-panel-input .kd-select .kd-select-dropdown .kd-select-item-option {
|
|
6144
|
+
display: -webkit-box;
|
|
6145
|
+
display: -ms-flexbox;
|
|
6146
|
+
display: flex;
|
|
6147
|
+
-webkit-box-pack: center;
|
|
6148
|
+
-ms-flex-pack: center;
|
|
6149
|
+
justify-content: center;
|
|
6150
|
+
min-width: unset;
|
|
6145
6151
|
}
|
|
6146
6152
|
.kd-color-picker-pop .kd-color-picker-panel-input .kd-select-bordered {
|
|
6147
6153
|
border-radius: 2px;
|