New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

nativescript-parallax

Package Overview
Dependencies
Maintainers
1
Versions
17
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

nativescript-parallax - npm Package Compare versions

Comparing version 1.0.2 to 1.0.3

nativescript-parallax.js

38

nativescript-parallax.d.ts

@@ -1,8 +0,30 @@

declare module 'nativescript-parallax' {
import _scrollViewModule = require('ui/scroll-view');
export class ParallaxViewCommon extends _scrollViewModule.ScrollView {
}
}
import { GridLayout } from 'ui/layouts/grid-layout';
import { View, AddChildFromBuilder } from 'ui/core/view';
import { StackLayout } from 'ui/layouts/stack-layout';
export declare class Header extends StackLayout {
}
export declare class Anchored extends StackLayout {
private _dropShadow;
dropShadow: boolean;
constructor();
}
export declare class Content extends StackLayout {
}
export declare class ParallaxView extends GridLayout implements AddChildFromBuilder {
private _controlsToFade;
private _childLayouts;
private _includesAnchored;
private _topOpacity;
private _loaded;
controlsToFade: string;
android: any;
ios: any;
constructor();
addDropShadow(marginTop: number, width: number): StackLayout;
shadowView(opacity: number, width: number): StackLayout;
fadeViews(topHeight: number, verticalOffset: number, viewsToFade: View[]): void;
getAnchoredTopHeight(topHeight: number, verticalOffset: number): number;
getTopViewHeight(topHeight: number, verticalOffset: number): number;
displayDevWarning(message: string, ...viewsToCollapse: View[]): void;
_addChildFromBuilder: (name: string, value: any) => void;
}
{
"name": "nativescript-parallax",
"version": "1.0.2",
"version": "1.0.3",
"description": "NativeScript Parallax View Plugin.",

@@ -30,7 +30,8 @@ "main": "nativescript-parallax.js",

"Android",
"iOS"
"iOS",
"Parallax"
],
"author": {
"name": "Your Name",
"email": "youremail@yourdomain.com"
"name": "Josh Sommer",
"email": "joshdsommer@gmail.com"
},

@@ -44,4 +45,4 @@ "bugs": {

"devDependencies": {
"typescript": "^1.8.7"
"typescript": "^1.8.9"
}
}

@@ -7,11 +7,10 @@ {

"experimentalDecorators": true,
"sourceMap": true
"sourceMap": true,
"declaration": true
},
"files": [
"demo/node_modules/tns-core-modules/tns-core-modules.d.ts",
"nativescript-parallax.common.ts",
"nativescript-parallax.android.ts",
"nativescript-parallax.ios.ts"
"nativescript-parallax.ts"
],
"compileOnSave": false
}

Sorry, the diff of this file is not supported yet

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc