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
Copy file name to clipboardExpand all lines: CHANGELOG.md
+35-22Lines changed: 35 additions & 22 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -59,21 +59,9 @@ All notable changes for each version of this project will be documented in this
59
59
-`onGridInitialized` -> `gridInitialized`
60
60
-`onDataPreLoad` -> `dataPreLoad`
61
61
-`IgxDateTimeEditor`
62
-
-**Feature** - `value` accepts ISO 8601 string format.
63
-
-**Feature** - `spinDelta` input property which allows a user to provide different delta values that will be used for spinning. All parts default to `1`.
64
-
-**Feature** - `increment` and `decrement` methods now accept an optional `delta` parameter which targets the currently spun date portion. It takes precedence over the values set in `spinDelta`.
65
62
-**Breaking Change** - `onValueChange` event is renamed to `valueChange`.
66
63
-**Breaking Change** - `isSpinLoop` property is renamed to `spinLoop`.
67
64
-`IgxDatePicker`
68
-
-**Feature** - `value` accepts ISO 8601 string format.
69
-
-**Feature** - The actions template now exposes the Calendar component as implicit context:
-**Breaking Change** - `onSelection` event is renamed to `valueChange`.
78
66
-**Breaking Change** - new way to define custom elements in the `igx-date-picker` while the following properties are deleted or deprecated: `context`, `labelInternal`, `template`.
79
67
```html
@@ -97,9 +85,9 @@ All notable changes for each version of this project will be documented in this
97
85
- **Breaking Change** - `onValidationFailed` event is renamed to `validationFailed`.
98
86
- **Breaking Change** - `onDisabledDate` event is removed.
99
87
- **Breaking Change** - `onOpening`, `onOpened`, `onClosing` and `onClosed` events are renamed respectively to `opening`, `opened`, `closing` and `closed`.
88
+
- **Breaking Change** - `igxDatePickerActions` is renamed to `igxPickerActions`
100
89
- **Behavioral Change** - Upon opening, the focused date will always be the selected/bound date. If there is no selected/bound date, the date picker will focus today's date. If `minValue` and/or `maxValue` are applied and today's date (or the bound date) is outside of the specified range, the focused date will be respectively `minValue` or `maxValue`.
101
90
- `IgxTimePicker`
102
-
- **Feature** - `value` accepts ISO 8601 string format.
103
91
- **Breaking Change** - `value` type could be `Date` or `string`.
104
92
- **Breaking Change** - `onValueChanged` event is renamed to `valueChange`.
105
93
- **Breaking Change** - new way to define custom elements in the `igx-time-picker` while the following properties are deleted or deprecated: `context`, `promptChar`, `displayTime`, `template`.
@@ -122,15 +110,6 @@ All notable changes for each version of this project will be documented in this
122
110
- **Breaking Change** - `onValidationFailed` event is renamed to `validationFailed`.
123
111
- **Behavioral Change** - The dropdown/dialog displays time portions within `minValue` and `maxValue` range if set or time between 00:00 and 24:00 in the provided `inputFormat`. The displayed values for each time portion are calculated based on the items delta always starting from zero. If the `minValue` or `maxValue` does not match the items delta, the displayed values will start/end from the next/last possible value that matches the delta. Upon opening, the selected time will be the bound value. In cases when there is not a bound value, it is outside the min/max range or does not match the items delta, the selected time will be the closest possible time that matches the items delta.
124
112
- `IgxDateRangePicker`
125
-
- **Feature** - `value` start and end accept ISO 8601 string format.
126
-
- **Feature** - The actions template now exposes the Calendar component as implicit context:
- **Breaking Change** - `rangeSelected` event is renamed to `valueChange`.
135
114
- **Breaking Change** - `onOpening`, `onOpened`, `onClosing` and `onClosed` events are renamed respectively to `opening`, `opened`, `closing` and `closed`.
136
115
- **Breaking Change** - `monthsViewNumber` is renamed to `displayMonthsCount`.
@@ -239,6 +218,40 @@ All notable changes for each version of this project will be documented in this
239
218
}
240
219
}
241
220
```
221
+
- `IgxDateTimeEditor`
222
+
- `value` accepts ISO 8601 string format.
223
+
- `spinDelta` input property which allows a user to provide different delta values that will be used for spinning. All parts default to `1`.
224
+
- `increment` and `decrement` methods now accept an optional `delta` parameter which targets the currently spun date portion. It takes precedence over the values set in `spinDelta`.
225
+
- `IgxDatePicker`
226
+
- `value` accepts ISO 8601 string format.
227
+
- The actions template now exposes the Calendar component as implicit context:
0 commit comments