diff --git a/CHANGELOG.md b/CHANGELOG.md
index d0bf48746fc..8a75c923016 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -2,6 +2,13 @@
All notable changes for each version of this project will be documented in this file.
## 7.2.0
+- `igxCalendar`
+ - `igxCalendar` has been refactored to provide the ability to instantiate each view as a separate component.
+ - **Feature** advanced keyboard navigation support has been added. Read up more information in the [ReadMe](https://github.com/IgniteUI/igniteui-angular/tree/master/projects/igniteui-angular/src/lib/calendar/README.md)
+
+- **New component** `IgxMonthPicker`:
+ - Provides the ability to pick a specific month. Read up more information in the [ReadMe](https://github.com/IgniteUI/igniteui-angular/tree/master/projects/igniteui-angular/src/lib/month-picker/README.md)
+
- **New component** `IgxHierarchicalGrid`:
- Provides the ability to represent and manipulate hierarchical data in which each level has a different schema. Each level is represented by a component derived from **igx-grid** and supports most of its functionality. Read up more information about the IgxHierarchicalGrid in the official [documentation](https://www.infragistics.com/products/ignite-ui-angular/angular/components/hierarchicalgrid.html) or the [ReadMe](https://github.com/IgniteUI/igniteui-angular/tree/master/projects/igniteui-angular/src/lib/grids/hierarchical-grid/README.md)
diff --git a/projects/igniteui-angular/src/lib/calendar/README.md b/projects/igniteui-angular/src/lib/calendar/README.md
index 2616cb39b95..83b18711873 100644
--- a/projects/igniteui-angular/src/lib/calendar/README.md
+++ b/projects/igniteui-angular/src/lib/calendar/README.md
@@ -1,6 +1,6 @@
# igxCalendar Component
-The **igxCalendar** provides a way for the user to select date(s).
+The **igxCalendar** provides a way for the user to select date(s).
A walkthrough of how to get started can be found [here](https://www.infragistics.com/products/ignite-ui-angular/angular/components/calendar.html)
## Dependencies
@@ -67,16 +67,37 @@ When the **igxCalendar** component is focused:
- `Shift + PageDown` will move to the next year.
- `Home` will focus the first day of the current month that is into view.
- `End` will focus the last day of the current month that is into view.
+- `Tab` will navigate through the subheader buttons;
+
+When `prev` or `next` month buttons (in the subheader) are focused:
+- `Space` or `Enter` will scroll into view the next or previous month.
+
+When `months` button (in the subheader) is focused:
+- `Space` or `Enter` will open the months view.
+
+When `year` button (in the subheader) is focused:
+- `Space` or `Enter` will open the decade view.
When a day inside the current month is focused:
- Arrow keys will navigate through the days.
+- Arrow keys will allow navigation to previous/next month as well.
- `Enter` will select the currently focused day.
+When a month inside the months view is focused:
+- Arrow keys will navigate through the months.
+- `Home` will focus the first month inside the months view.
+- `End` will focus the last month inside the months view.
+- `Enter` will select the currently focused month and close the view.
+
+When an year inside the decade view is focused:
+- Arrow keys will navigate through the years.
+- `Enter` will select the currently focused year and close the view.
+
## API Summary
### Inputs
-- `id: string`
+- `id: string`
Unique identifier of the component. If not provided it will be automatically generated.
diff --git a/projects/igniteui-angular/src/lib/calendar/calendar.component.html b/projects/igniteui-angular/src/lib/calendar/calendar.component.html
index a9ecf93d246..ead1b7594e9 100644
--- a/projects/igniteui-angular/src/lib/calendar/calendar.component.html
+++ b/projects/igniteui-angular/src/lib/calendar/calendar.component.html
@@ -4,10 +4,10 @@