@synerise/ds-date-range-picker 1.4.9 → 1.5.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 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.5.0](https://github.com/Synerise/synerise-design/compare/@synerise/ds-date-range-picker@1.4.10...@synerise/ds-date-range-picker@1.5.0) (2026-01-22)
7
+
8
+ ### Features
9
+
10
+ - **slider:** migrated from antd to tanstack ranger lib ([0c287c1](https://github.com/Synerise/synerise-design/commit/0c287c135d91180a143221bc273821828ad7efdc))
11
+
12
+ ## [1.4.10](https://github.com/Synerise/synerise-design/compare/@synerise/ds-date-range-picker@1.4.9...@synerise/ds-date-range-picker@1.4.10) (2026-01-21)
13
+
14
+ **Note:** Version bump only for package @synerise/ds-date-range-picker
15
+
6
16
  ## [1.4.9](https://github.com/Synerise/synerise-design/compare/@synerise/ds-date-range-picker@1.4.8...@synerise/ds-date-range-picker@1.4.9) (2026-01-20)
7
17
 
8
18
  **Note:** Version bump only for package @synerise/ds-date-range-picker
@@ -117,11 +117,6 @@ var RangeForm = function RangeForm(_ref) {
117
117
  step: SLIDER_STEP,
118
118
  inverted: isInvertedRange,
119
119
  value: [sliderStart, sliderEnd],
120
- included: true,
121
- getTooltipPopupContainer: function getTooltipPopupContainer(container) {
122
- return container;
123
- },
124
- tooltipVisible: true,
125
120
  onAfterChange: handleSliderAfterChange,
126
121
  onChange: handleSliderChange,
127
122
  tipFormatter: tipFormatter
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@synerise/ds-date-range-picker",
3
- "version": "1.4.9",
3
+ "version": "1.5.0",
4
4
  "description": "Date-Range-Picker UI Component for the Synerise Design System",
5
5
  "license": "ISC",
6
6
  "repository": "Synerise/synerise-design",
@@ -23,8 +23,8 @@
23
23
  "defs": "tsc --declaration --outDir dist/ --emitDeclarationOnly",
24
24
  "pack:ci": "pnpm pack --pack-destination ../../storybook/storybook-static/static",
25
25
  "prepublish": "npm run build",
26
- "test": "jest",
27
- "test:watch": "npm run test -- --watchAll",
26
+ "test": "vitest",
27
+ "test:watch": "npm run test -- --watch",
28
28
  "types": "tsc --noEmit",
29
29
  "check:circular-dependencies": "node -e 'const pkg = require(\"./package.json\").name; console.log(\"\\x1b[31m%s\\x1b[0m\", `[WARN] skipping circular dependencies in ${pkg}`)'",
30
30
  "upgrade:ds": "ncu -f \"@synerise/ds-*\" -u"
@@ -36,23 +36,23 @@
36
36
  "types": "dist/index.d.ts",
37
37
  "dependencies": {
38
38
  "@date-fns/upgrade": "^1.0.3",
39
- "@synerise/ds-badge": "^1.0.30",
39
+ "@synerise/ds-badge": "^1.0.31",
40
40
  "@synerise/ds-button": "^1.5.5",
41
- "@synerise/ds-button-group": "^1.1.29",
42
- "@synerise/ds-date-picker": "^1.3.9",
43
- "@synerise/ds-dropdown": "^1.1.9",
44
- "@synerise/ds-form-field": "^1.2.3",
41
+ "@synerise/ds-button-group": "^1.1.30",
42
+ "@synerise/ds-date-picker": "^1.3.11",
43
+ "@synerise/ds-dropdown": "^1.1.11",
44
+ "@synerise/ds-form-field": "^1.2.4",
45
45
  "@synerise/ds-icon": "^1.10.0",
46
- "@synerise/ds-inline-edit": "^1.1.9",
47
- "@synerise/ds-input": "^1.5.6",
48
- "@synerise/ds-input-number": "^1.2.21",
49
- "@synerise/ds-list-item": "^1.3.0",
50
- "@synerise/ds-manageable-list": "^1.6.9",
46
+ "@synerise/ds-inline-edit": "^1.1.11",
47
+ "@synerise/ds-input": "^1.5.7",
48
+ "@synerise/ds-input-number": "^1.2.22",
49
+ "@synerise/ds-list-item": "^1.3.2",
50
+ "@synerise/ds-manageable-list": "^1.6.11",
51
51
  "@synerise/ds-scrollbar": "^1.2.5",
52
- "@synerise/ds-select": "^1.3.6",
53
- "@synerise/ds-slider": "^1.0.31",
52
+ "@synerise/ds-select": "^1.3.7",
53
+ "@synerise/ds-slider": "^1.1.0",
54
54
  "@synerise/ds-tag": "^1.4.5",
55
- "@synerise/ds-time-picker": "^1.2.9",
55
+ "@synerise/ds-time-picker": "^1.2.11",
56
56
  "@synerise/ds-tooltip": "^1.3.5",
57
57
  "@synerise/ds-utils": "^1.5.3",
58
58
  "date-fns": "^2.16.1",
@@ -64,7 +64,9 @@
64
64
  "uuid": "^8.3.2"
65
65
  },
66
66
  "devDependencies": {
67
- "@types/lodash": "^4.17.20"
67
+ "@testing-library/user-event": "14",
68
+ "@types/lodash": "^4.17.20",
69
+ "vitest": "4"
68
70
  },
69
71
  "peerDependencies": {
70
72
  "@synerise/ds-core": "*",
@@ -73,5 +75,5 @@
73
75
  "react-intl": ">=3.12.0 <= 6.8",
74
76
  "styled-components": "^5.3.3"
75
77
  },
76
- "gitHead": "db758824923a2a231a0de460f0d6d10739514cda"
78
+ "gitHead": "13055ac4f0b05cc3eb06021d51c93c8d32328053"
77
79
  }
package/dist/modules.d.js DELETED
@@ -1 +0,0 @@
1
- import '@testing-library/jest-dom';