
Security News
The Hidden Blast Radius of the Axios Compromise
The Axios compromise shows how time-dependent dependency resolution makes exposure harder to detect and contain.
ionic-ios-header
Advanced tools
Simple ionic module that emulates iOS 11 headers. Still in development 😎
Install it from npm:
npm i --save ionic-ios-header
You just need to import the module:
import { IonicIOSHeaderModule } from 'ionic-ios-header';
@NgModule({
...
imports: [
IonicIOSHeaderModule
]
...
It's easy! Just use the header-content component, instead of ion-header and ion-content, in your page!
<header-content search="true" [(query)]="query" title="Photos">
//What you put here will be placed inside ion-content
<ion-card *ngFor="let photo of photos; let i = index">
<img [src]="photo"/>
</ion-card>
</header-content>
This is a pretty complete example:
search attribute displays a search if set.query attribute 2-way-binds a variable to the search input: no need to manage events!title attribute is self-explanatoryYou can use pre-made styles make the header even cooler! At the moment there are two stiles:
blur-overlay which is my attempt at emulating the native blur effect found iOS 11 headers.white-noborder which displays a white background header whith no borders.Simply import one in your src/theme/variables.css
@import "../../node-modules/ionic-ios-header/scss/blur-overlay";
@import "ionic.globals";
FAQs
A Simple Ionic Module that emulates iOS 11 headers
We found that ionic-ios-header demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Security News
The Axios compromise shows how time-dependent dependency resolution makes exposure harder to detect and contain.

Research
A supply chain attack on Axios introduced a malicious dependency, plain-crypto-js@4.2.1, published minutes earlier and absent from the project’s GitHub releases.

Research
Malicious versions of the Telnyx Python SDK on PyPI delivered credential-stealing malware via a multi-stage supply chain attack.