npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2026 – Pkg Stats / Ryan Hefner

ionic-modal-component

v0.0.2

Published

Ionic modal as a component

Downloads

20

Readme

ionic-modal-component

Build Status

A better way to handle modals in Ionic

ionic-modal-component is a simple directive that lets you use Ionic modal as a component instead of creating it programmatically.

Component method usage and attributes

  • onShown: Event fired when the modal is shown.
  • onHidden: Event fired when the modal is hiiden.
  • onRemoved: Event fired when the modal is removed.
  • onSetup: Event that is fired when the modal is ready.It has $removeModal injected as an argument. Call it to remove the modal.
  • isOpen: Boolean to control wheather or not to show or hide the modal.
  • animation: The animation to show & hide with. Default: 'slide-in-up'
  • focusFirstInput: Whether to autofocus the first input of the modal when shown. Will only show the keyboard on iOS, to force the keyboard to show on Android, please use the Ionic keyboard plugin. Default: false.
  • backdropClickToClose: Whether to close the modal on clicking the backdrop. Default: true.
  • hardwareBackButtonClose: Whether the modal can be closed using the hardware back button on Android and similar devices. Default: true.
<div ng-app="app">
  <div ng-controller="MainCtrl as vm">
    <button class="button" ng-click="vm.openModal()">Open Modal</button>
    <button class="button" ng-click="vm.$removeModal()">Remove Modal</button>
    <ionic-modal-component is-open="vm.isOpen" on-setup="vm.onSetup($removeModal)">
      <button class="button" ng-click="vm.closeModal()">Close Modal</button>
    </ionic-modal-component>
  </div>
</div>

<script>
angular
  .module('app', [
    'ionic',
    'ionicModalComponent'
  ])
  .controller('MainCtrl', function MainCtrl() {
    var vm = this;
    
    vm.isOpen = false;
    
    vm.openModal = function() {
      vm.isOpen = true;
    };

    vm.closeModal = function() {
      vm.isOpen = false;
    };

    vm.onSetup = function($removeModal) {
      vm.$removeModal = $removeModal;
    };


  });
</script>

Installing with NPM

npm install ionic-modal-component --save

Installing with Bower

bower install ionic-modal-component --save

Manual installation

Ensure you place the script after Angular and after Ionic.

<body>
  <!-- html above -->
  <script src="angular.js"></script>
  <script src="ionic.js"></script>
  <script src="dist/ionic-modal-component.js"></script>
  <script src="app.js"></script>
</body>

Release history

  • 0.0.1
    • Initial release