Skip to content

Commit e7f2ce6

Browse files
committed
bump exampels
1 parent 078ceb0 commit e7f2ce6

File tree

184 files changed

+8786
-384
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

184 files changed

+8786
-384
lines changed

.gitignore

Lines changed: 66 additions & 21 deletions
Original file line numberDiff line numberDiff line change
@@ -1,24 +1,69 @@
1-
.vscode
2-
.idea
1+
# Windows image file caches
2+
Thumbs.db
3+
ehthumbs.db
4+
5+
# Folder config file
6+
Desktop.ini
7+
8+
# Recycle Bin used on file shares
9+
$RECYCLE.BIN/
10+
11+
# Windows Installer files
12+
*.cab
13+
*.msi
14+
*.msm
15+
*.msp
16+
17+
# Windows shortcuts
18+
*.lnk
19+
20+
# =========================
21+
# Operating System Files
22+
# =========================
23+
24+
# OSX
25+
# =========================
26+
327
.DS_Store
28+
.AppleDouble
29+
.LSOverride
30+
.idea
31+
32+
# Thumbnails
33+
._*
34+
35+
# Files that might appear on external disk
36+
.Spotlight-V100
37+
.Trashes
38+
39+
# Directories potentially created on remote AFP share
40+
.AppleDB
41+
.AppleDesktop
42+
Network Trash Folder
43+
Temporary Items
44+
.apdisk
45+
46+
bin
47+
obj
48+
build
49+
.vs
50+
.tscache
51+
*.user
452
*.js
5-
*.js.map
6-
*.log
7-
src/*.d.ts
8-
!src/index.d.ts
9-
!src/references.d.ts
10-
!src/scripts/*.js
11-
!seed-tests/*.js
12-
seed-tests/seed-copy/**/*.*
13-
seed-tests/seed-copy-new-git-repo/**/*.*
14-
!demo/karma.conf.js
15-
!demo/app/tests/*.js
16-
demo/*.d.ts
17-
!demo/references.d.ts
18-
demo/lib
19-
demo/platforms
53+
*.map
54+
!gruntfile.js
2055
node_modules
21-
publish/src
22-
publish/package
23-
demo/report/report.html
24-
demo/report/stats.json
56+
*.tmp.*
57+
platforms
58+
lib
59+
*.css
60+
!webpack.*.js
61+
report
62+
*.log
63+
64+
*.framework
65+
*.aar
66+
67+
Pods
68+
*.lock
69+
*.xcworkspace
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<ActionBar title="NativeScript-Image Angular sample app">
22
</ActionBar>
33
<GridLayout rows="*, auto, auto">
4-
<Image #drawee verticalAlignment="center" placeholderImageUri="res://ns_logo" aspectRatio="2" imageUri="https://raw.githubusercontent.com/Akylas/nativescript-image/master/examples-data/breakfast1.jpg"></Image>
4+
<Image #drawee verticalAlignment="center" placeholderImageUri="res://ns_logo" src="https://raw.githubusercontent.com/Akylas/nativescript-image/master/examples-data/breakfast1.jpg"></Image>
55
<Button text="Animate to 0" row="1" (tap)="onAnimateToZero($event)"></Button>
66
<Button text="Animate to 1" row="2" (tap)="onAnimateToOne($event)"></Button>
77
</GridLayout>

demo-angular/references.d.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
1-
/// <reference path="../node_modules/tns-platform-declarations/android-21.d.ts" />
2-
/// <reference path="../node_modules/tns-platform-declarations/ios.d.ts" />
1+
/// <reference path="./node_modules/tns-platform-declarations/android-21.d.ts" />
2+
/// <reference path="./node_modules/tns-platform-declarations/ios.d.ts" />

demo-angular/tsconfig.json

Lines changed: 6 additions & 22 deletions
Original file line numberDiff line numberDiff line change
@@ -7,11 +7,7 @@
77
"noLib": false,
88
"emitDecoratorMetadata": true,
99
"experimentalDecorators": true,
10-
"lib": [
11-
"es6",
12-
"dom",
13-
"es2015.iterable"
14-
],
10+
"lib": ["es6", "dom", "es2015.iterable"],
1511
"pretty": true,
1612
"allowUnreachableCode": false,
1713
"allowUnusedLabels": false,
@@ -23,23 +19,11 @@
2319
"noFallthroughCasesInSwitch": true,
2420
"baseUrl": ".",
2521
"paths": {
26-
"*": [
27-
"./node_modules/tns-core-modules/*",
28-
"./node_modules/*"
29-
],
30-
"~/*": [
31-
"app/*"
32-
]
22+
"~/*": ["app/*"],
23+
"*": ["./node_modules/tns-core-modules/*", "./node_modules/*"]
3324
}
3425
},
35-
"include": [
36-
"../src",
37-
"**/*"
38-
],
39-
"exclude": [
40-
"../src/node_modules",
41-
"node_modules",
42-
"platforms"
43-
],
26+
"include": ["app/**/*", "references.d.ts"],
27+
"exclude": ["node_modules", "platforms"],
4428
"compileOnSave": false
45-
}
29+
}

0 commit comments

Comments
 (0)