Skip to content
Open
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Merge remote-tracking branch 'origin/main' into feat/mmkv
  • Loading branch information
NathanWalker committed Jan 31, 2023
commit 2e144a30db91a29d28d5b129ebae747a48dec2ee
3 changes: 2 additions & 1 deletion apps/demo/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -32,9 +32,10 @@
"@nativescript/ios-security": "file:../../packages/ios-security",
"@nativescript/iqkeyboardmanager": "file:../../packages/iqkeyboardmanager",
"@nativescript/local-notifications": "file:../../packages/local-notifications",
"@nativescript/localize": "file:../../packages/localize",
"@nativescript/localize": "file:../../dist/packages/localize",
"@nativescript/mmkv": "file:../../packages/mmkv",
"@nativescript/mmkv-metal": "file:../../packages/mmkv-metal",
"@nativescript/pdf": "file:../../packages/pdf",
"@nativescript/picker": "file:../../packages/picker",
"@nativescript/shared-notification-delegate": "file:../../packages/shared-notification-delegate",
"@nativescript/social-share": "file:../../packages/social-share",
Expand Down
3 changes: 1 addition & 2 deletions packages/geolocation/index.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -131,14 +131,13 @@ export function getCurrentLocation(options?: Options): Promise<Location>;
*/
export function watchLocation(successCallback: successCallbackType, errorCallback: errorCallbackType, options?: Options): number;


/**
* Monitor for location permission change. Only on iOS!
* @param permissionCallback gets called on location permission state change
* @param errorCallback gets called on error
* @returns {number} the watch id
*/
export function watchPermissionStatus(permissionCallback: permissionCallbackType, errorCallback: errorCallbackType): number;
export function watchPermissionStatus(permissionCallback: permissionCallbackType, errorCallback: errorCallbackType): number;

/**
* Stop monitoring for location change. Parameter expected is the watchId returned from `watchLocation`.
Expand Down
2 changes: 1 addition & 1 deletion packages/google-maps/utils/index.android.ts
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ export function intoNativeMarkerOptions(options: MarkerOptions) {
opts.icon(com.google.android.gms.maps.model.BitmapDescriptorFactory.defaultMarker(hueFromColor(color)));
}

if(typeof options?.opacity === 'number') {
if (typeof options?.opacity === 'number') {
opts.alpha(options.opacity);
}

Expand Down
2 changes: 1 addition & 1 deletion tsconfig.base.json
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@
"@nativescript/local-notifications": ["packages/local-notifications/index.d.ts"],
"@nativescript/localize": ["packages/localize/index.d.ts"],
"@nativescript/localize/angular": ["packages/localize/angular/index.ts"],
"@nativescript/mmkv": ["packages/mmkv/index.d.ts"],
"@nativescript/mmkv": ["packages/mmkv/index.d.ts"],
"@nativescript/mmkv-metal": ["packages/mmkv-metal/index.d.ts"],
"@nativescript/pdf": ["packages/pdf/index.d.ts"],
"@nativescript/picker": ["packages/picker/index.d.ts"],
Expand Down
2 changes: 1 addition & 1 deletion workspace.json
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@
"jetpack-compose": "packages/jetpack-compose",
"local-notifications": "packages/local-notifications",
"localize": "packages/localize",
"mmkv": "packages/mmkv",
"mmkv": "packages/mmkv",
"mmkv-metal": "packages/mmkv-metal",
"pdf": "packages/pdf",
"picker": "packages/picker",
Expand Down
You are viewing a condensed version of this merge commit. You can view the full changes here.