timepicker-ui 2.3.0 → 2.4.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,141 +1,153 @@
1
- # Changelog
2
-
3
- All notable changes to this project will be documented in this file.
4
-
5
- The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
6
- and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
7
-
8
- ---
9
-
10
- ## [2.3.0] - 2022-03-05
11
-
12
- ### Fix
13
-
14
- - fixed problem with [switchToMinutesAfterSelectHour](https://github.com/pglejzer/timepicker-ui/issues/13) option
15
- - fixed problem with [update](https://github.com/pglejzer/timepicker-ui/issues/12) event
16
- - fixed problem with [animation](https://github.com/pglejzer/timepicker-ui/issues/11) option name
17
- - fixed problem with [iconTemplete and iconTemplateMobile](https://github.com/pglejzer/timepicker-ui/issues/9) names
18
- - fixed problem with [switching mobile/desktop view](https://github.com/pglejzer/timepicker-ui/issues/9)
19
- - fixed problem to set options with data-attributes
20
-
21
- ### Change
22
-
23
- - changed option name from `selectLabelTime` to `labelTime`
24
-
25
- ### Add
26
-
27
- - added [UMD version](https://github.com/pglejzer/timepicker-ui/issues/8)
28
- - added new options `mobileTimeLabel` to change time label on mobile version
29
-
30
- ---
31
-
32
- ## [2.2.3] - 2021-09-26
33
-
34
- ### Update
35
-
36
- - Update README.md and links
37
-
38
- ---
39
-
40
- ## [2.2.2] - 2021-09-25
41
-
42
- ### Fixed
43
-
44
- - Fixed hand circle SCSS on the crane mode
45
- - Fixed am/om SCSS on the crane mode
46
-
47
- ### Update
48
-
49
- - Update typings, remove alomost all @ts-ignore and any types.
50
-
51
- ---
52
-
53
- ## [2.2.1] - 2021-09-24
54
-
55
- ### Fixed
56
-
57
- - Fixed scss with landscape version
58
- - Fixed class active to hour/minutes
59
-
60
- ---
61
-
62
- ## [2.2.0] - 2021-09-23
63
-
64
- ### Added
65
-
66
- - Version 24h
67
- - Input validation
68
-
69
- ### Update
70
-
71
- - Change scss styles
72
- - Update types
73
-
74
- ---
75
-
76
- ## [2.1.1] - 2021-01-24
77
-
78
- ### Fixed
79
-
80
- - Fixed problem with transition
81
-
82
- ---
83
-
84
- ## [2.1.0] - 2021-01-24
85
-
86
- ### Added
87
-
88
- - Added new option <code>animated</code> to turn on/off animations on picker on start/close.
89
- - Added new option <code>editable</code> to edit hour/minutes on the web mode.
90
- - Added new option <code>preventDefault</code> to turn on/off defaults events to clock face events.
91
-
92
- ### Change
93
-
94
- - Change docs example
95
- - Removed unnecessary option <code>inputTemplate</code> from options types.
96
-
97
- ### Fixed
98
-
99
- - Fixed problem with events on remove
100
-
101
- ---
102
-
103
- ## [2.0.2] - 2021-01-21
104
-
105
- ### Fixed
106
-
107
- - Fixed problem with close event.
108
-
109
- ---
110
-
111
- ## [2.0.1] - 2021-01-18
112
-
113
- ### Fixed
114
-
115
- - Fixed problem with keyboard icon click on mobile.
116
-
117
- ---
118
-
119
- ## [2.0.0] - 2021-01-17
120
-
121
- ### Changed
122
-
123
- - Everything was rewritten to TypeScript
124
-
125
- ### Fixed
126
-
127
- - Fixed problems with move events on mobile.
128
-
129
- ---
130
-
131
- ## [1.2.0] - 2020-11-05
132
-
133
- ### Changed
134
-
135
- - Fixed return values of <code>type</code> in the events
136
-
137
- ### Added
138
-
139
- - Added the possibility to have multiple open elements on init
140
-
141
- [1.1.0]: https://github.com/olivierlacan/keep-a-changelog/compare/v1.0.0...v1.1.0
1
+ # Changelog
2
+
3
+ All notable changes to this project will be documented in this file.
4
+
5
+ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
6
+ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
7
+
8
+ ---
9
+
10
+ ## [2.4.0] - 2022-03-22
11
+
12
+ ### Add
13
+
14
+ - added new update method
15
+ - added new destroy method
16
+ - added new option `disabledTime` that allows to set to timepicker disabled time
17
+
18
+ ### Update
19
+
20
+ - updated a methods open, close with new parameters and callbacks
21
+
22
+ ## [2.3.0] - 2022-03-05
23
+
24
+ ### Fix
25
+
26
+ - fixed problem with [switchToMinutesAfterSelectHour](https://github.com/pglejzer/timepicker-ui/issues/13) option
27
+ - fixed problem with [update](https://github.com/pglejzer/timepicker-ui/issues/12) event
28
+ - fixed problem with [animation](https://github.com/pglejzer/timepicker-ui/issues/11) option name
29
+ - fixed problem with [iconTemplete and iconTemplateMobile](https://github.com/pglejzer/timepicker-ui/issues/9) names
30
+ - fixed problem with [switching mobile/desktop view](https://github.com/pglejzer/timepicker-ui/issues/9)
31
+ - fixed problem to set options with data-attributes
32
+
33
+ ### Change
34
+
35
+ - changed option name from `selectLabelTime` to `labelTime`
36
+
37
+ ### Add
38
+
39
+ - added [UMD version](https://github.com/pglejzer/timepicker-ui/issues/8)
40
+ - added new options `mobileTimeLabel` to change time label on mobile version
41
+
42
+ ---
43
+
44
+ ## [2.2.3] - 2021-09-26
45
+
46
+ ### Update
47
+
48
+ - Update README.md and links
49
+
50
+ ---
51
+
52
+ ## [2.2.2] - 2021-09-25
53
+
54
+ ### Fixed
55
+
56
+ - Fixed hand circle SCSS on the crane mode
57
+ - Fixed am/om SCSS on the crane mode
58
+
59
+ ### Update
60
+
61
+ - Update typings, remove alomost all @ts-ignore and any types.
62
+
63
+ ---
64
+
65
+ ## [2.2.1] - 2021-09-24
66
+
67
+ ### Fixed
68
+
69
+ - Fixed scss with landscape version
70
+ - Fixed class active to hour/minutes
71
+
72
+ ---
73
+
74
+ ## [2.2.0] - 2021-09-23
75
+
76
+ ### Added
77
+
78
+ - Version 24h
79
+ - Input validation
80
+
81
+ ### Update
82
+
83
+ - Change scss styles
84
+ - Update types
85
+
86
+ ---
87
+
88
+ ## [2.1.1] - 2021-01-24
89
+
90
+ ### Fixed
91
+
92
+ - Fixed problem with transition
93
+
94
+ ---
95
+
96
+ ## [2.1.0] - 2021-01-24
97
+
98
+ ### Added
99
+
100
+ - Added new option <code>animated</code> to turn on/off animations on picker on start/close.
101
+ - Added new option <code>editable</code> to edit hour/minutes on the web mode.
102
+ - Added new option <code>preventDefault</code> to turn on/off defaults events to clock face events.
103
+
104
+ ### Change
105
+
106
+ - Change docs example
107
+ - Removed unnecessary option <code>inputTemplate</code> from options types.
108
+
109
+ ### Fixed
110
+
111
+ - Fixed problem with events on remove
112
+
113
+ ---
114
+
115
+ ## [2.0.2] - 2021-01-21
116
+
117
+ ### Fixed
118
+
119
+ - Fixed problem with close event.
120
+
121
+ ---
122
+
123
+ ## [2.0.1] - 2021-01-18
124
+
125
+ ### Fixed
126
+
127
+ - Fixed problem with keyboard icon click on mobile.
128
+
129
+ ---
130
+
131
+ ## [2.0.0] - 2021-01-17
132
+
133
+ ### Changed
134
+
135
+ - Everything was rewritten to TypeScript
136
+
137
+ ### Fixed
138
+
139
+ - Fixed problems with move events on mobile.
140
+
141
+ ---
142
+
143
+ ## [1.2.0] - 2020-11-05
144
+
145
+ ### Changed
146
+
147
+ - Fixed return values of <code>type</code> in the events
148
+
149
+ ### Added
150
+
151
+ - Added the possibility to have multiple open elements on init
152
+
153
+ [1.1.0]: https://github.com/olivierlacan/keep-a-changelog/compare/v1.0.0...v1.1.0