@stenajs-webui/calendar 17.28.0 → 17.29.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
@@ -1,3 +1,27 @@
1
+ # v17.29.0 (Mon Dec 12 2022)
2
+
3
+ #### 🚀 Enhancement
4
+
5
+ - Add support for locale in calendar [#541](https://github.com/StenaIT/stenajs-webui/pull/541) ([@mattias800](https://github.com/mattias800))
6
+
7
+ #### Authors: 1
8
+
9
+ - Mattias Andersson ([@mattias800](https://github.com/mattias800))
10
+
11
+ ---
12
+
13
+ # v17.28.1 (Fri Nov 25 2022)
14
+
15
+ #### 🐛 Bug Fix
16
+
17
+ - Fix variable used before declaration error [#531](https://github.com/StenaIT/stenajs-webui/pull/531) ([@lindskogen](https://github.com/lindskogen))
18
+
19
+ #### Authors: 1
20
+
21
+ - Johan Lindskogen ([@lindskogen](https://github.com/lindskogen))
22
+
23
+ ---
24
+
1
25
  # v17.13.3 (Tue Aug 30 2022)
2
26
 
3
27
  #### 🏠 Internal
@@ -1,3 +1,3 @@
1
1
  import { CalendarWithMonthSwitcherProps } from "../../../features/month-switcher/CalendarWithMonthSwitcher";
2
2
  import { SingleWeekCalendarProps } from "./SingleWeekCalendar";
3
- export declare const useSingleWeekSelection: <T>({ onChange, value, statePerMonth, onChangePanel, }: SingleWeekCalendarProps<T>) => CalendarWithMonthSwitcherProps<T>;
3
+ export declare const useSingleWeekSelection: <T>({ onChange, value, statePerMonth, onChangePanel, locale, }: SingleWeekCalendarProps<T>) => CalendarWithMonthSwitcherProps<T>;