Skip to content

Commit 8a92bb9

Browse files
committed
update docs
1 parent d2987c6 commit 8a92bb9

3 files changed

Lines changed: 10 additions & 1 deletion

File tree

CHANGELOG.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,11 @@
1+
## [0.0.18] - 2020-06-18
2+
New features:
3+
- `<param>` now has anew `superParamName` attribute which will pass the parameter to super class constructor.
4+
Breaking changes:
5+
- `<if>` and `:if` will now return a null (instead of Container(width: 0, height: 0)) is the else statement, if there is no `<else>` provided.
6+
Fixes:
7+
- Fix goto definition bug in the new vscode release.
8+
19
## [0.0.10] - 2019-08-15
210
Breaking changes:
311
- :formControl now accept both a variable and a string value, so current usge will break and all you need to do is to convert this :formControl="MyControlName" to :formControl="'MyControlName'".

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
"displayName": "XML Layout for Flutter",
44
"description": "XML Layout for Flutter. Brings Angular's style to Flutter!",
55
"publisher": "WaseemDev",
6-
"version": "0.0.17",
6+
"version": "0.0.18",
77
"icon": "images/logo.png",
88
"repository": {
99
"type": "github",

src/models/models.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,7 @@ export interface ParamModel {
2424
type: string;
2525
value: string;
2626
required: boolean;
27+
superParamName: string;
2728
}
2829

2930
export interface WidgetModel {

0 commit comments

Comments
 (0)