Skip to content

Commit eb5d25f

Browse files
committed
Update dependencies in examples
1 parent 2459c15 commit eb5d25f

File tree

34 files changed

+60
-60
lines changed

34 files changed

+60
-60
lines changed

examples/bind-and-convert-jsx/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,8 @@
33
"version": "3.5.0",
44
"dependencies": {
55
"reflect-metadata": "^0.1.13",
6-
"tabris": "^3.7.0",
7-
"tabris-decorators": "^3.7.0"
6+
"tabris": "^3.8.0",
7+
"tabris-decorators": "^3.8.0"
88
},
99
"devDependencies": {
1010
"typescript": "3.8.x"

examples/bind-and-convert/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,8 @@
33
"version": "3.5.0",
44
"dependencies": {
55
"reflect-metadata": "^0.1.13",
6-
"tabris": "^3.7.0",
7-
"tabris-decorators": "^3.7.0"
6+
"tabris": "^3.8.0",
7+
"tabris-decorators": "^3.8.0"
88
},
99
"devDependencies": {
1010
"typescript": "3.8.x"

examples/bind-itempicker-list-jsx/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,8 @@
33
"version": "3.5.0",
44
"dependencies": {
55
"reflect-metadata": "^0.1.13",
6-
"tabris": "^3.7.0",
7-
"tabris-decorators": "^3.7.0"
6+
"tabris": "^3.8.0",
7+
"tabris-decorators": "^3.8.0"
88
},
99
"devDependencies": {
1010
"typescript": "3.8.x"

examples/bind-itempicker-list/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,8 @@
33
"version": "3.5.0",
44
"dependencies": {
55
"reflect-metadata": "^0.1.13",
6-
"tabris": "^3.7.0",
7-
"tabris-decorators": "^3.7.0"
6+
"tabris": "^3.8.0",
7+
"tabris-decorators": "^3.8.0"
88
},
99
"devDependencies": {
1010
"typescript": "3.8.x"

examples/bind-listview-array-jsx/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,8 @@
33
"version": "3.5.0",
44
"dependencies": {
55
"reflect-metadata": "^0.1.13",
6-
"tabris": "^3.7.0",
7-
"tabris-decorators": "^3.7.0"
6+
"tabris": "^3.8.0",
7+
"tabris-decorators": "^3.8.0"
88
},
99
"devDependencies": {
1010
"typescript": "3.8.x"

examples/bind-listview-array/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,8 @@
33
"version": "3.5.0",
44
"dependencies": {
55
"reflect-metadata": "^0.1.13",
6-
"tabris": "^3.7.0",
7-
"tabris-decorators": "^3.7.0"
6+
"tabris": "^3.8.0",
7+
"tabris-decorators": "^3.8.0"
88
},
99
"devDependencies": {
1010
"typescript": "3.8.x"

examples/bind-listview-list-jsx/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,8 @@
33
"version": "3.5.0",
44
"dependencies": {
55
"reflect-metadata": "^0.1.13",
6-
"tabris": "^3.7.0",
7-
"tabris-decorators": "^3.7.0"
6+
"tabris": "^3.8.0",
7+
"tabris-decorators": "^3.8.0"
88
},
99
"devDependencies": {
1010
"typescript": "3.8.x"

examples/bind-listview-list/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,8 @@
33
"version": "3.5.0",
44
"dependencies": {
55
"reflect-metadata": "^0.1.13",
6-
"tabris": "^3.7.0",
7-
"tabris-decorators": "^3.7.0"
6+
"tabris": "^3.8.0",
7+
"tabris-decorators": "^3.8.0"
88
},
99
"devDependencies": {
1010
"typescript": "3.8.x"

examples/bind-one-way-jsx/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ This is the JavaScript/JSX variant of the [bind-one-way](../bind-one-way) TypeSc
88

99
Demonstrates the use of the `bind` JSX attribute prefix to create one-way bindings from a custom component instance to its children. This app creates an instance of the included `ExampleComponent` class and checkboxes that allow to change the property values of that instance.
1010

11-
The `ExampleComponent` property `myText` is bound to the `text` properties of a `TextView` child. It has a fallback value (the original `text` that will be displayed when the property `myText` is set to `undefined`. In this example that is the case when the first checkbox is not checked.
11+
The `ExampleComponent` property `myText` is bound to the `text` properties of a `TextView` child. It has a fallback value (the original `text`) that will be displayed when the property `myText` is set to `undefined`. In this example that is the case when the first checkbox is not checked.
1212

1313
The other property `myObject` is of the type `Model`, which is defined in the same file as `ExampleComponent`. In the component the `Model` field `someNumber` is bound to the `ProgressBar` property `selection`. Nested in `Model` is another `OtherModel` whose property `someString` is bound to the last `TextView`. Since its `text` property has an initial text set, this value will be used as the fallback should `myObject` be set to `null`.
1414

examples/bind-one-way-jsx/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,8 @@
33
"version": "3.5.0",
44
"dependencies": {
55
"reflect-metadata": "^0.1.13",
6-
"tabris": "^3.7.0",
7-
"tabris-decorators": "^3.7.0"
6+
"tabris": "^3.8.0",
7+
"tabris-decorators": "^3.8.0"
88
},
99
"devDependencies": {
1010
"typescript": "3.8.x"

0 commit comments

Comments
 (0)