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

angular2-bootstrap-confirm

Package Overview
Dependencies
Maintainers
1
Versions
32
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

angular2-bootstrap-confirm - npm Package Versions

134

0.10.1

Diff

Changelog

Source

0.10.1 (2016-09-01)

Bug Fixes

  • angular2: fix peer dependency to allow for RC6 (a85cf87)

<a name="0.10.0"></a>

mattlewis92
published 0.10.0 •

Changelog

Source

0.10.0 (2016-08-12)

Features

BREAKING CHANGES

  • A peer dependency of angular RC5 is now required.

The ConfirmPopover component and Confirm directive are now no longer exported. Instead you must use the new ConfirmModule module in your apps module like so:

import {NgModule} from '@angular/core';
import {ConfirmModule} from 'angular2-bootstrap-confirm';

@NgModule({
  declarations: [MyComponent],
  imports: [ConfirmModule],
  bootstrap: [MyComponent]
})
class MyModule {}

<a name="0.9.1"></a>

mattlewis92
published 0.9.1 •

Changelog

Source

0.9.1 (2016-08-04)

Bug Fixes

  • position: fix positionining typings (80a51d3)

<a name="0.9.0"></a>

mattlewis92
published 0.9.0 •

Changelog

Source

0.9.0 (2016-08-04)

Features

  • position: change the recommended positioning service (d2a780b)

BREAKING CHANGES

  • position: The exported service name from the angular2-bootstrap-confirm/position/position file has changed from PositionService to Positioning. To migrate:

Before

import {PositionService} from 'angular2-bootstrap-confirm/position/position';

After:

import {Positioning} from 'angular2-bootstrap-confirm/position/position';

<a name="0.8.1"></a>

mattlewis92
published 0.8.1 •

Changelog

Source

0.8.1 (2016-07-02)

  • rebuild with typescript stable instead of nightly

<a name="0.8.0"></a>

mattlewis92
published 0.8.0 •

Changelog

Source

0.8.0 (2016-07-02)

Features

  • use ComponentFactoryResolver for creating the popover (99af89f)
  • mwlConfirm: renamed the selector of the mwlConfirm directive (54a013c)
  • mwlFocus: rename focusOn to mwlFocus (5e3cbe7)
  • mwlFocus: rename the mwlFocus directive selector to be camelcased (724ea47)

BREAKING CHANGES

  • mwlConfirm: the CSS selector of the directive has changed from mwl-confirm to mwlConfirm
  • You must now add a precompile: [ConfirmPopover], to any components metadata that uses the confirm directive like so:
import {Component} from '@angular/core';
import {Confirm, ConfirmOptions, ConfirmPopover, Position} from 'angular2-bootstrap-confirm';
@Component({
  selector: 'my-component',
  directives: [
    Confirm
  ],
  precompile: [
    ConfirmPopover
  ],
  ...
})
class MyComponent {
}
  • mwlFocus: focusOn has been removed in favour of binding directly to the mwlFocus selector. Only relevant if using a custom template.

Before:

mwlFocus [focusOn]="condition"

After

[mwlFocus]="condition"
  • mwlFocus: the mwlFocus selector has changed from mwl-focus to mwlFocus. Only relevant if using a custom template.

<a name="0.7.0"></a>

mattlewis92
published 0.7.0 •

Changelog

Source

0.7.0 (2016-07-01)

Features

  • use new Compiler service for creating the popover (2707211)

BREAKING CHANGES

  • angular RC4 or higher is now required to use this module

<a name="0.6.0"></a>

mattlewis92
published 0.6.0 •

Changelog

Source

0.6.0 (2016-06-25)

Features

  • customTemplate: allow a custom template to be used for the popover (ce7fec6), closes #6

<a name="0.5.2"></a>

mattlewis92
published 0.5.2 •

Changelog

Source

0.5.2 (2016-06-23)

Bug Fixes

  • isOpen: fix isOpen attribute that when set would break this module (fe5516d), closes #14

<a name="0.5.1"></a>

mattlewis92
published 0.5.1 •

Changelog

Source

0.5.1 (2016-06-22)

<a name="0.5.0"></a>

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