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
+44-33Lines changed: 44 additions & 33 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -61,34 +61,19 @@ All notable changes for each version of this project will be documented in this
61
61
-`onDataPreLoad` -> `dataPreLoad`
62
62
-`IgxInputGroupComponent`
63
63
-**Breaking Change** - `disabled` property removed. Use the underlying `IgxInputDirective.disabled` to control the disabled state of the input group. Please make sure to update via `ng update` to migrate an usage of `disabled` in your template files. Please make sure to check out the [update guide](https://www.infragistics.com/products/ignite-ui-angular/angular/components/general/update-guide#from-111x-to-120x).
64
-
65
64
-`IgxDateTimeEditor`
66
-
-**Feature** - `value` accepts ISO 8601 string format.
67
-
-**Breaking Change** - `value` type could be `Date` or `string`.
68
65
-**Breaking Change** - `onValueChange` event is renamed to `valueChange`.
69
66
-**Breaking Change** - `isSpinLoop` property is renamed to `spinLoop`.
70
-
-**Feature** - `spinDelta` input property which allows a user to provide different delta values that will be used for spinning. All parts default to `1`.
71
-
-`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`.
72
67
-`IgxDatePicker`
73
-
-**Feature** - `value` accepts ISO 8601 string format.
74
-
-**Feature** - The actions template now exposes the Calendar component as implicit context:
- **Breaking Change** - `value` type could be `Date` or `string`.
83
68
-**Breaking Change** - `onSelection` event is renamed to `valueChange`.
84
-
- **Breaking Change** - new way to define custom elements in the `igx-date-picker` while the following properties are deleted or deprecated: `formatter`, `context`, `labelInternal`, `template`.
69
+
-**Breaking Change** - new way to define custom elements in the `igx-date-picker` while the following properties are deleted or deprecated: `context`, `labelInternal`, `template`.
@@ -99,22 +84,23 @@ All notable changes for each version of this project will be documented in this
99
84
- **Breaking Change** - `monthsViewNumber` is renamed to `displayMonthsCount`.
100
85
- **Breaking Change** - `vertical` is renamed to `headerOrientation`.
101
86
- **Breaking Change** - `displayData` is renamed to `displayFormat`.
102
-
- **Breaking Change** - `dropDownOverlaySettings` and `modalOverlaySettings` are replaced by the `overlaySettings`.
87
+
- **Breaking Change** - `dropDownOverlaySettings` and `modalOverlaySettings` are replaced by `overlaySettings`.
103
88
- **Breaking Change** - `onValidationFailed` event is renamed to `validationFailed`.
104
89
- **Breaking Change** - `onDisabledDate` event is removed.
105
90
- **Breaking Change** - `onOpening`, `onOpened`, `onClosing` and `onClosed` events are renamed respectively to `opening`, `opened`, `closing` and `closed`.
91
+
- **Breaking Change** - `igxDatePickerActions` is renamed to `igxPickerActions`
92
+
- **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`.
106
93
- `IgxTimePicker`
107
-
- **Feature** - `value` accepts ISO 8601 string format.
108
94
- **Breaking Change** - `value` type could be `Date` or `string`.
109
95
- **Breaking Change** - `onValueChanged` event is renamed to `valueChange`.
110
96
- **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`.
@@ -125,17 +111,8 @@ All notable changes for each version of this project will be documented in this
125
111
- **Breaking Change** - `vertical` is renamed to `headerOrientation`.
126
112
- **Breaking Change** - `onOpening`, `onOpened`, `onClosing` and `onClosed` events are renamed respectively to `opening`, `opened`, `closing` and `closed`.
127
113
- **Breaking Change** - `onValidationFailed` event is renamed to `validationFailed`.
114
+
- **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.
128
115
- `IgxDateRangePicker`
129
-
- **Feature** - `value` start and end accept ISO 8601 string format.
130
-
- **Feature** - The actions template now exposes the Calendar component as implicit context:
- **Breaking Change** - `value` start and end types could be `Date` or `string`.
139
116
- **Breaking Change** - `rangeSelected` event is renamed to `valueChange`.
140
117
- **Breaking Change** - `onOpening`, `onOpened`, `onClosing` and `onClosed` events are renamed respectively to `opening`, `opened`, `closing` and `closed`.
141
118
- **Breaking Change** - `monthsViewNumber` is renamed to `displayMonthsCount`.
@@ -244,6 +221,40 @@ All notable changes for each version of this project will be documented in this
244
221
}
245
222
}
246
223
```
224
+
- `IgxDateTimeEditor`
225
+
- `value` accepts ISO 8601 string format.
226
+
- `spinDelta` input property which allows a user to provide different delta values that will be used for spinning. All parts default to `1`.
227
+
- `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`.
228
+
- `IgxDatePicker`
229
+
- `value` accepts ISO 8601 string format.
230
+
- The actions template now exposes the Calendar component as implicit context:
0 commit comments