@synerise/ds-date-range-picker 0.21.13 → 0.21.14
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 +11 -0
- package/dist/RangeFilter/utils.js +1 -1
- package/package.json +2 -2
package/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,17 @@
|
|
|
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.21.14](https://github.com/Synerise/synerise-design/compare/@synerise/ds-date-range-picker@0.21.13...@synerise/ds-date-range-picker@0.21.14) (2023-06-29)
|
|
7
|
+
|
|
8
|
+
|
|
9
|
+
### Bug Fixes
|
|
10
|
+
|
|
11
|
+
* **date-range-picker:** fixes day index for sunday ([53bdce6](https://github.com/Synerise/synerise-design/commit/53bdce62c5facf9193fd8c1b6f7c0dba3344fc22))
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
|
|
15
|
+
|
|
16
|
+
|
|
6
17
|
## [0.21.13](https://github.com/Synerise/synerise-design/compare/@synerise/ds-date-range-picker@0.21.12...@synerise/ds-date-range-picker@0.21.13) (2023-06-28)
|
|
7
18
|
|
|
8
19
|
|
|
@@ -98,7 +98,7 @@ export var normalizeValue = function normalizeValue(_ref) {
|
|
|
98
98
|
week: +week + 1,
|
|
99
99
|
// eslint-disable-next-line @typescript-eslint/no-explicit-any
|
|
100
100
|
days: daysArray.map(function (day) {
|
|
101
|
-
var dayOfWeek =
|
|
101
|
+
var dayOfWeek = (day.day - 1) % 7 + 1;
|
|
102
102
|
return _objectSpread({}, omit(day, ['week']), {
|
|
103
103
|
type: type,
|
|
104
104
|
day: dayOfWeek
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@synerise/ds-date-range-picker",
|
|
3
|
-
"version": "0.21.
|
|
3
|
+
"version": "0.21.14",
|
|
4
4
|
"description": "Date-Range-Picker UI Component for the Synerise Design System",
|
|
5
5
|
"license": "ISC",
|
|
6
6
|
"repository": "Synerise/synerise-design",
|
|
@@ -54,5 +54,5 @@
|
|
|
54
54
|
"devDependencies": {
|
|
55
55
|
"@types/ramda": "^0.27.14"
|
|
56
56
|
},
|
|
57
|
-
"gitHead": "
|
|
57
|
+
"gitHead": "1c8856a43eaef581aa310d6e0b7d01ae39a5e105"
|
|
58
58
|
}
|