@ucloud-fe/react-components 1.5.19 → 1.5.20
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 +6 -0
- package/index.d.ts +1 -1
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,12 @@
|
|
|
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.5.20](https://github.com/UCloud-FE/react-components/compare/v1.5.19...v1.5.20) (2023-05-05)
|
|
6
|
+
|
|
7
|
+
### Bug Fixes
|
|
8
|
+
|
|
9
|
+
- **Interface:** table pagination can be null ([8304af6](https://github.com/UCloud-FE/react-components/commit/8304af65328723acb27e0e1ed245dd4613ac87e9))
|
|
10
|
+
|
|
5
11
|
### [1.5.19](https://github.com/UCloud-FE/react-components/compare/v1.5.18...v1.5.19) (2023-04-13)
|
|
6
12
|
|
|
7
13
|
### Features
|
package/index.d.ts
CHANGED
|
@@ -593,7 +593,7 @@ interface TableContextMenu {
|
|
|
593
593
|
(row: object, hide: boolean): ReactNode;
|
|
594
594
|
}
|
|
595
595
|
export interface TableProps {
|
|
596
|
-
pagination?: PaginationProps;
|
|
596
|
+
pagination?: PaginationProps | null;
|
|
597
597
|
dataSource?: any[];
|
|
598
598
|
columns?: Column[];
|
|
599
599
|
columnPlaceholder?: boolean;
|