Skip to content

feat(time-picker): Updating the readme and the changelog, #6905 #8103

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 2 commits into from
Sep 9, 2020
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 5 additions & 3 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,19 +2,21 @@

All notable changes for each version of this project will be documented in this file.
## 10.2.0
- IgxInputGroup

### General
- `IgxInputGroup`
- **Breaking Chage** - Removed `fluent`, `fluent_search`, `bootstrap`, and `indigo` as possible values for the `type` input property.
- **Behavioral Change** - The styling of the input group is now dictated by the theme being used. The remaining `types` - `line`, `border`, and `box` will only have effect on the styling when used with the `material` theme. The `search` type will affect styling when used with all themes. Changing the theme at runtime will not change the styling of the input group, a page refresh is required.

## 10.2.0

### New Features
- `IgxGrid`, `IgxTreeGrid`, `IgxHierarchicalGrid`
- When triggering an export of the grid via the toolbar and the export takes more than 500 milliseconds, the export button becomes disabled and an indeterminate progress bar is shown at the bottom of the toolbar until the export is finished.
- ` IGX_INPUT_GROUP_TYPE` injection token
- Allows for setting an input group `type` on a global level, so all input-group instances, including components using such an instance as a template will have their input group type set to the one specified by the token. It can be overridden on a component level by explicitly setting a `type`.
- ` IgxExcelExporterService`
- Added `worksheetName` property to the `IgxExcelExporterOptions`, that allows setting the name of the worksheet.
- `IgxTimePicker`
- Added a custom label functionality.

## 10.1.0

Expand Down
6 changes: 6 additions & 0 deletions projects/igniteui-angular/src/lib/time-picker/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -46,6 +46,12 @@ The TimePicker has vertical and horizontal layout. By default the `vertical` is
<igx-time-picker [vertical]="true">
</igx-time-picker>
```
The TimePicker supports custom label. It can be set in the following way:
````html
<igx-time-picker>
<label igxLabel> Custom label</label>
</igx-time-picker>
````

The TimePicker input group could be retemplated.
```html
Expand Down