@appquality/unguess-design-system 2.10.23 → 2.10.24
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 +12 -0
- package/build/stories/table/_types.d.ts +2 -3
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,15 @@
|
|
|
1
|
+
# v2.10.24 (Thu May 12 2022)
|
|
2
|
+
|
|
3
|
+
#### ⚠️ Pushed to `master`
|
|
4
|
+
|
|
5
|
+
- fix(table): type error ([@cannarocks](https://github.com/cannarocks))
|
|
6
|
+
|
|
7
|
+
#### Authors: 1
|
|
8
|
+
|
|
9
|
+
- Luca Cannarozzo ([@cannarocks](https://github.com/cannarocks))
|
|
10
|
+
|
|
11
|
+
---
|
|
12
|
+
|
|
1
13
|
# v2.10.23 (Thu May 12 2022)
|
|
2
14
|
|
|
3
15
|
#### ⚠️ Pushed to `master`
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { ITableProps, IRowProps, ICellProps, IHeaderCellProps, ISortableCellProps } from "@zendeskgarden/react-tables";
|
|
2
|
-
import { SIZE, SORT } from "@zendeskgarden/react-tables/dist/typings/styled";
|
|
3
2
|
import { IconArgs } from "../icons/_types";
|
|
3
|
+
declare type SIZE = "small" | "medium" | "large";
|
|
4
4
|
export interface TableProps extends ITableProps {
|
|
5
5
|
/** Sets the table size */
|
|
6
6
|
size?: SIZE;
|
|
@@ -63,8 +63,6 @@ export interface HeadArgs extends ICellProps {
|
|
|
63
63
|
width?: string | number;
|
|
64
64
|
}
|
|
65
65
|
export interface SortableCellArgs extends ISortableCellProps {
|
|
66
|
-
/** Sets the sort order */
|
|
67
|
-
sort?: SORT;
|
|
68
66
|
/** Sets the width of the cell */
|
|
69
67
|
width?: string | number;
|
|
70
68
|
/** Passes props to the cell */
|
|
@@ -81,3 +79,4 @@ export interface Group {
|
|
|
81
79
|
groupIcon: IconArgs["type"];
|
|
82
80
|
items: Array<IRow>;
|
|
83
81
|
}
|
|
82
|
+
export {};
|