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
@@ -121,13 +121,19 @@ All notable changes for each version of this project will be documented in this
121
121
- `onAppended` -> `contentAppended`
122
122
- `onAnimation` -> `animationStarting`
123
123
124
+
- `IgxMaskDirective`
125
+
- **Breaking Change** - Deprecated property `placeholder` is now removed;
126
+
- **Breaking Change** - `IgxMaskDirective` events are renamed as follows:
127
+
- `onValueChange` -> `valueChanged`
128
+
124
129
- **Breaking Change** - `IgxBannerComponent` events are renamed as follows:
125
130
- `onOpening` -> `opening`
126
131
- `onOpened` -> `opened`
127
132
- `onClosing` -> `closing`
128
133
- `onClosed` -> `closed`
129
134
130
135
- `IgxExpansionPanelComponent`
136
+
- **Breaking Change** - `IExpansionPanelEventArgs.panel` - Deprecated event property `panel` is removed. Usе `owner` property to get a reference to the panel.
131
137
- **Breaking Change** - `IgxExpansionPanelComponent` events are renamed as follows:
132
138
- `onCollapsed` -> `contentCollapsed`
133
139
- `onExpanded` -> `contentExpanded`
@@ -144,6 +150,8 @@ All notable changes for each version of this project will be documented in this
144
150
...
145
151
</igx-expansion-panel>
146
152
```
153
+
- `IgxBanner`
154
+
- `BannerEventArgs.banner` - Deprecated. Usе `owner` property to get a reference to the banner.
147
155
148
156
- `IgxDropDown`
149
157
- **Breaking Change** - The dropdown items no longer takes focus unless `allowItemsFocus` is set to `true`.
Copy file name to clipboardExpand all lines: projects/igniteui-angular/migrations/update-12_1_0/index.spec.ts
+90-2
Original file line number
Diff line number
Diff line change
@@ -24,8 +24,6 @@ describe(`Update to ${version}`, () => {
24
24
25
25
constmigrationName='migration-21';
26
26
constlineBreaksAndSpaceRegex=/\s/g;
27
-
// eslint-disable-next-line max-len
28
-
constnoteText=`<!--NOTE: This component has been updated by Infragistics migration: v${version}\nPlease check your template whether all bindings/event handlers are correct.-->`;
29
27
30
28
beforeEach(()=>{
31
29
appTree=newUnitTestTree(newEmptyTree());
@@ -176,6 +174,50 @@ export class TestComponent implements OnInit {
176
174
}`);
177
175
});
178
176
177
+
it('should update mask event subscriptions in .html file',async()=>{
0 commit comments