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
+8
Original file line number
Diff line number
Diff line change
@@ -7,6 +7,8 @@ All notable changes for each version of this project will be documented in this
7
7
### General
8
8
-`IgxGrid`, `IgxTreeGrid`, `IgxHierarchicalGrid`
9
9
-**Breaking Change** - The `locale` and `pipeArgs` parameters are removed from the `operate` method exposed by the `IgxNumberSummaryOperand`, `IgxDateSummaryOperand`, `IgxCurrencySummaryOperand` and `IgxPercentSummaryOperand`. They are now set in the `igx-grid-summary-cell` template. To change the locale and format setting of the `igx-grid-summary-cell` the user can use the new `summaryFormatter` property of the `IgxColumnComponent`.
10
+
-`IgxTabs`, `IgxBottomNav`
11
+
-**Breaking Change** - `IgxTabs` and `IgxBottomNav` components were completely refactored in order to provide more flexible and descriptive way to define tab headers and contents. Please make sure to update via `ng update` in order to migrate the existing `igx-tabs` and `igx-bottom-nav` definitions to the new ones.
@@ -40,6 +42,12 @@ All notable changes for each version of this project will be documented in this
40
42
- **Behavioral Change** - `Column Autosize` feature now does not handle templated headers where the first level children are sized based on parent like default `div` and etc. Autosizing for such headers will not result in change.
41
43
- **Behavioral Change** - Calling `autosize` through the `IgxColumnComponent` API now takes into consideration the `minWidth` and `maxWidth` of the column.
42
44
- A new `IgxColumnComponent` input property is exposed called `autosizeHeader`, which if false, allows the autosizing to ignore the header cell and autosize only based on content cells.
45
+
- `IgxTabs`
46
+
- The `tabAlignment` property of the `IgxTabs` component replaces the `type` property and enables you to set the tab alignment to `start`, `center`, `end` and `justify`.
47
+
- The `igx-tab-header` supports `igx-prefix` and `igx-suffix` directives in its `ng-content`.
48
+
- `IgxBottomNav`
49
+
- The `IgxBottomNav` component exposes `disableAnimations` property which determines whether the contents should animate when switching the selected item. The property is set to `true` by default which means that the animations are disabled.
50
+
43
51
### Themes:
44
52
- Breaking Changes:
45
53
- `IgxButton` theme has been simplified. The number of theme params (`igx-button-theme`) has been reduced significantly and no longer includes prefixed parameters (`flat-*`, `raised-*`, etc.). See the migration guide to update existing button themes. Updates performed with `ng update` will migrate existing button themes but some additional tweaking may be required to account for the abscense of prefixed params.
@@ -21,6 +23,8 @@ describe('Update to 12.0.0', () => {
21
23
};
22
24
23
25
constmigrationName='migration-20';
26
+
// eslint-disable-next-line max-len
27
+
constnoteText=`<!--NOTE: This component has been updated by Infragistics migration: v${version}\nPlease check your template whether all bindings/event handlers are correct.-->`;
24
28
25
29
beforeEach(()=>{
26
30
appTree=newUnitTestTree(newEmptyTree());
@@ -30,7 +34,7 @@ describe('Update to 12.0.0', () => {
0 commit comments