Skip to content

Commit 76a9679

Browse files
committed
chore: moved apple-pay, google-pay to github.com/NativeScript/payments
1 parent a2673ee commit 76a9679

File tree

177 files changed

+231
-18416
lines changed

Some content is hidden

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

177 files changed

+231
-18416
lines changed

README.md

Lines changed: 23 additions & 25 deletions
Original file line numberDiff line numberDiff line change
@@ -5,31 +5,29 @@ npm run setup
55
npm start
66
```
77

8-
- @nativescript/animated-circle
9-
- @nativescript/appavailability
10-
- @nativescript/apple-pay
11-
- @nativescript/auto-fit-text
12-
- @nativescript/background-http
13-
- @nativescript/brightness
14-
- @nativescript/camera
15-
- @nativescript/datetimepicker
16-
- @nativescript/debug-android
17-
- @nativescript/debug-ios
18-
- @nativescript/detox
19-
- @nativescript/directions
20-
- @nativescript/email
21-
- @nativescript/fingerprint-auth
22-
- @nativescript/geolocation
23-
- @nativescript/google-pay
24-
- @nativescript/imagepicker
25-
- @nativescript/ios-security
26-
- @nativescript/iqkeyboardmanager
27-
- @nativescript/local-notifications
28-
- @nativescript/localize
29-
- @nativescript/picker
30-
- @nativescript/shared-notification-delegate
31-
- @nativescript/social-share
32-
- @nativescript/zip
8+
- [@nativescript/animated-circle](packages/animated-circle/README.md)
9+
- [@nativescript/appavailability](packages/appavailability/README.md)
10+
- [@nativescript/auto-fit-text](packages/auto-fit-text/README.md)
11+
- [@nativescript/background-http](packages/background-http/README.md)
12+
- [@nativescript/brightness](packages/brightness/README.md)
13+
- [@nativescript/camera](packages/camera/README.md)
14+
- [@nativescript/datetimepicker](packages/datetimepicker/README.md)
15+
- [@nativescript/debug-android](packages/debug-android/README.md)
16+
- [@nativescript/debug-ios](packages/debug-ios/README.md)
17+
- [@nativescript/detox](packages/detox/README.md)
18+
- [@nativescript/directions](packages/directions/README.md)
19+
- [@nativescript/email](packages/email/README.md)
20+
- [@nativescript/fingerprint-auth](packages/fingerprint-auth/README.md)
21+
- [@nativescript/geolocation](packages/geolocation/README.md)
22+
- [@nativescript/imagepicker](packages/imagepicker/README.md)
23+
- [@nativescript/ios-security](packages/ios-security/README.md)
24+
- [@nativescript/iqkeyboardmanager](packages/iqkeyboardmanager/README.md)
25+
- [@nativescript/local-notifications](packages/local-notifications/README.md)
26+
- [@nativescript/localize](packages/localize/README.md)
27+
- [@nativescript/picker](packages/picker/README.md)
28+
- [@nativescript/shared-notification-delegate](packages/shared-notification-delegate/README.md)
29+
- [@nativescript/social-share](packages/social-share/README.md)
30+
- [@nativescript/zip](packages/zip/README.md)
3331

3432
# How to use?
3533

apps/demo-angular/package.json

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,6 @@
55
"@nativescript/debug-ios": "file:../../dist/packages/debug-ios",
66
"@nativescript/animated-circle": "file:../../dist/packages/animated-circle",
77
"@nativescript/appavailability": "file:../../dist/packages/appavailability",
8-
"@nativescript/apple-pay": "file:../../dist/packages/apple-pay",
98
"@nativescript/auto-fit-text": "file:../../dist/packages/auto-fit-text",
109
"@nativescript/background-http": "file:../../dist/packages/background-http",
1110
"@nativescript/brightness": "file:../../dist/packages/brightness",
@@ -17,7 +16,6 @@
1716
"@nativescript/email": "file:../../dist/packages/email",
1817
"@nativescript/fingerprint-auth": "file:../../dist/packages/fingerprint-auth",
1918
"@nativescript/geolocation": "file:../../dist/packages/geolocation",
20-
"@nativescript/google-pay": "file:../../dist/packages/google-pay",
2119
"@nativescript/imagepicker": "file:../../dist/packages/imagepicker",
2220
"@nativescript/ios-security": "file:../../dist/packages/ios-security",
2321
"@nativescript/iqkeyboardmanager": "file:../../dist/packages/iqkeyboardmanager",

apps/demo-angular/src/app-routing.module.ts

Lines changed: 25 additions & 26 deletions
Original file line numberDiff line numberDiff line change
@@ -5,32 +5,31 @@ import { NativeScriptRouterModule } from '@nativescript/angular';
55
import { HomeComponent } from './home.component';
66

77
const routes: Routes = [
8-
{ path: '', redirectTo: '/home', pathMatch: 'full' },
9-
{ path: 'home', component: HomeComponent },
10-
{ path: 'animated-circle', loadChildren: () => import('./plugin-demos/animated-circle.module').then((m) => m.AnimatedCircleModule) },
11-
{ path: 'appavailability', loadChildren: () => import('./plugin-demos/appavailability.module').then((m) => m.AppavailabilityModule) },
12-
{ path: 'apple-pay', loadChildren: () => import('./plugin-demos/apple-pay.module').then((m) => m.ApplePayModule) },
13-
{ path: 'auto-fit-text', loadChildren: () => import('./plugin-demos/auto-fit-text.module').then((m) => m.AutoFitTextModule) },
14-
{ path: 'background-http', loadChildren: () => import('./plugin-demos/background-http.module').then((m) => m.BackgroundHttpModule) },
15-
{ path: 'brightness', loadChildren: () => import('./plugin-demos/brightness.module').then((m) => m.BrightnessModule) },
16-
{ path: 'camera', loadChildren: () => import('./plugin-demos/camera.module').then((m) => m.CameraModule) },
17-
{ path: 'datetimepicker', loadChildren: () => import('./plugin-demos/datetimepicker.module').then((m) => m.DatetimepickerModule) },
18-
{ path: 'debug-android', loadChildren: () => import('./plugin-demos/debug-android.module').then((m) => m.DebugAndroidModule) },
19-
{ path: 'debug-ios', loadChildren: () => import('./plugin-demos/debug-ios.module').then((m) => m.DebugIosModule) },
20-
{ path: 'detox', loadChildren: () => import('./plugin-demos/detox.module').then((m) => m.DetoxModule) },
21-
{ path: 'directions', loadChildren: () => import('./plugin-demos/directions.module').then((m) => m.DirectionsModule) },
22-
{ path: 'email', loadChildren: () => import('./plugin-demos/email.module').then((m) => m.EmailModule) },
23-
{ path: 'fingerprint-auth', loadChildren: () => import('./plugin-demos/fingerprint-auth.module').then((m) => m.FingerprintAuthModule) },
24-
{ path: 'geolocation', loadChildren: () => import('./plugin-demos/geolocation.module').then((m) => m.GeolocationModule) },
25-
{ path: 'google-pay', loadChildren: () => import('./plugin-demos/google-pay.module').then((m) => m.GooglePayModule) },
26-
{ path: 'imagepicker', loadChildren: () => import('./plugin-demos/imagepicker.module').then((m) => m.ImagepickerModule) },
27-
{ path: 'iqkeyboardmanager', loadChildren: () => import('./plugin-demos/iqkeyboardmanager.module').then((m) => m.IqkeyboardmanagerModule) },
28-
{ path: 'local-notifications', loadChildren: () => import('./plugin-demos/local-notifications.module').then((m) => m.LocalNotificationsModule) },
29-
{ path: 'localize', loadChildren: () => import('./plugin-demos/localize.module').then((m) => m.LocalizeModule) },
30-
{ path: 'picker', loadChildren: () => import('./plugin-demos/picker.module').then((m) => m.PickerModule) },
31-
{ path: 'shared-notification-delegate', loadChildren: () => import('./plugin-demos/shared-notification-delegate.module').then((m) => m.SharedNotificationDelegateModule) },
32-
{ path: 'social-share', loadChildren: () => import('./plugin-demos/social-share.module').then((m) => m.SocialShareModule) },
33-
{ path: 'zip', loadChildren: () => import('./plugin-demos/zip.module').then((m) => m.ZipModule) },
8+
{ path: '', redirectTo: '/home', pathMatch: 'full' },
9+
{ path: 'home', component: HomeComponent },
10+
{ path: 'animated-circle', loadChildren: () => import('./plugin-demos/animated-circle.module').then(m => m.AnimatedCircleModule) },
11+
{ path: 'appavailability', loadChildren: () => import('./plugin-demos/appavailability.module').then(m => m.AppavailabilityModule) },
12+
{ path: 'auto-fit-text', loadChildren: () => import('./plugin-demos/auto-fit-text.module').then(m => m.AutoFitTextModule) },
13+
{ path: 'background-http', loadChildren: () => import('./plugin-demos/background-http.module').then(m => m.BackgroundHttpModule) },
14+
{ path: 'brightness', loadChildren: () => import('./plugin-demos/brightness.module').then(m => m.BrightnessModule) },
15+
{ path: 'camera', loadChildren: () => import('./plugin-demos/camera.module').then(m => m.CameraModule) },
16+
{ path: 'datetimepicker', loadChildren: () => import('./plugin-demos/datetimepicker.module').then(m => m.DatetimepickerModule) },
17+
{ path: 'debug-android', loadChildren: () => import('./plugin-demos/debug-android.module').then(m => m.DebugAndroidModule) },
18+
{ path: 'debug-ios', loadChildren: () => import('./plugin-demos/debug-ios.module').then(m => m.DebugIosModule) },
19+
{ path: 'detox', loadChildren: () => import('./plugin-demos/detox.module').then(m => m.DetoxModule) },
20+
{ path: 'directions', loadChildren: () => import('./plugin-demos/directions.module').then(m => m.DirectionsModule) },
21+
{ path: 'email', loadChildren: () => import('./plugin-demos/email.module').then(m => m.EmailModule) },
22+
{ path: 'fingerprint-auth', loadChildren: () => import('./plugin-demos/fingerprint-auth.module').then(m => m.FingerprintAuthModule) },
23+
{ path: 'geolocation', loadChildren: () => import('./plugin-demos/geolocation.module').then(m => m.GeolocationModule) },
24+
{ path: 'imagepicker', loadChildren: () => import('./plugin-demos/imagepicker.module').then(m => m.ImagepickerModule) },
25+
{ path: 'ios-security', loadChildren: () => import('./plugin-demos/ios-security.module').then(m => m.IosSecurityModule) },
26+
{ path: 'iqkeyboardmanager', loadChildren: () => import('./plugin-demos/iqkeyboardmanager.module').then(m => m.IqkeyboardmanagerModule) },
27+
{ path: 'local-notifications', loadChildren: () => import('./plugin-demos/local-notifications.module').then(m => m.LocalNotificationsModule) },
28+
{ path: 'localize', loadChildren: () => import('./plugin-demos/localize.module').then(m => m.LocalizeModule) },
29+
{ path: 'picker', loadChildren: () => import('./plugin-demos/picker.module').then(m => m.PickerModule) },
30+
{ path: 'shared-notification-delegate', loadChildren: () => import('./plugin-demos/shared-notification-delegate.module').then(m => m.SharedNotificationDelegateModule) },
31+
{ path: 'social-share', loadChildren: () => import('./plugin-demos/social-share.module').then(m => m.SocialShareModule) },
32+
{ path: 'zip', loadChildren: () => import('./plugin-demos/zip.module').then(m => m.ZipModule) }
3433
];
3534

3635
@NgModule({

apps/demo-angular/src/home.component.ts

Lines changed: 71 additions & 77 deletions
Original file line numberDiff line numberDiff line change
@@ -6,80 +6,74 @@ import { Component } from '@angular/core';
66
})
77
export class HomeComponent {
88
demos = [
9-
{
10-
name: 'animated-circle',
11-
},
12-
{
13-
name: 'appavailability',
14-
},
15-
{
16-
name: 'apple-pay',
17-
},
18-
{
19-
name: 'auto-fit-text',
20-
},
21-
{
22-
name: 'background-http',
23-
},
24-
{
25-
name: 'brightness',
26-
},
27-
{
28-
name: 'camera',
29-
},
30-
{
31-
name: 'datetimepicker',
32-
},
33-
{
34-
name: 'debug-android',
35-
},
36-
{
37-
name: 'debug-ios',
38-
},
39-
{
40-
name: 'detox',
41-
},
42-
{
43-
name: 'directions',
44-
},
45-
{
46-
name: 'email',
47-
},
48-
{
49-
name: 'fingerprint-auth',
50-
},
51-
{
52-
name: 'geolocation',
53-
},
54-
{
55-
name: 'google-pay',
56-
},
57-
{
58-
name: 'imagepicker',
59-
},
60-
{
61-
name: 'ios-security',
62-
},
63-
{
64-
name: 'iqkeyboardmanager',
65-
},
66-
{
67-
name: 'local-notifications',
68-
},
69-
{
70-
name: 'localize',
71-
},
72-
{
73-
name: 'picker',
74-
},
75-
{
76-
name: 'shared-notification-delegate',
77-
},
78-
{
79-
name: 'social-share',
80-
},
81-
{
82-
name: 'zip',
83-
},
84-
];
85-
}
9+
{
10+
name: 'animated-circle'
11+
},
12+
{
13+
name: 'appavailability'
14+
},
15+
{
16+
name: 'auto-fit-text'
17+
},
18+
{
19+
name: 'background-http'
20+
},
21+
{
22+
name: 'brightness'
23+
},
24+
{
25+
name: 'camera'
26+
},
27+
{
28+
name: 'datetimepicker'
29+
},
30+
{
31+
name: 'debug-android'
32+
},
33+
{
34+
name: 'debug-ios'
35+
},
36+
{
37+
name: 'detox'
38+
},
39+
{
40+
name: 'directions'
41+
},
42+
{
43+
name: 'email'
44+
},
45+
{
46+
name: 'fingerprint-auth'
47+
},
48+
{
49+
name: 'geolocation'
50+
},
51+
{
52+
name: 'imagepicker'
53+
},
54+
{
55+
name: 'ios-security'
56+
},
57+
{
58+
name: 'iqkeyboardmanager'
59+
},
60+
{
61+
name: 'local-notifications'
62+
},
63+
{
64+
name: 'localize'
65+
},
66+
{
67+
name: 'picker'
68+
},
69+
{
70+
name: 'shared-notification-delegate'
71+
},
72+
{
73+
name: 'social-share'
74+
},
75+
{
76+
name: 'zip'
77+
}
78+
];
79+
}

apps/demo-angular/src/plugin-demos/apple-pay.component.html

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

apps/demo-angular/src/plugin-demos/apple-pay.component.ts

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

apps/demo-angular/src/plugin-demos/apple-pay.module.ts

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

apps/demo-angular/src/plugin-demos/google-pay.component.html

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

apps/demo-angular/src/plugin-demos/google-pay.component.ts

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

apps/demo-angular/src/plugin-demos/google-pay.module.ts

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

apps/demo/package.json

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,6 @@
66
"dependencies": {
77
"@nativescript/animated-circle": "file:../../packages/animated-circle",
88
"@nativescript/appavailability": "file:../../packages/appavailability",
9-
"@nativescript/apple-pay": "file:../../packages/apple-pay",
109
"@nativescript/auto-fit-text": "file:../../packages/auto-fit-text",
1110
"@nativescript/background-http": "file:../../packages/background-http",
1211
"@nativescript/brightness": "file:../../packages/brightness",
@@ -20,7 +19,6 @@
2019
"@nativescript/email": "file:../../packages/email",
2120
"@nativescript/fingerprint-auth": "file:../../packages/fingerprint-auth",
2221
"@nativescript/geolocation": "file:../../packages/geolocation",
23-
"@nativescript/google-pay": "file:../../packages/google-pay",
2422
"@nativescript/imagepicker": "file:../../packages/imagepicker",
2523
"@nativescript/ios-security": "file:../../packages/ios-security",
2624
"@nativescript/iqkeyboardmanager": "file:../../packages/iqkeyboardmanager",

apps/demo/src/main-page.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
<StackLayout>
88
<Button text="animated-circle" tap="{{ viewDemo }}" class="btn btn-primary view-demo"/>
99
<Button text="appavailability" tap="{{ viewDemo }}" class="btn btn-primary view-demo"/>
10-
<Button text="apple-pay" tap="{{ viewDemo }}" class="btn btn-primary view-demo"/>
10+
1111
<Button text="auto-fit-text" tap="{{ viewDemo }}" class="btn btn-primary view-demo"/>
1212
<Button text="background-http" tap="{{ viewDemo }}" class="btn btn-primary view-demo"/>
1313
<Button text="brightness" tap="{{ viewDemo }}" class="btn btn-primary view-demo"/>
@@ -20,7 +20,7 @@
2020
<Button text="email" tap="{{ viewDemo }}" class="btn btn-primary view-demo"/>
2121
<Button text="fingerprint-auth" tap="{{ viewDemo }}" class="btn btn-primary view-demo"/>
2222
<Button text="geolocation" tap="{{ viewDemo }}" class="btn btn-primary view-demo"/>
23-
<Button text="google-pay" tap="{{ viewDemo }}" class="btn btn-primary view-demo"/>
23+
2424
<Button text="imagepicker" tap="{{ viewDemo }}" class="btn btn-primary view-demo"/>
2525
<Button text="ios-security" tap="{{ viewDemo }}" class="btn btn-primary view-demo"/>
2626
<Button text="iqkeyboardmanager" tap="{{ viewDemo }}" class="btn btn-primary view-demo"/>

0 commit comments

Comments
 (0)