@synerise/ds-table 1.9.13 → 1.10.0
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 +14 -0
- package/dist/Table.d.ts +6 -1
- package/dist/Table.types.d.ts +1 -1
- package/package.json +33 -35
package/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,20 @@
|
|
|
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.0](https://github.com/synerise/synerise-design/compare/@synerise/ds-table@1.9.14...@synerise/ds-table@1.10.0) (2026-04-10)
|
|
7
|
+
|
|
8
|
+
### Bug Fixes
|
|
9
|
+
|
|
10
|
+
- **table:** types regression ([61762f1](https://github.com/synerise/synerise-design/commit/61762f1c6c2451200730249e6edeb2b7fa75e1e4))
|
|
11
|
+
|
|
12
|
+
### Features
|
|
13
|
+
|
|
14
|
+
- **table-new:** initial commit ([a524cb9](https://github.com/synerise/synerise-design/commit/a524cb9cfa464921edb9531ccf002dcc25a3b105))
|
|
15
|
+
|
|
16
|
+
## [1.9.14](https://github.com/synerise/synerise-design/compare/@synerise/ds-table@1.9.13...@synerise/ds-table@1.9.14) (2026-04-03)
|
|
17
|
+
|
|
18
|
+
**Note:** Version bump only for package @synerise/ds-table
|
|
19
|
+
|
|
6
20
|
## [1.9.13](https://github.com/synerise/synerise-design/compare/@synerise/ds-table@1.9.12...@synerise/ds-table@1.9.13) (2026-04-01)
|
|
7
21
|
|
|
8
22
|
**Note:** Version bump only for package @synerise/ds-table
|
package/dist/Table.d.ts
CHANGED
|
@@ -1,8 +1,13 @@
|
|
|
1
1
|
import { default as React } from 'react';
|
|
2
2
|
import { DSTableProps } from './Table.types';
|
|
3
|
+
import { SELECTION_ALL, SELECTION_INVERT } from './constants/Table.constants';
|
|
3
4
|
declare const DSTable: {
|
|
4
5
|
<T extends object>(props: DSTableProps<T>): React.JSX.Element;
|
|
5
6
|
SELECTION_ALL: string;
|
|
6
7
|
SELECTION_INVERT: string;
|
|
7
8
|
};
|
|
8
|
-
|
|
9
|
+
declare const _default: typeof DSTable & {
|
|
10
|
+
readonly SELECTION_ALL: typeof SELECTION_ALL;
|
|
11
|
+
readonly SELECTION_INVERT: typeof SELECTION_INVERT;
|
|
12
|
+
};
|
|
13
|
+
export default _default;
|
package/dist/Table.types.d.ts
CHANGED
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
import { ColumnType, TableProps } from 'antd/lib/table';
|
|
2
2
|
import { ColumnTitleProps, TableLocale, TableRowSelection } from 'antd/lib/table/interface';
|
|
3
|
-
import { SELECTION_ALL, SELECTION_INVERT } from 'constants/Table.constants';
|
|
4
3
|
import { Key, ReactNode, Ref } from 'react';
|
|
5
4
|
import { TooltipProps } from '@synerise/ds-tooltip';
|
|
6
5
|
import { LiteralStringUnion } from '@synerise/ds-utils';
|
|
7
6
|
import { GroupType } from './GroupTable/GroupTable.types';
|
|
7
|
+
import { SELECTION_ALL, SELECTION_INVERT } from './constants/Table.constants';
|
|
8
8
|
export type RowStar<T> = {
|
|
9
9
|
className?: string;
|
|
10
10
|
starredRowKeys: string[];
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@synerise/ds-table",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.10.0",
|
|
4
4
|
"description": "Table UI Component for the Synerise Design System",
|
|
5
5
|
"license": "ISC",
|
|
6
6
|
"repository": "synerise/synerise-design",
|
|
@@ -17,14 +17,11 @@
|
|
|
17
17
|
},
|
|
18
18
|
"scripts": {
|
|
19
19
|
"build": "vite build",
|
|
20
|
-
"build:css": "node ../../../scripts/style/less.js",
|
|
21
|
-
"build:js": "babel --delete-dir-on-start --root-mode upward src --out-dir dist --extensions '.js,.ts,.tsx'",
|
|
22
20
|
"build:watch": "vite build --watch",
|
|
23
|
-
"defs": "tsc --declaration --outDir dist/ --emitDeclarationOnly",
|
|
24
21
|
"pack:ci": "pnpm pack --pack-destination ../../storybook/storybook-static/static",
|
|
25
22
|
"prepublish": "pnpm run build",
|
|
26
|
-
"test": "
|
|
27
|
-
"test:watch": "
|
|
23
|
+
"test": "vitest run",
|
|
24
|
+
"test:watch": "vitest",
|
|
28
25
|
"types": "tsc --noEmit",
|
|
29
26
|
"check:circular-dependencies": "madge --circular --extensions ts,tsx,js,jsx --ts-config tsconfig.json src/ --exclude '/dist/'",
|
|
30
27
|
"upgrade:ds": "ncu -f \"@synerise/ds-*\" -u"
|
|
@@ -35,33 +32,33 @@
|
|
|
35
32
|
],
|
|
36
33
|
"types": "dist/index.d.ts",
|
|
37
34
|
"dependencies": {
|
|
38
|
-
"@synerise/ds-alert": "^1.1.
|
|
39
|
-
"@synerise/ds-badge": "^1.0.
|
|
40
|
-
"@synerise/ds-button": "^1.5.
|
|
41
|
-
"@synerise/ds-button-group": "^1.1.
|
|
42
|
-
"@synerise/ds-checkbox": "^1.2.
|
|
43
|
-
"@synerise/ds-copy-icon": "^1.2.
|
|
44
|
-
"@synerise/ds-dropdown": "^1.3.
|
|
45
|
-
"@synerise/ds-flag": "^1.0.
|
|
46
|
-
"@synerise/ds-icon": "^1.15.
|
|
47
|
-
"@synerise/ds-input": "^1.
|
|
48
|
-
"@synerise/ds-input-number": "^1.2.
|
|
49
|
-
"@synerise/ds-list-item": "^1.4.
|
|
50
|
-
"@synerise/ds-loader": "^1.0.
|
|
51
|
-
"@synerise/ds-menu": "^1.4.
|
|
52
|
-
"@synerise/ds-modal": "^1.4.
|
|
53
|
-
"@synerise/ds-pagination": "^1.0.
|
|
54
|
-
"@synerise/ds-result": "^1.0.
|
|
55
|
-
"@synerise/ds-scrollbar": "^1.2.
|
|
56
|
-
"@synerise/ds-search": "^1.5.
|
|
57
|
-
"@synerise/ds-select": "^1.3.
|
|
58
|
-
"@synerise/ds-skeleton": "^1.0.
|
|
59
|
-
"@synerise/ds-status": "^1.3.
|
|
60
|
-
"@synerise/ds-tag": "^1.4.
|
|
61
|
-
"@synerise/ds-tags": "^1.5.
|
|
62
|
-
"@synerise/ds-tooltip": "^1.4.
|
|
63
|
-
"@synerise/ds-typography": "^1.1.
|
|
64
|
-
"@synerise/ds-utils": "^1.
|
|
35
|
+
"@synerise/ds-alert": "^1.1.47",
|
|
36
|
+
"@synerise/ds-badge": "^1.0.46",
|
|
37
|
+
"@synerise/ds-button": "^1.5.20",
|
|
38
|
+
"@synerise/ds-button-group": "^1.1.45",
|
|
39
|
+
"@synerise/ds-checkbox": "^1.2.23",
|
|
40
|
+
"@synerise/ds-copy-icon": "^1.2.4",
|
|
41
|
+
"@synerise/ds-dropdown": "^1.3.4",
|
|
42
|
+
"@synerise/ds-flag": "^1.0.10",
|
|
43
|
+
"@synerise/ds-icon": "^1.15.3",
|
|
44
|
+
"@synerise/ds-input": "^1.7.0",
|
|
45
|
+
"@synerise/ds-input-number": "^1.2.37",
|
|
46
|
+
"@synerise/ds-list-item": "^1.4.12",
|
|
47
|
+
"@synerise/ds-loader": "^1.0.15",
|
|
48
|
+
"@synerise/ds-menu": "^1.4.15",
|
|
49
|
+
"@synerise/ds-modal": "^1.4.3",
|
|
50
|
+
"@synerise/ds-pagination": "^1.0.55",
|
|
51
|
+
"@synerise/ds-result": "^1.0.51",
|
|
52
|
+
"@synerise/ds-scrollbar": "^1.2.19",
|
|
53
|
+
"@synerise/ds-search": "^1.5.12",
|
|
54
|
+
"@synerise/ds-select": "^1.3.22",
|
|
55
|
+
"@synerise/ds-skeleton": "^1.0.47",
|
|
56
|
+
"@synerise/ds-status": "^1.3.20",
|
|
57
|
+
"@synerise/ds-tag": "^1.4.20",
|
|
58
|
+
"@synerise/ds-tags": "^1.5.30",
|
|
59
|
+
"@synerise/ds-tooltip": "^1.4.12",
|
|
60
|
+
"@synerise/ds-typography": "^1.1.15",
|
|
61
|
+
"@synerise/ds-utils": "^1.8.0",
|
|
65
62
|
"@types/react-window": "^1.8.8",
|
|
66
63
|
"classnames": "^2.5.1",
|
|
67
64
|
"lodash.compact": "^3.0.1",
|
|
@@ -92,7 +89,8 @@
|
|
|
92
89
|
"copy-to-clipboard": "^3.3.1",
|
|
93
90
|
"react": ">=16.9.0 <= 18.3.1",
|
|
94
91
|
"react-intl": ">=3.12.0 <= 6.8",
|
|
95
|
-
"styled-components": "^5.3.3"
|
|
92
|
+
"styled-components": "^5.3.3",
|
|
93
|
+
"vitest": "4"
|
|
96
94
|
},
|
|
97
|
-
"gitHead": "
|
|
95
|
+
"gitHead": "ce3c6d75efe8573a2b274853636f959b75a6cd32"
|
|
98
96
|
}
|