blob: 565c079ebc24060b5f8398528b9e522d3a320c9f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
|
<div class="row">
<div class="col-sm-12">
<h3 class="pageHeading">Breaking Changes</h3>
<p>Below are the breaking changes since v3.x.x</p>
<ol>
<li>
<code>input-model</code> <strike>is now static (not dynamically updated), hence why we need output-model. On the plus side, you now can
re-use the input model where necessary.</strike> Sorry, it's now back like version 2.x.x. As for now it's the only way to allow dynamic
update into the input-model. If you need to re-use the input model, copy them into a new variable.
</li>
</ol>
<p>Below are the breaking changes since v2.x.x</p>
<ol>
<li>
File name and the directive name have been changed. I am really sorry for this, but this is the only workaround
to prevent wrong language statistic in Github (they don't count files whose name starts with "angular"). The repository name stays the same.
</li>
<li>
<code>output-model</code> is now required.
</li>
<li>
<code>input-model</code> is now static (not dynamically updated), hence why we need output-model. On the plus side, you now can
re-use the input model where necessary.
</li>
<li>
<code>default-label</code> is deprecated. Custom text and translations can be done using the <code>translation</code> attribute.
</li>
</ol>
</div>
</div>
|