@kdcloudjs/kdesign 1.1.1 → 1.2.0
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 +60 -0
- package/dist/kdesign-complete.less +662 -572
- package/dist/kdesign.css +400 -316
- package/dist/kdesign.css.map +1 -1
- package/dist/kdesign.js +287 -40
- package/dist/kdesign.js.map +1 -1
- package/dist/kdesign.min.css +4 -4
- package/dist/kdesign.min.js +8 -8
- package/dist/kdesign.min.js.map +1 -1
- package/es/_utils/usePopper.js +4 -5
- package/es/anchor/anchor.js +0 -6
- package/es/anchor/style/index.css +5 -2
- package/es/anchor/style/index.less +6 -2
- package/es/anchor/style/token.less +2 -1
- package/es/button/button.d.ts +1 -1
- package/es/button/button.js +2 -2
- package/es/button/group.d.ts +21 -0
- package/es/button/group.js +130 -0
- package/es/button/index.d.ts +5 -1
- package/es/button/index.js +4 -1
- package/es/button/style/index.css +117 -21
- package/es/button/style/index.less +332 -192
- package/es/button/style/token.less +41 -25
- package/es/carousel/carousel.js +4 -0
- package/es/checkbox/checkbox.js +3 -4
- package/es/checkbox/style/index.css +36 -33
- package/es/checkbox/style/index.less +25 -18
- package/es/checkbox/style/token.less +34 -35
- package/es/config-provider/compDefaultProps.d.ts +4 -0
- package/es/config-provider/compDefaultProps.js +4 -0
- package/es/date-picker/style/index.css +8 -8
- package/es/date-picker/style/index.less +8 -8
- package/es/date-picker/style/token.less +3 -21
- package/es/empty/defaultEmptyImg.js +5 -3
- package/es/empty/illustrationEmptyImg.js +6 -4
- package/es/icon/interface.js +1 -1
- package/es/image/preview.js +1 -1
- package/es/image/style/index.css +8 -8
- package/es/image/style/index.less +5 -5
- package/es/image/style/token.less +12 -25
- package/es/input/style/index.css +53 -50
- package/es/input/style/index.less +5 -4
- package/es/input/style/mixin.less +1 -0
- package/es/input/style/token.less +23 -20
- package/es/layout/style/index.css +1 -1
- package/es/layout/style/index.less +1 -1
- package/es/layout/style/token.less +5 -5
- package/es/menu/style/index.css +76 -114
- package/es/menu/style/index.less +66 -140
- package/es/menu/style/mixin.less +10 -1
- package/es/menu/style/token.less +9 -12
- package/es/menu/subMenu.js +2 -1
- package/es/pagination/pagination.js +4 -4
- package/es/pagination/style/index.css +70 -55
- package/es/pagination/style/index.less +61 -43
- package/es/pagination/style/token.less +4 -4
- package/es/radio/radio.js +21 -8
- package/es/rate/style/index.css +9 -9
- package/es/rate/style/token.less +6 -6
- package/es/select/style/index.css +1 -1
- package/es/select/style/token.less +1 -1
- package/es/stepper/style/index.css +1 -1
- package/es/stepper/style/token.less +1 -1
- package/es/style/icon/kdicon.css +225 -0
- package/es/style/icon/kdicon.woff +0 -0
- package/es/switch/style/index.css +11 -11
- package/es/switch/style/index.less +2 -2
- package/es/switch/style/token.less +7 -10
- package/lib/_utils/usePopper.js +4 -5
- package/lib/anchor/anchor.js +0 -6
- package/lib/anchor/style/index.css +5 -2
- package/lib/anchor/style/index.less +6 -2
- package/lib/anchor/style/token.less +2 -1
- package/lib/button/button.d.ts +1 -1
- package/lib/button/button.js +2 -2
- package/lib/button/group.d.ts +21 -0
- package/lib/button/group.js +166 -0
- package/lib/button/index.d.ts +5 -1
- package/lib/button/index.js +5 -1
- package/lib/button/style/index.css +117 -21
- package/lib/button/style/index.less +332 -192
- package/lib/button/style/token.less +41 -25
- package/lib/carousel/carousel.js +4 -0
- package/lib/checkbox/checkbox.js +3 -4
- package/lib/checkbox/style/index.css +36 -33
- package/lib/checkbox/style/index.less +25 -18
- package/lib/checkbox/style/token.less +34 -35
- package/lib/config-provider/compDefaultProps.d.ts +4 -0
- package/lib/config-provider/compDefaultProps.js +4 -0
- package/lib/date-picker/style/index.css +8 -8
- package/lib/date-picker/style/index.less +8 -8
- package/lib/date-picker/style/token.less +3 -21
- package/lib/empty/defaultEmptyImg.js +6 -3
- package/lib/empty/illustrationEmptyImg.js +7 -4
- package/lib/icon/interface.js +1 -1
- package/lib/image/preview.js +1 -1
- package/lib/image/style/index.css +8 -8
- package/lib/image/style/index.less +5 -5
- package/lib/image/style/token.less +12 -25
- package/lib/input/style/index.css +53 -50
- package/lib/input/style/index.less +5 -4
- package/lib/input/style/mixin.less +1 -0
- package/lib/input/style/token.less +23 -20
- package/lib/layout/style/index.css +1 -1
- package/lib/layout/style/index.less +1 -1
- package/lib/layout/style/token.less +5 -5
- package/lib/menu/style/index.css +76 -114
- package/lib/menu/style/index.less +66 -140
- package/lib/menu/style/mixin.less +10 -1
- package/lib/menu/style/token.less +9 -12
- package/lib/menu/subMenu.js +2 -1
- package/lib/pagination/pagination.js +4 -3
- package/lib/pagination/style/index.css +70 -55
- package/lib/pagination/style/index.less +61 -43
- package/lib/pagination/style/token.less +4 -4
- package/lib/radio/radio.js +21 -8
- package/lib/rate/style/index.css +9 -9
- package/lib/rate/style/token.less +6 -6
- package/lib/select/style/index.css +1 -1
- package/lib/select/style/token.less +1 -1
- package/lib/stepper/style/index.css +1 -1
- package/lib/stepper/style/token.less +1 -1
- package/lib/style/icon/kdicon.css +225 -0
- package/lib/style/icon/kdicon.woff +0 -0
- package/lib/switch/style/index.css +11 -11
- package/lib/switch/style/index.less +2 -2
- package/lib/switch/style/token.less +7 -10
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,63 @@
|
|
|
1
|
+
## [1.1.3](https://github.com/kdcloudone/kdesign/compare/v1.1.2...v1.1.3) (2022-04-07)
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
### Bug Fixes
|
|
5
|
+
|
|
6
|
+
* [checkbox] 修复视觉走查问题点 ([342505b](https://github.com/kdcloudone/kdesign/commit/342505bd9bffd8f9b2108c87fbd87b5a5409642b))
|
|
7
|
+
* [cli] 修复引用kdesign.less文件提示字体包缺失问题 ([7520eb2](https://github.com/kdcloudone/kdesign/commit/7520eb2dbeaff0a01768b51bf7578ee081c02f50))
|
|
8
|
+
* [layout] 修改siderTrigger的line-height为46px,防止出现滚动条 ([83dd35e](https://github.com/kdcloudone/kdesign/commit/83dd35e7265595e75a034796b90d1b2cd9c575b4))
|
|
9
|
+
* [radio] 修复点击label中有input元素时的双击事件 ([037743e](https://github.com/kdcloudone/kdesign/commit/037743ee304a43010322c2b494c446e9fd334fd2))
|
|
10
|
+
* [usePopper] 去除了使用usePopper的时候useResizeObserver检测元素没有的警告 ([fb35c39](https://github.com/kdcloudone/kdesign/commit/fb35c393533c3086a7f8c14bff6b2778ff0342b4))
|
|
11
|
+
|
|
12
|
+
|
|
13
|
+
### Features
|
|
14
|
+
|
|
15
|
+
* [pagination] 更新样式 ([80f2135](https://github.com/kdcloudone/kdesign/commit/80f213578d70c1d16308bd21984f7428cf83bed8))
|
|
16
|
+
|
|
17
|
+
|
|
18
|
+
|
|
19
|
+
## [1.1.2](https://github.com/kdcloudone/kdesign/compare/v1.1.1...v1.1.2) (2022-04-02)
|
|
20
|
+
|
|
21
|
+
|
|
22
|
+
### Bug Fixes
|
|
23
|
+
|
|
24
|
+
* [date-picker] 修复日期区间选择的选择块不跟随主题色的问题 ([885a339](https://github.com/kdcloudone/kdesign/commit/885a33981d87ca41ac4007193694f3075582141d))
|
|
25
|
+
|
|
26
|
+
|
|
27
|
+
### Features
|
|
28
|
+
|
|
29
|
+
* [icon] 新增多个图标 ([be90eaf](https://github.com/kdcloudone/kdesign/commit/be90eaff8d64dd8f4bd86480f019536b3e56ef7b))
|
|
30
|
+
|
|
31
|
+
|
|
32
|
+
### Reverts
|
|
33
|
+
|
|
34
|
+
* Revert "fix: [menu] 1:删除子菜单title;2:收起class根据collapsed属性添加;3:添加默认宽度,删除demo中的宽度;4:token相关修改 (#29)" ([2357672](https://github.com/kdcloudone/kdesign/commit/2357672ed74c9dbd659229cf6282b22fb93ee82b)), closes [#29](https://github.com/kdcloudone/kdesign/issues/29)
|
|
35
|
+
|
|
36
|
+
|
|
37
|
+
|
|
38
|
+
## [1.1.1](https://github.com/kdcloudone/kdesign/compare/v1.1.0...v1.1.1) (2022-04-01)
|
|
39
|
+
|
|
40
|
+
|
|
41
|
+
### Bug Fixes
|
|
42
|
+
|
|
43
|
+
* [base-data] 更正开放token属性及选中项颜色值 ([5cb9c65](https://github.com/kdcloudone/kdesign/commit/5cb9c65b373231b50b83e71f197c3d41fa7c8ce5))
|
|
44
|
+
* [form]检验require未正确添加 ([607b251](https://github.com/kdcloudone/kdesign/commit/607b2511aa2c88f6cedd85af3793a9e09191ffe1))
|
|
45
|
+
* [form]fix token ([8ccf9aa](https://github.com/kdcloudone/kdesign/commit/8ccf9aa99210315f7236967797b310d99d63140d))
|
|
46
|
+
* [icon] 优化图标名称 ([b2b7838](https://github.com/kdcloudone/kdesign/commit/b2b7838461d4a9b8d5ea20aa98babb31774939b3))
|
|
47
|
+
* [menu] 1:删除子菜单title;2:收起class根据collapsed属性添加;3:添加默认宽度,删除demo中的宽度;4:token相关修改 ([#29](https://github.com/kdcloudone/kdesign/issues/29)) ([bb1b8fa](https://github.com/kdcloudone/kdesign/commit/bb1b8faa5bffc6b20f250c452c2af037e2f4e6a7))
|
|
48
|
+
* [message] 更新消息提示视觉稿 ([f416344](https://github.com/kdcloudone/kdesign/commit/f416344ef8de7b36ef3068f67816f1f907d2a26f))
|
|
49
|
+
* [select] 修复选中时字体颜色值 ([c94dcfc](https://github.com/kdcloudone/kdesign/commit/c94dcfcfdc89b0157b8f8dc0b08c7241f3ff55f7))
|
|
50
|
+
* [token] 格式修改 ([e34b377](https://github.com/kdcloudone/kdesign/commit/e34b377c0889b06f84e3ed4ebf3a92740b366dd5))
|
|
51
|
+
* [tree] 更新选中时图标与字体颜色 ([e62f32e](https://github.com/kdcloudone/kdesign/commit/e62f32ef324c783641794e53dbb65c374228a089))
|
|
52
|
+
|
|
53
|
+
|
|
54
|
+
### Features
|
|
55
|
+
|
|
56
|
+
* [carousel] 更新样式 ([872a1fb](https://github.com/kdcloudone/kdesign/commit/872a1fb3b7cf51b2bd88b97596d69952a352090c))
|
|
57
|
+
* [icon] 新增图标:xingzhuangjiehe ([be6c304](https://github.com/kdcloudone/kdesign/commit/be6c304c60ae86f25f0b4ca245da422fe537c68b))
|
|
58
|
+
|
|
59
|
+
|
|
60
|
+
|
|
1
61
|
# [1.1.0](https://github.com/kdcloudone/kdesign/compare/v1.0.4...v1.1.0) (2022-03-24)
|
|
2
62
|
|
|
3
63
|
|