@synerise/ds-table 1.10.6 → 1.10.8
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 +10 -0
- package/dist/Cell/FlagLabel/FlagLabelCell.types.d.ts +1 -1
- package/dist/Cell/LabelsWithShowMore/Modal/Modal.js +1 -1
- package/dist/Cell/Star/StarCell.js +1 -1
- package/dist/Cell/StatusLabel/StatusLabel.types.d.ts +1 -1
- package/dist/DefaultTable/DefaultTable.js +1 -1
- package/dist/GroupTable/GroupTable.js +1 -1
- package/dist/GroupTable/GroupTable.types.d.ts +1 -1
- package/dist/Table.types.d.ts +1 -1
- package/package.json +38 -29
package/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,16 @@
|
|
|
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
|
+
## [1.10.8](https://github.com/synerise/synerise-design/compare/@synerise/ds-table@1.10.7...@synerise/ds-table@1.10.8) (2026-05-04)
|
|
7
|
+
|
|
8
|
+
### Bug Fixes
|
|
9
|
+
|
|
10
|
+
- add exports field to all component packages for correct ESM detection ([6eccfde](https://github.com/synerise/synerise-design/commit/6eccfde8f2dd73c59860793231fbd7bcd61813b4))
|
|
11
|
+
|
|
12
|
+
## [1.10.7](https://github.com/synerise/synerise-design/compare/@synerise/ds-table@1.10.6...@synerise/ds-table@1.10.7) (2026-04-29)
|
|
13
|
+
|
|
14
|
+
**Note:** Version bump only for package @synerise/ds-table
|
|
15
|
+
|
|
6
16
|
## [1.10.6](https://github.com/synerise/synerise-design/compare/@synerise/ds-table@1.10.5...@synerise/ds-table@1.10.6) (2026-04-28)
|
|
7
17
|
|
|
8
18
|
**Note:** Version bump only for package @synerise/ds-table
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { jsx } from "react/jsx-runtime";
|
|
2
2
|
import { useState, useMemo } from "react";
|
|
3
3
|
import Modal from "@synerise/ds-modal";
|
|
4
|
-
import SearchInput from "@synerise/ds-search
|
|
4
|
+
import { SearchInput } from "@synerise/ds-search";
|
|
5
5
|
import VirtualTable from "../../../VirtualTable/VirtualTable.js";
|
|
6
6
|
const DetailsModal = ({
|
|
7
7
|
visible,
|
|
@@ -3,7 +3,7 @@ import { useMemo } from "react";
|
|
|
3
3
|
import { withTheme } from "styled-components";
|
|
4
4
|
import { useTheme } from "@synerise/ds-core";
|
|
5
5
|
import Icon, { StarFillM, StarM } from "@synerise/ds-icon";
|
|
6
|
-
import Tooltip from "@synerise/ds-tooltip
|
|
6
|
+
import Tooltip from "@synerise/ds-tooltip";
|
|
7
7
|
import { StarCell as StarCell$1, StarredIcon } from "./StarCell.styles.js";
|
|
8
8
|
const StarCell = ({
|
|
9
9
|
children,
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { ReactNode } from 'react';
|
|
2
|
-
import { Color, Status } from '@synerise/ds-badge
|
|
2
|
+
import { BadgeColor as Color, BadgeStatus as Status } from '@synerise/ds-badge';
|
|
3
3
|
import { WithHTMLAttributes } from '@synerise/ds-utils';
|
|
4
4
|
export type StatusLabelProps = WithHTMLAttributes<HTMLDivElement, {
|
|
5
5
|
status?: Status;
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { ColumnsType } from 'antd
|
|
1
|
+
import { TableColumnsType as ColumnsType } from 'antd';
|
|
2
2
|
export type GroupByType = 'value' | 'ranges' | 'interval' | string | undefined;
|
|
3
3
|
export type SortOrderType = 'ascend' | 'descend' | boolean;
|
|
4
4
|
export type GroupColumnsType<T> = ColumnsType<T> & {
|
package/dist/Table.types.d.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { ColumnType, TableProps } from 'antd
|
|
1
|
+
import { TableColumnType as ColumnType, TableProps } from 'antd';
|
|
2
2
|
import { ColumnTitleProps, TableLocale, TableRowSelection } from 'antd/lib/table/interface';
|
|
3
3
|
import { Key, ReactNode, Ref } from 'react';
|
|
4
4
|
import { TooltipProps } from '@synerise/ds-tooltip';
|
package/package.json
CHANGED
|
@@ -1,10 +1,19 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@synerise/ds-table",
|
|
3
|
-
"version": "1.10.
|
|
3
|
+
"version": "1.10.8",
|
|
4
4
|
"description": "Table UI Component for the Synerise Design System",
|
|
5
5
|
"license": "ISC",
|
|
6
6
|
"repository": "synerise/synerise-design",
|
|
7
7
|
"main": "dist/index.js",
|
|
8
|
+
"exports": {
|
|
9
|
+
".": {
|
|
10
|
+
"types": "./dist/index.d.ts",
|
|
11
|
+
"import": "./dist/index.js",
|
|
12
|
+
"default": "./dist/index.js"
|
|
13
|
+
},
|
|
14
|
+
"./dist/*.js": "./dist/*.js",
|
|
15
|
+
"./dist/*": "./dist/*.js"
|
|
16
|
+
},
|
|
8
17
|
"files": [
|
|
9
18
|
"/dist",
|
|
10
19
|
"CHANGELOG.md",
|
|
@@ -32,33 +41,33 @@
|
|
|
32
41
|
],
|
|
33
42
|
"types": "dist/index.d.ts",
|
|
34
43
|
"dependencies": {
|
|
35
|
-
"@synerise/ds-alert": "^1.1.
|
|
36
|
-
"@synerise/ds-badge": "^1.0.
|
|
37
|
-
"@synerise/ds-button": "^1.5.
|
|
38
|
-
"@synerise/ds-button-group": "^1.1.
|
|
39
|
-
"@synerise/ds-checkbox": "^1.2.
|
|
40
|
-
"@synerise/ds-copy-icon": "^1.2.
|
|
41
|
-
"@synerise/ds-dropdown": "^1.3.
|
|
42
|
-
"@synerise/ds-flag": "^1.0.
|
|
43
|
-
"@synerise/ds-icon": "^1.17.
|
|
44
|
-
"@synerise/ds-input": "^1.7.
|
|
45
|
-
"@synerise/ds-input-number": "^1.2.
|
|
46
|
-
"@synerise/ds-list-item": "^1.4.
|
|
47
|
-
"@synerise/ds-loader": "^1.0.
|
|
48
|
-
"@synerise/ds-menu": "^1.4.
|
|
49
|
-
"@synerise/ds-modal": "^1.4.
|
|
50
|
-
"@synerise/ds-pagination": "^1.0.
|
|
51
|
-
"@synerise/ds-result": "^1.0.
|
|
52
|
-
"@synerise/ds-scrollbar": "^1.3.
|
|
53
|
-
"@synerise/ds-search": "^1.5.
|
|
54
|
-
"@synerise/ds-select": "^1.3.
|
|
55
|
-
"@synerise/ds-skeleton": "^1.0.
|
|
56
|
-
"@synerise/ds-status": "^1.3.
|
|
57
|
-
"@synerise/ds-tag": "^1.4.
|
|
58
|
-
"@synerise/ds-tags": "^1.5.
|
|
59
|
-
"@synerise/ds-tooltip": "^1.4.
|
|
60
|
-
"@synerise/ds-typography": "^1.1.
|
|
61
|
-
"@synerise/ds-utils": "^1.8.
|
|
44
|
+
"@synerise/ds-alert": "^1.1.53",
|
|
45
|
+
"@synerise/ds-badge": "^1.0.52",
|
|
46
|
+
"@synerise/ds-button": "^1.5.26",
|
|
47
|
+
"@synerise/ds-button-group": "^1.1.51",
|
|
48
|
+
"@synerise/ds-checkbox": "^1.2.29",
|
|
49
|
+
"@synerise/ds-copy-icon": "^1.2.10",
|
|
50
|
+
"@synerise/ds-dropdown": "^1.3.11",
|
|
51
|
+
"@synerise/ds-flag": "^1.0.11",
|
|
52
|
+
"@synerise/ds-icon": "^1.17.3",
|
|
53
|
+
"@synerise/ds-input": "^1.7.6",
|
|
54
|
+
"@synerise/ds-input-number": "^1.2.43",
|
|
55
|
+
"@synerise/ds-list-item": "^1.4.19",
|
|
56
|
+
"@synerise/ds-loader": "^1.0.16",
|
|
57
|
+
"@synerise/ds-menu": "^1.4.21",
|
|
58
|
+
"@synerise/ds-modal": "^1.4.10",
|
|
59
|
+
"@synerise/ds-pagination": "^1.0.61",
|
|
60
|
+
"@synerise/ds-result": "^1.0.57",
|
|
61
|
+
"@synerise/ds-scrollbar": "^1.3.4",
|
|
62
|
+
"@synerise/ds-search": "^1.5.20",
|
|
63
|
+
"@synerise/ds-select": "^1.3.28",
|
|
64
|
+
"@synerise/ds-skeleton": "^1.0.53",
|
|
65
|
+
"@synerise/ds-status": "^1.3.26",
|
|
66
|
+
"@synerise/ds-tag": "^1.4.26",
|
|
67
|
+
"@synerise/ds-tags": "^1.5.37",
|
|
68
|
+
"@synerise/ds-tooltip": "^1.4.18",
|
|
69
|
+
"@synerise/ds-typography": "^1.1.21",
|
|
70
|
+
"@synerise/ds-utils": "^1.8.1",
|
|
62
71
|
"@types/react-window": "^1.8.8",
|
|
63
72
|
"classnames": "^2.5.1",
|
|
64
73
|
"lodash.compact": "^3.0.1",
|
|
@@ -92,5 +101,5 @@
|
|
|
92
101
|
"styled-components": "^5.3.3",
|
|
93
102
|
"vitest": "4"
|
|
94
103
|
},
|
|
95
|
-
"gitHead": "
|
|
104
|
+
"gitHead": "c5eee882509cbeb4544cb45939620881b829d4d9"
|
|
96
105
|
}
|