You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
* #600 - added `isDestroyed` property, opts and selectedDates now will have empty values after calendar is destroyed
* #600 - added docs for `isDestroyed`
* #600 - bupm version, added logs
* fixed log
Copy file name to clipboardexpand all lines: CHANGELOG.md
+3
Original file line number
Diff line number
Diff line change
@@ -1,5 +1,8 @@
1
1
# Changelog
2
2
3
+
### v3.5.1
4
+
* improved `destroy()` behavior - added `isDestroyed` property, `opts` and `selectedDates` will still have empty values, instead of `null`, even after AirDatepicker has been destroyed [#600](https://github.com/t1m0n/air-datepicker/issues/600)
5
+
3
6
### v3.5.0
4
7
* added `fixedHeight` option, allows you to have equal weeks number in every month
5
8
* added method `disableDate`, allows you to disabled one or multiple dates with datepicker API
Copy file name to clipboardexpand all lines: README.md
+3
Original file line number
Diff line number
Diff line change
@@ -24,6 +24,9 @@ new AirDatepicker('#el' [, options]);
24
24
25
25
## Recent updates
26
26
27
+
### v3.5.1
28
+
* improved `destroy()` behavior - added `isDestroyed` property, `opts` and `selectedDates` will still have empty values, instead of `null`, even after AirDatepicker has been destroyed [#600](https://github.com/t1m0n/air-datepicker/issues/600)
29
+
27
30
### v3.5.0
28
31
* added `fixedHeight` option, allows you to have equal weeks number in every month
29
32
* added method `disableDate`, allows you to disabled one or multiple dates with datepicker API
Copy file name to clipboardexpand all lines: dist/README.md
+10-2
Original file line number
Diff line number
Diff line change
@@ -24,15 +24,23 @@ new AirDatepicker('#el' [, options]);
24
24
25
25
## Recent updates
26
26
27
+
### v3.5.1
28
+
* improved `destroy()` behavior - added `isDestroyed` property, `opts` and `selectedDates` will still have empty values, instead of `null`, even after AirDatepicker has been destroyed [#600](https://github.com/t1m0n/air-datepicker/issues/600)
29
+
27
30
### v3.5.0
28
31
* added `fixedHeight` option, allows you to have equal weeks number in every month
29
32
* added method `disableDate`, allows you to disabled one or multiple dates with datepicker API
30
33
* added prop `disabledDates` - it is a Set which holds all disabled dates
31
34
* added possibility to pass `{silent: true}` to `update` and `setCurrentView` methods, [#583](https://github.com/t1m0n/air-datepicker/issues/568)
32
-
* changed `update` method - now if you pass `selectedDates` here then calendar will keep selected only those dates
33
-
* fixed localization generation
35
+
* changed `update` method - now if you pass `selectedDates` then calendar will keep selected only those dates
34
36
* fixed selecting time on same date when `range: true`, [#568](https://github.com/t1m0n/air-datepicker/issues/568)
35
37
* fixed date conversion to local date when using strings, e.g `selectDate('2024-03-05')`[#589](https://github.com/t1m0n/air-datepicker/issues/589)
38
+
* fixed localization generation, thanks to [hreyeslo](https://github.com/hreyeslo) in [#524](https://github.com/t1m0n/air-datepicker/pull/524)
39
+
* fixed type definition for `clear` method, thanks to [ahmetzambak](https://github.com/ahmetzambak) in [#591](https://github.com/t1m0n/air-datepicker/pull/591)
40
+
* fixed German translation for "clear", thanks to [pbek](https://github.com/pbek) in [#582](https://github.com/t1m0n/air-datepicker/pull/582)
41
+
* added Slovenian locale, thanks to [carliblaz](https://github.com/carliblaz) in [#569](https://github.com/t1m0n/air-datepicker/pull/569)
42
+
* added Basque locale, thanks to [ikerib](https://github.com/ikerib) in [#529](https://github.com/t1m0n/air-datepicker/pull/529)
43
+
* added Norwegian locale, thanks to [MortenSpjotvoll](https://github.com/MortenSpjotvoll) in [#521](https://github.com/t1m0n/air-datepicker/pull/521)
36
44
37
45
### v3.4.0
38
46
* added new options `onFocus` and `onBeforeSelect` grant you more control over range selection behaviour and more [#526](https://github.com/t1m0n/air-datepicker/issues/526)
0 commit comments