@synerise/ds-table 1.9.0 → 1.9.2

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,14 @@
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.9.2](https://github.com/synerise/synerise-design/compare/@synerise/ds-table@1.9.1...@synerise/ds-table@1.9.2) (2026-02-10)
7
+
8
+ **Note:** Version bump only for package @synerise/ds-table
9
+
10
+ ## [1.9.1](https://github.com/synerise/synerise-design/compare/@synerise/ds-table@1.9.0...@synerise/ds-table@1.9.1) (2026-02-06)
11
+
12
+ **Note:** Version bump only for package @synerise/ds-table
13
+
6
14
  # [1.9.0](https://github.com/synerise/synerise-design/compare/@synerise/ds-table@1.8.5...@synerise/ds-table@1.9.0) (2026-02-05)
7
15
 
8
16
  ### Features
@@ -1,4 +1,4 @@
1
- import { partial } from 'lodash';
1
+ import partial from 'lodash.partial';
2
2
  import React, { useState } from 'react';
3
3
  import { DropdownMenu } from '@synerise/ds-dropdown';
4
4
  import Icon, { Close2M, SortAscendingM, SortAzM, SortDescendingM, SortZaM } from '@synerise/ds-icon';
@@ -1,5 +1,6 @@
1
1
  function _extends() { return _extends = Object.assign ? Object.assign.bind() : function (n) { for (var e = 1; e < arguments.length; e++) { var t = arguments[e]; for (var r in t) ({}).hasOwnProperty.call(t, r) && (n[r] = t[r]); } return n; }, _extends.apply(null, arguments); }
2
- import { groupBy, merge } from 'lodash';
2
+ import groupBy from 'lodash.groupby';
3
+ import merge from 'lodash.merge';
3
4
  import React from 'react';
4
5
  export var toSortOrder = function toSortOrder(value) {
5
6
  if (value === 'descend' || value === 'ascend') {
@@ -2,7 +2,8 @@ var _excluded = ["children"];
2
2
  function _objectWithoutPropertiesLoose(r, e) { if (null == r) return {}; var t = {}; for (var n in r) if ({}.hasOwnProperty.call(r, n)) { if (-1 !== e.indexOf(n)) continue; t[n] = r[n]; } return t; }
3
3
  function _extends() { return _extends = Object.assign ? Object.assign.bind() : function (n) { for (var e = 1; e < arguments.length; e++) { var t = arguments[e]; for (var r in t) ({}).hasOwnProperty.call(t, r) && (n[r] = t[r]); } return n; }, _extends.apply(null, arguments); }
4
4
  import Table from 'antd/lib/table';
5
- import { compact, isEqual } from 'lodash';
5
+ import compact from 'lodash.compact';
6
+ import isEqual from 'lodash.isequal';
6
7
  import React, { useCallback, useEffect, useMemo } from 'react';
7
8
  import { FormattedMessage } from 'react-intl';
8
9
  import Result from '@synerise/ds-result';
@@ -2,7 +2,7 @@ var _excluded = ["rows"];
2
2
  function _objectWithoutPropertiesLoose(r, e) { if (null == r) return {}; var t = {}; for (var n in r) if ({}.hasOwnProperty.call(r, n)) { if (-1 !== e.indexOf(n)) continue; t[n] = r[n]; } return t; }
3
3
  function _extends() { return _extends = Object.assign ? Object.assign.bind() : function (n) { for (var e = 1; e < arguments.length; e++) { var t = arguments[e]; for (var r in t) ({}).hasOwnProperty.call(t, r) && (n[r] = t[r]); } return n; }, _extends.apply(null, arguments); }
4
4
  import Table from 'antd/lib/table';
5
- import { flow } from 'lodash';
5
+ import flow from 'lodash.flow';
6
6
  import React from 'react';
7
7
  import { columnWithSortButtons } from '../ColumnSortMenu/columnWithSortButtons';
8
8
  import { getColumnsWithActiveSorting, sortDataSourceRows } from '../ColumnSortMenu/groupedColumnsSort';
@@ -2,7 +2,7 @@ var _excluded = ["style"];
2
2
  function _objectWithoutPropertiesLoose(r, e) { if (null == r) return {}; var t = {}; for (var n in r) if ({}.hasOwnProperty.call(r, n)) { if (-1 !== e.indexOf(n)) continue; t[n] = r[n]; } return t; }
3
3
  function _extends() { return _extends = Object.assign ? Object.assign.bind() : function (n) { for (var e = 1; e < arguments.length; e++) { var t = arguments[e]; for (var r in t) ({}).hasOwnProperty.call(t, r) && (n[r] = t[r]); } return n; }, _extends.apply(null, arguments); }
4
4
  import classnames from 'classnames';
5
- import { compact } from 'lodash';
5
+ import compact from 'lodash.compact';
6
6
  import ResizeObserver from 'rc-resize-observer';
7
7
  import React, { forwardRef, useCallback, useEffect, useImperativeHandle, useMemo, useRef, useState } from 'react';
8
8
  import { useIntl } from 'react-intl';
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@synerise/ds-table",
3
- "version": "1.9.0",
3
+ "version": "1.9.2",
4
4
  "description": "Table UI Component for the Synerise Design System",
5
5
  "license": "ISC",
6
6
  "repository": "synerise/synerise-design",
@@ -35,36 +35,41 @@
35
35
  ],
36
36
  "types": "dist/index.d.ts",
37
37
  "dependencies": {
38
- "@synerise/ds-alert": "^1.1.35",
39
- "@synerise/ds-badge": "^1.0.34",
40
- "@synerise/ds-button": "^1.5.8",
41
- "@synerise/ds-button-group": "^1.1.33",
42
- "@synerise/ds-checkbox": "^1.2.10",
43
- "@synerise/ds-copy-icon": "^1.1.0",
44
- "@synerise/ds-dropdown": "^1.2.0",
38
+ "@synerise/ds-alert": "^1.1.37",
39
+ "@synerise/ds-badge": "^1.0.36",
40
+ "@synerise/ds-button": "^1.5.10",
41
+ "@synerise/ds-button-group": "^1.1.35",
42
+ "@synerise/ds-checkbox": "^1.2.12",
43
+ "@synerise/ds-copy-icon": "^1.1.2",
44
+ "@synerise/ds-dropdown": "^1.2.2",
45
45
  "@synerise/ds-flag": "^1.0.7",
46
- "@synerise/ds-icon": "^1.11.1",
47
- "@synerise/ds-input": "^1.6.0",
48
- "@synerise/ds-input-number": "^1.2.25",
49
- "@synerise/ds-list-item": "^1.4.0",
46
+ "@synerise/ds-icon": "^1.12.0",
47
+ "@synerise/ds-input": "^1.6.2",
48
+ "@synerise/ds-input-number": "^1.2.27",
49
+ "@synerise/ds-list-item": "^1.4.2",
50
50
  "@synerise/ds-loader": "^1.0.12",
51
- "@synerise/ds-menu": "^1.4.3",
52
- "@synerise/ds-modal": "^1.3.1",
53
- "@synerise/ds-pagination": "^1.0.43",
54
- "@synerise/ds-result": "^1.0.39",
55
- "@synerise/ds-scrollbar": "^1.2.8",
56
- "@synerise/ds-search": "^1.5.0",
57
- "@synerise/ds-select": "^1.3.10",
58
- "@synerise/ds-skeleton": "^1.0.34",
59
- "@synerise/ds-status": "^1.3.8",
60
- "@synerise/ds-tag": "^1.4.8",
61
- "@synerise/ds-tags": "^1.5.15",
62
- "@synerise/ds-tooltip": "^1.4.0",
63
- "@synerise/ds-typography": "^1.1.3",
51
+ "@synerise/ds-menu": "^1.4.5",
52
+ "@synerise/ds-modal": "^1.3.3",
53
+ "@synerise/ds-pagination": "^1.0.45",
54
+ "@synerise/ds-result": "^1.0.41",
55
+ "@synerise/ds-scrollbar": "^1.2.10",
56
+ "@synerise/ds-search": "^1.5.2",
57
+ "@synerise/ds-select": "^1.3.12",
58
+ "@synerise/ds-skeleton": "^1.0.36",
59
+ "@synerise/ds-status": "^1.3.10",
60
+ "@synerise/ds-tag": "^1.4.10",
61
+ "@synerise/ds-tags": "^1.5.17",
62
+ "@synerise/ds-tooltip": "^1.4.2",
63
+ "@synerise/ds-typography": "^1.1.5",
64
64
  "@synerise/ds-utils": "^1.6.0",
65
65
  "@types/react-window": "^1.8.8",
66
66
  "classnames": "^2.5.1",
67
- "lodash": "^4.17.21",
67
+ "lodash.compact": "^3.0.1",
68
+ "lodash.flow": "^3.5.0",
69
+ "lodash.groupby": "^4.6.0",
70
+ "lodash.isequal": "^4.5.0",
71
+ "lodash.merge": "^4.6.2",
72
+ "lodash.partial": "^4.2.1",
68
73
  "ramda": "0.27.0",
69
74
  "rc-resize-observer": "^1.2.0",
70
75
  "rc-table": "~7.26.0",
@@ -73,7 +78,12 @@
73
78
  "uuid": "^8.3.2"
74
79
  },
75
80
  "devDependencies": {
76
- "@types/lodash": "^4.17.20",
81
+ "@types/lodash.compact": "^3.0.9",
82
+ "@types/lodash.flow": "^3.5.9",
83
+ "@types/lodash.groupby": "^4.6.9",
84
+ "@types/lodash.isequal": "^4.5.8",
85
+ "@types/lodash.merge": "^4.6.9",
86
+ "@types/lodash.partial": "^4.2.9",
77
87
  "@types/node": "^22"
78
88
  },
79
89
  "peerDependencies": {
@@ -84,5 +94,5 @@
84
94
  "react-intl": ">=3.12.0 <= 6.8",
85
95
  "styled-components": "^5.3.3"
86
96
  },
87
- "gitHead": "ac8decd9736940735bf05198b24b3eeeb5900b18"
97
+ "gitHead": "4a93898aa311430f21ea9604d03438eaac780027"
88
98
  }