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 Compare versions

Comparing version 0.4.0 to 0.4.1

8

angular2-bootstrap-confirm.d.ts

@@ -0,3 +1,11 @@

import { Confirm } from './src/confirm.directive';
import { ConfirmOptions } from './src/confirmOptions.provider';
import { Position } from './src/position.provider';
export * from './src/confirm.directive';
export { ConfirmOptions } from './src/confirmOptions.provider';
export * from './src/position.provider';
declare var _default: {
providers: (typeof ConfirmOptions | typeof Position)[];
directives: typeof Confirm[];
};
export default _default;

12

angular2-bootstrap-confirm.js

@@ -61,6 +61,14 @@ (function webpackUniversalModuleDefinition(root, factory) {

}
var confirm_directive_1 = __webpack_require__(1);
var confirmOptions_provider_1 = __webpack_require__(6);
var position_provider_1 = __webpack_require__(5);
__export(__webpack_require__(1));
var confirmOptions_provider_1 = __webpack_require__(6);
exports.ConfirmOptions = confirmOptions_provider_1.ConfirmOptions;
var confirmOptions_provider_2 = __webpack_require__(6);
exports.ConfirmOptions = confirmOptions_provider_2.ConfirmOptions;
__export(__webpack_require__(5));
Object.defineProperty(exports, "__esModule", { value: true });
exports.default = {
providers: [confirmOptions_provider_1.ConfirmOptions, position_provider_1.Position],
directives: [confirm_directive_1.Confirm]
};

@@ -67,0 +75,0 @@

@@ -5,2 +5,12 @@ # Change Log

<a name="0.4.1"></a>
## [0.4.1](https://github.com/mattlewis92/angular2-bootstrap-confirm/compare/v0.4.0...v0.4.1) (2016-05-19)
### Bug Fixes
* **angular-cli:** add main module export for angular-cli ([b8b77ac](https://github.com/mattlewis92/angular2-bootstrap-confirm/commit/b8b77ac))
<a name="0.4.0"></a>

@@ -13,4 +23,6 @@ ## [0.4.0](https://github.com/mattlewis92/angular2-bootstrap-confirm/compare/v0.3.3...v0.4.0) (2016-05-10)

BREAKING CHANGE: the constructor of ConfirmOptions now no longer takes an object of values.
### BREAKING CHANGES
* the constructor of ConfirmOptions now no longer takes an object of values.
This allows you to just pass `ConfirmOptions` directly to the providers of your app or component and angular will instantiate it for you. e.g.

@@ -17,0 +29,0 @@

11

package.json
{
"name": "angular2-bootstrap-confirm",
"version": "0.4.0",
"version": "0.4.1",
"description": "An angular2 bootstrap confirmation popover",

@@ -9,3 +9,3 @@ "main": "./angular2-bootstrap-confirm.js",

"prestart": "typings install",
"start": "webpack-dev-server --progress",
"start": "concurrently \"webpack-dev-server\" \"npm run test:watch\" \"open http://localhost:8000\"",
"build:demo": "webpack -p",

@@ -21,5 +21,5 @@ "build:dist": "webpack --config webpack.config.dist.js",

"typedoc": "typedoc --options typedoc.json angular2-bootstrap-confirm.ts src/*.ts",
"gh-pages": "git checkout gh-pages && npm run build:demo && npm run typedoc && git add . && git commit -m 'chore: build demo and docs' && git push && git checkout master",
"gh-pages": "git checkout gh-pages && git merge master && npm run build:demo && npm run typedoc && git add . && git commit -m 'chore: build demo and docs' && git push && git checkout master",
"prerelease": "npm test",
"release": "standard-version && git push --follow-tags origin master && npm run build:dist && npm run build:position && npm publish",
"release": "standard-version --first-release && git push --follow-tags origin master && npm run build:dist && npm run build:position && npm publish",
"postrelease": "npm run clean && npm run gh-pages"

@@ -50,2 +50,3 @@ },

"commitizen": "~2.8.1",
"concurrently": "~2.1.0",
"conventional-changelog": "~1.1.0",

@@ -75,3 +76,3 @@ "conventional-changelog-cli": "~1.2.0",

"typescript": "~1.8.10",
"typings": "~0.8.1",
"typings": "~1.0.4",
"validate-commit-msg": "~2.6.1",

@@ -78,0 +79,0 @@ "webpack": "~1.13.0",

@@ -109,2 +109,3 @@ # Angular bootstrap confirm

### Release
* Bump the version in package.json (once the module hits 1.0 this will become automatic)
```bash

@@ -111,0 +112,0 @@ npm run release

Sorry, the diff of this file is not supported yet

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