Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

nativescript-bottom-navigation

Package Overview
Dependencies
Maintainers
1
Versions
21
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

nativescript-bottom-navigation - npm Package Compare versions

Comparing version 1.1.0 to 1.1.2

5

angular/index.d.ts

@@ -1,1 +0,4 @@

export * from "./nativescript-bottom-navigation.module";
import { NgModule } from '@angular/core';
@NgModule()
export declare class NativescriptBottomNavigationModule {}

30

index.d.ts

@@ -1,3 +0,3 @@

import { BottomNavigationBase, BottomNavigationTabBase } from './bottom-navigation.common';
import { EventData } from 'tns-core-modules/data/observable';
import { AddChildFromBuilder, View } from 'tns-core-modules/ui/core/view';

@@ -9,5 +9,5 @@ export declare interface OnTabSelectedEventData extends EventData {

export declare class BottomNavigation extends BottomNavigationBase {
export declare abstract class BottomNavigationBase extends View implements AddChildFromBuilder {
public tabs: BottomNavigationTab[];
public tabs: BottomNavigationTabBase[];

@@ -22,2 +22,24 @@ public selectedTabIndex: number;

public selectTab(index: number): void;
_addChildFromBuilder(name: string, value: any): void;
protected abstract selectTabNative(index: number): void;
}
export declare class BottomNavigationTabBase {
public title: string;
public icon: string;
public selectable: boolean;
parent: WeakRef<BottomNavigationBase>;
constructor(title: string, icon: string, selectable?: boolean, parent?: WeakRef<BottomNavigationBase>);
}
export declare class BottomNavigation extends BottomNavigationBase {
readonly ios: any;

@@ -31,4 +53,2 @@

public selectTab(index: number): void;
protected selectTabNative(index: number): void;

@@ -35,0 +55,0 @@ }

{
"name": "nativescript-bottom-navigation",
"version": "1.1.0",
"version": "1.1.2",
"description": "Nativescript plugin to add a bottom navigation component for Android & iOS",

@@ -9,3 +9,3 @@ "main": "bottom-navigation",

"platforms": {
"android": "3.0.0",
"android": "3.0.1",
"ios": "3.0.0"

@@ -41,6 +41,8 @@ }

"JavaScript",
"Typescript",
"Android",
"iOS",
"Henry Chavez",
"Bytpher"
"Bytpher",
"Bottom Navigation"
],

@@ -47,0 +49,0 @@ "author": {

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