@ucloud-fe/react-components 1.11.0 → 1.11.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/main.min.js +3 -3
- package/lib/components/AutoComplete/AutoComplete.d.ts +1 -1
- package/lib/components/AutoComplete/AutoComplete.js +3 -1
- package/lib/components/Message/method.js +36 -17
- package/lib/components/Table/ColumnConfigButton.js +1 -0
- package/lib/components/Table/Table.js +29 -19
- package/lib/components/Table/style/index.js +19 -18
- package/lib/libs/rc-table/ColGroup.js +6 -2
- package/lib/libs/rc-table/utils.d.ts +1 -0
- package/lib/libs/rc-table/utils.js +5 -1
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,21 @@
|
|
|
2
2
|
|
|
3
3
|
All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines.
|
|
4
4
|
|
|
5
|
+
### [1.11.1](https://github.com/UCloud-FE/react-components/compare/v1.11.0...v1.11.1) (2024-08-12)
|
|
6
|
+
|
|
7
|
+
### Features
|
|
8
|
+
|
|
9
|
+
- **table:** add col tag props ([49543ab](https://github.com/UCloud-FE/react-components/commit/49543abbf5a488422b80b7df5ddd9bb49cda7783))
|
|
10
|
+
- **table:** change pagination margintop ([cbb12db](https://github.com/UCloud-FE/react-components/commit/cbb12db987a149263491389bffdf5a97ae55e428))
|
|
11
|
+
|
|
12
|
+
### Bug Fixes
|
|
13
|
+
|
|
14
|
+
- **AutoComplete:** add size ([291dd30](https://github.com/UCloud-FE/react-components/commit/291dd300220b89e4646dfc85e53fd3aafbe8594f))
|
|
15
|
+
- **message:** messagecontainer ref is null ([4e71520](https://github.com/UCloud-FE/react-components/commit/4e71520c4391b534d3df1ed34e971e63fa15fb74))
|
|
16
|
+
- **table:** columnConfigButton style ([5085afd](https://github.com/UCloud-FE/react-components/commit/5085afd0bb6852810382cae76b1320bb9a79dde5))
|
|
17
|
+
- **table:** remove drag classname ([478a27a](https://github.com/UCloud-FE/react-components/commit/478a27a2bd7375079a92e97c338dafb579b40bda))
|
|
18
|
+
- **table:** tabel filter disabled ([151662d](https://github.com/UCloud-FE/react-components/commit/151662d0a42df17a47d39b56a37a38ee92bf9cc9))
|
|
19
|
+
|
|
5
20
|
## [1.11.0](https://github.com/UCloud-FE/react-components/compare/v1.10.3...v1.11.0) (2024-04-12)
|
|
6
21
|
|
|
7
22
|
### Features
|