@synerise/ds-table 0.46.16 → 0.46.18
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
CHANGED
|
@@ -3,6 +3,26 @@
|
|
|
3
3
|
All notable changes to this project will be documented in this file.
|
|
4
4
|
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
|
5
5
|
|
|
6
|
+
## [0.46.18](https://github.com/synerise/synerise-design/compare/@synerise/ds-table@0.46.17...@synerise/ds-table@0.46.18) (2023-07-04)
|
|
7
|
+
|
|
8
|
+
**Note:** Version bump only for package @synerise/ds-table
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
## [0.46.17](https://github.com/synerise/synerise-design/compare/@synerise/ds-table@0.46.16...@synerise/ds-table@0.46.17) (2023-06-28)
|
|
15
|
+
|
|
16
|
+
|
|
17
|
+
### Bug Fixes
|
|
18
|
+
|
|
19
|
+
* **table:** make IconTooltipCell props optional ([7f850e7](https://github.com/synerise/synerise-design/commit/7f850e7397181448451e5600334a862aeaa8b0b3))
|
|
20
|
+
* **table:** make prop optional ([578d6de](https://github.com/synerise/synerise-design/commit/578d6de6419dcc20c2e5b3ae10ccafc32e33b569))
|
|
21
|
+
|
|
22
|
+
|
|
23
|
+
|
|
24
|
+
|
|
25
|
+
|
|
6
26
|
## [0.46.16](https://github.com/synerise/synerise-design/compare/@synerise/ds-table@0.46.15...@synerise/ds-table@0.46.16) (2023-06-14)
|
|
7
27
|
|
|
8
28
|
**Note:** Version bump only for package @synerise/ds-table
|
|
@@ -2,8 +2,8 @@
|
|
|
2
2
|
import { IconProps } from '@synerise/ds-icon';
|
|
3
3
|
import TooltipExtendedProps from '@synerise/ds-tooltip/dist/Tooltip.types';
|
|
4
4
|
export interface Props {
|
|
5
|
-
label
|
|
6
|
-
icon
|
|
7
|
-
tooltipIcon
|
|
5
|
+
label?: React.ReactNode;
|
|
6
|
+
icon?: IconProps;
|
|
7
|
+
tooltipIcon?: IconProps;
|
|
8
8
|
tooltip?: TooltipExtendedProps;
|
|
9
9
|
}
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import * as React from 'react';
|
|
2
|
-
import { ThemeProps } from '@synerise/ds-core
|
|
2
|
+
import { ThemeProps } from '@synerise/ds-core';
|
|
3
3
|
import { ColumnSortOrder } from './useSortState';
|
|
4
4
|
export declare const CheckIcon: React.ForwardRefExoticComponent<Pick<{
|
|
5
5
|
isActive: boolean;
|
|
@@ -5,7 +5,7 @@ import '@synerise/ds-core/dist/js/style';
|
|
|
5
5
|
import classNames from 'classnames';
|
|
6
6
|
import Button from '@synerise/ds-button';
|
|
7
7
|
import Icon, { ChildRowLeftDownM } from '@synerise/ds-icon';
|
|
8
|
-
import theme from '@synerise/ds-core
|
|
8
|
+
import { theme } from '@synerise/ds-core';
|
|
9
9
|
import { v4 as uuid } from 'uuid';
|
|
10
10
|
import DSTable from '../Table';
|
|
11
11
|
import * as S from './TreeTable.styles';
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@synerise/ds-table",
|
|
3
|
-
"version": "0.46.
|
|
3
|
+
"version": "0.46.18",
|
|
4
4
|
"description": "Table UI Component for the Synerise Design System",
|
|
5
5
|
"license": "ISC",
|
|
6
6
|
"repository": "synerise/synerise-design",
|
|
@@ -32,27 +32,27 @@
|
|
|
32
32
|
],
|
|
33
33
|
"types": "dist/index.d.ts",
|
|
34
34
|
"dependencies": {
|
|
35
|
-
"@synerise/ds-alert": "^0.7.
|
|
36
|
-
"@synerise/ds-button": "^0.17.
|
|
37
|
-
"@synerise/ds-button-group": "^0.6.
|
|
38
|
-
"@synerise/ds-checkbox": "^0.11.
|
|
39
|
-
"@synerise/ds-column-manager": "^0.10.
|
|
40
|
-
"@synerise/ds-data-format": "^0.3.
|
|
41
|
-
"@synerise/ds-dropdown": "^0.17.
|
|
35
|
+
"@synerise/ds-alert": "^0.7.35",
|
|
36
|
+
"@synerise/ds-button": "^0.17.19",
|
|
37
|
+
"@synerise/ds-button-group": "^0.6.26",
|
|
38
|
+
"@synerise/ds-checkbox": "^0.11.36",
|
|
39
|
+
"@synerise/ds-column-manager": "^0.10.72",
|
|
40
|
+
"@synerise/ds-data-format": "^0.3.5",
|
|
41
|
+
"@synerise/ds-dropdown": "^0.17.68",
|
|
42
42
|
"@synerise/ds-flag": "^0.4.0",
|
|
43
|
-
"@synerise/ds-icon": "^0.
|
|
44
|
-
"@synerise/ds-input": "^0.18.
|
|
45
|
-
"@synerise/ds-loader": "^0.2.
|
|
46
|
-
"@synerise/ds-menu": "^0.17.
|
|
47
|
-
"@synerise/ds-pagination": "^0.7.
|
|
48
|
-
"@synerise/ds-search": "^0.8.
|
|
49
|
-
"@synerise/ds-search-bar": "^0.6.
|
|
50
|
-
"@synerise/ds-select": "^0.15.
|
|
51
|
-
"@synerise/ds-skeleton": "^0.3.
|
|
52
|
-
"@synerise/ds-status": "^0.5.
|
|
53
|
-
"@synerise/ds-tags": "^0.
|
|
54
|
-
"@synerise/ds-tooltip": "^0.13.
|
|
55
|
-
"@synerise/ds-typography": "^0.12.
|
|
43
|
+
"@synerise/ds-icon": "^0.57.0",
|
|
44
|
+
"@synerise/ds-input": "^0.18.44",
|
|
45
|
+
"@synerise/ds-loader": "^0.2.37",
|
|
46
|
+
"@synerise/ds-menu": "^0.17.13",
|
|
47
|
+
"@synerise/ds-pagination": "^0.7.26",
|
|
48
|
+
"@synerise/ds-search": "^0.8.55",
|
|
49
|
+
"@synerise/ds-search-bar": "^0.6.34",
|
|
50
|
+
"@synerise/ds-select": "^0.15.9",
|
|
51
|
+
"@synerise/ds-skeleton": "^0.3.1",
|
|
52
|
+
"@synerise/ds-status": "^0.5.70",
|
|
53
|
+
"@synerise/ds-tags": "^0.8.0",
|
|
54
|
+
"@synerise/ds-tooltip": "^0.13.7",
|
|
55
|
+
"@synerise/ds-typography": "^0.12.8",
|
|
56
56
|
"@synerise/ds-utils": "^0.19.0",
|
|
57
57
|
"@types/react-window": "^1.8.5",
|
|
58
58
|
"classnames": "^2.2.6",
|
|
@@ -67,5 +67,5 @@
|
|
|
67
67
|
"antd": "^4",
|
|
68
68
|
"react": ">=16.9.0 < 17.0.0"
|
|
69
69
|
},
|
|
70
|
-
"gitHead": "
|
|
70
|
+
"gitHead": "e8a06c902ef96e767576df5377b8965e1034d6c0"
|
|
71
71
|
}
|