🚀 Socket Launch Week Day 5:Introducing Repository Access Permissions and Custom Roles.Learn more
Sign In

react-native-airship

Package Overview
Dependencies
Maintainers
5
Versions
19
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

react-native-airship - npm Package Compare versions

Comparing version
0.2.12
to
0.3.0
+7
-0
CHANGELOG.md
# react-native-airship
## Unreleased
## 0.3.0 (2026-06-13)
- changed: Convert the build tooling from Yarn to npm.
- security: Upgrade dependencies per Socket security recommendations.
## 0.2.12 (2023-07-07)

@@ -4,0 +11,0 @@

+1
-1

@@ -20,3 +20,3 @@ import * as React from 'react';

*/
export declare type AirshipRender<T> = (bridge: AirshipBridge<T>) => React.ReactNode;
export type AirshipRender<T> = (bridge: AirshipBridge<T>) => React.ReactNode;
/**

@@ -23,0 +23,0 @@ * Props the Airship container component accepts.

/**
* The four sides (top, right, bottom, left) as a tuple.
*/
export declare type SideList = [number, number, number, number];
export type SideList = [number, number, number, number];
export interface Margin {

@@ -6,0 +6,0 @@ marginBottom: number;

{
"name": "react-native-airship",
"version": "0.2.12",
"version": "0.3.0",
"private": false,

@@ -59,4 +59,4 @@ "description": "Flexible toolkit for building modals & alerts",

"rimraf": "^3.0.2",
"typescript": "^4.1.2"
"typescript": "^4.9.5"
}
}

@@ -27,6 +27,6 @@ # react-native-airship

Install `react-native-airship` using either NPM or yarn:
Install `react-native-airship` using either NPM or npm install:
```sh
yarn add react-native-airship
npm install react-native-airship
# or:

@@ -64,2 +64,2 @@ npm i -s react-native-airship

This repository includes a [demo application](./AirshipDemo/) you can use to try out the Airship. You will need to run `yarn install` or `npm install` separately in that folder to set up the demo, and then run either `react-native run-android` or `react-native run-ios` to start the demo.
This repository includes a [demo application](./AirshipDemo/) you can use to try out the Airship. You will need to run `npm install` or `npm install` separately in that folder to set up the demo, and then run either `react-native run-android` or `react-native run-ios` to start the demo.