Skip to content

Commit 3c533c7

Browse files
committed
chore(datetime): Update changelog #7170
1 parent bf8f2e3 commit 3c533c7

File tree

1 file changed

+18
-0
lines changed

1 file changed

+18
-0
lines changed

CHANGELOG.md

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -87,6 +87,24 @@ All notable changes for each version of this project will be documented in this
8787
- New `igxDragIgnore` directive that allows children of the `igxDrag` element to be interactable and receive mouse events. Dragging cannot be performed from those elements that are ignored.
8888
- New `dragDirection` input that can specify only one direction of dragging or both.
8989

90+
- `IgxDateTimeEditor` directive added.
91+
- Allows the user to set and edit `date` and `time` in a chosen input element.
92+
- Can edit `date` or `time` portion, using an editable masked input.
93+
- Additionally, can specify a desired `display` and `input` `format`, as well as `min` and `max` values.
94+
95+
- A basic configuration scenario setting a Date object as a `value`:
96+
```html
97+
<igx-input-group>
98+
<input type="text" igxInput igxDateTimeEditor [value]="date"/>
99+
</igx-input-group>
100+
```
101+
- Two-way data-binding via an ngModel:
102+
```html
103+
<igx-input-group>
104+
<input type="text" igxInput igxDateTimeEditor [(ngModel)]="date"/>
105+
</igx-input-group>
106+
```
107+
90108
### RTL Support
91109
- `igxSlider` have full right-to-left (RTL) support.
92110

0 commit comments

Comments
 (0)