@stenajs-webui/calendar 17.30.0 → 17.30.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 +12 -0
- package/dist/index.es.js +3 -1
- package/dist/index.es.js.map +1 -1
- package/dist/index.js +1 -1
- package/dist/index.js.map +1 -1
- package/package.json +7 -7
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,15 @@
|
|
|
1
|
+
# v17.30.1 (Thu Jan 12 2023)
|
|
2
|
+
|
|
3
|
+
#### 🐛 Bug Fix
|
|
4
|
+
|
|
5
|
+
- Correct time offset when calendar focuses on date [#543](https://github.com/StenaIT/stenajs-webui/pull/543) ([@Limpaan](https://github.com/Limpaan))
|
|
6
|
+
|
|
7
|
+
#### Authors: 1
|
|
8
|
+
|
|
9
|
+
- Viktor Lindblom ([@Limpaan](https://github.com/Limpaan))
|
|
10
|
+
|
|
11
|
+
---
|
|
12
|
+
|
|
1
13
|
# v17.29.0 (Mon Dec 12 2022)
|
|
2
14
|
|
|
3
15
|
#### 🚀 Enhancement
|
package/dist/index.es.js
CHANGED
|
@@ -1845,7 +1845,9 @@ const Tr = ({
|
|
|
1845
1845
|
y.setHours(T != null ? T : 0), y.setMinutes(M != null ? M : 0), e == null || e(y), f(void 0);
|
|
1846
1846
|
} else
|
|
1847
1847
|
f(y);
|
|
1848
|
-
n(y), h.current && (h.current.valueAsDate =
|
|
1848
|
+
n(y), h.current && (h.current.valueAsDate = new Date(
|
|
1849
|
+
Date.UTC(y.getFullYear(), y.getMonth(), y.getDate())
|
|
1850
|
+
));
|
|
1849
1851
|
},
|
|
1850
1852
|
[t, h, o, e, n, f]
|
|
1851
1853
|
), u = g(
|