Skip to content

Commit 51f9115

Browse files
committed
Fix issue: #13
1 parent cbdd203 commit 51f9115

File tree

4 files changed

+29
-17
lines changed

4 files changed

+29
-17
lines changed

demo/package.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -6,10 +6,10 @@
66
"nativescript": {
77
"id": "org.nativescript.demo",
88
"tns-android": {
9-
"version": "3.0.0"
9+
"version": "3.2.0"
1010
},
1111
"tns-ios": {
12-
"version": "3.0.1"
12+
"version": "3.2.0"
1313
}
1414
},
1515
"dependencies": {
@@ -23,11 +23,11 @@
2323
"@angular/platform-browser-dynamic": "4.1.3",
2424
"@angular/router": "4.1.3",
2525
"nativescript-angular": "3.0.0",
26-
"nativescript-fancy-calendar": "file:///Users/rhanb/Documents/DevLove/Plugins/nativescript-fancy-calendar",
26+
"nativescript-fancy-calendar": "file:///Users/rhanb/Documents/DevLove/NativeScript/Plugins/nativescript-fancy-calendar",
2727
"nativescript-theme-core": "~1.0.4",
2828
"reflect-metadata": "~0.1.8",
2929
"rxjs": "~5.2.0",
30-
"tns-core-modules": "^3.0.1",
30+
"tns-core-modules": "^3.2.0",
3131
"zone.js": "^0.8.10"
3232
},
3333
"devDependencies": {

package.json

Lines changed: 23 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,8 @@
66
"typings": "index.d.ts",
77
"nativescript": {
88
"platforms": {
9-
"ios": "3.0.0",
10-
"android": "3.0.0"
9+
"ios": "3.2.0",
10+
"android": "3.2.0"
1111
}
1212
},
1313
"repository": {
@@ -25,11 +25,22 @@
2525
"Android"
2626
],
2727
"author": {
28-
"name": "rhanbIT",
28+
"name": "rhanb",
2929
"email": "aniel.jeanbaptiste@gmail.com"
3030
},
31+
"contributors": [
32+
{
33+
"name": "rhanb",
34+
"email": "aniel.jeanbaptiste@gmail.com"
35+
},
36+
{
37+
"name": "mickaeleuranie",
38+
"email": "mickaeleuranie@gmail.com",
39+
"url": "http://mickaeleuranie.com"
40+
}
41+
],
3142
"bugs": {
32-
"url": "https://github.com/rhanbIT/nativescript-fancy-calendar/issues"
43+
"url": "https://github.com/rhanb/nativescript-fancy-calendar/issues"
3344
},
3445
"scripts": {
3546
"build": "tsc",
@@ -42,11 +53,14 @@
4253
"preparedemo": "npm run build && cd demo && tns plugin remove nativescript-fancy-calendar && tns plugin add .. && tns install",
4354
"save": "cd demo && TNS_TYPESCRIPT_DECLARATIONS_PATH='$(pwd)/typingz' tns build ios"
4455
},
45-
"homepage": "https://github.com/rhanbIT/nativescript-fancy-calendar",
56+
"homepage": "https://github.com/rhanb/nativescript-fancy-calendar",
4657
"readmeFilename": "README.md",
4758
"devDependencies": {
48-
"tns-core-modules": "^3.0.0",
49-
"tns-platform-declarations": "^3.0.1",
50-
"typescript": "^2.3.2"
59+
"tns-core-modules": "^3.2.0",
60+
"tns-platform-declarations": "^3.2.0",
61+
"typescript": "^2.5.3"
62+
},
63+
"peerDependencies": {
64+
"tns-core-modules": "^3.2.0"
5165
}
52-
}
66+
}

references.d.ts

Lines changed: 0 additions & 2 deletions
This file was deleted.

src/ios/calendar.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,8 +18,8 @@ declare const FSCalendar,
1818
FSCalendarScopeWeek,
1919
FSCalendarScopeMonth,
2020
FSCalendarDelegate,
21-
FSCalendarDataSource
22-
CGRectMake;
21+
FSCalendarDataSource,
22+
CGRectMake;
2323

2424
export enum SCROLL_ORIENTATION {
2525
"VERTICAL" = FSCalendarScrollDirectionVertical,

0 commit comments

Comments
 (0)