File tree Expand file tree Collapse file tree 3 files changed +8
-3
lines changed
packages/components/data-table-manager/src Expand file tree Collapse file tree 3 files changed +8
-3
lines changed Original file line number Diff line number Diff line change
1
+ ---
2
+ ' @commercetools-uikit/data-table-manager ' : patch
3
+ ---
4
+
5
+ Fix name typo for ` TColumnProps ` type.
Original file line number Diff line number Diff line change @@ -14,7 +14,7 @@ export interface TRow {
14
14
id : string ;
15
15
}
16
16
17
- export type TColumProps = {
17
+ export type TColumnProps = {
18
18
/**
19
19
* The unique key of the column that is used to identify your data type.
20
20
* You can use this value to determine which value from a row item should be rendered.
@@ -108,7 +108,7 @@ type TDataTableManagerProps = {
108
108
* The list of columns to be rendered.
109
109
* Each column can be customized (see properties below).
110
110
*/
111
- columns : TColumProps [ ] ;
111
+ columns : TColumnProps [ ] ;
112
112
113
113
/**
114
114
* Any React node. Usually you want to render the `<DataTable>` component.
Original file line number Diff line number Diff line change 1
- export type { TRow , TColumProps } from './data-table-manager' ;
1
+ export type { TRow , TColumnProps } from './data-table-manager' ;
You can’t perform that action at this time.
0 commit comments