Socket
Socket
Sign inDemoInstall

ng-bootstrap-modal-stack

Package Overview
Dependencies
Maintainers
1
Versions
7
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

ng-bootstrap-modal-stack

Modal stack for ng-bootstrap


Version published
Maintainers
1
Created
Source

NG Bootstrap Modal Stack - Secondary Modal for NG Bootstrap

npm version devDependency Status

This project is a workaround to display a secondary modal on top of the one from NG Bootstrap.

Table of Contents

Demo

View it in action : https://stackblitz.com/edit/ng-bootstrap-modal-stack

Dependencies

Installation

After installing the above dependencies, install ng-bootstrap-modal-stack via:

npm install --save ng-bootstrap-modal-stack

Once installed you need to import our main module:

import {NgbModalStackModule} from 'ng-bootstrap-modal-stack';

The only remaining part is to list the imported module in your application module. The exact method will be slightly different for the root (top-level) module for which you should end up with the code similar to (notice NgbModalStackModule.forRoot()):

import {NgbModalStackModule} from 'ng-bootstrap-modal-stack';

@NgModule({
  declarations: [AppComponent, ...],
  imports: [NgbModalStackModule.forRoot(), ...],  
  bootstrap: [AppComponent]
})
export class AppModule {
}

Other modules in your application can simply import NgbModalStackModule:

import {NgbModalStackModule} from 'ng-bootstrap-modal-stack';

@NgModule({
  declarations: [OtherComponent, ...],
  imports: [NgbModalStackModule, ...], 
})
export class OtherModule {
}

SCSS

You need to import the custom scss for the secondary modal.

@import "~ng-bootstrap-modal-stack/index";

SystemJS

If you are using SystemJS, you should also adjust your configuration to point to the UMD bundle.

In your systemjs config file, map needs to tell the System loader where to look for ng-bootstrap-modal-stack:

map: {
  'ng-bootstrap-modal-stack': 'node_modules/ng-bootstrap-modal-stack/bundles/ng-bootstrap.js',
}

Supported browsers

We support the same browsers and versions supported by both Bootstrap 4 and Angular, whichever is more restrictive. See this for up-to-date Angular browser support.

  • Chrome (45+)
  • Firefox (40+)
  • IE (10+)
  • Edge (20+)
  • Safari (7+)

Also check Bootstrap 4's notes on browsers support.

Keywords

FAQs

Package last updated on 02 Jul 2018

Did you know?

Socket

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.

Install

Related posts

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