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