Socket
Socket
Sign inDemoInstall

ngx-base

Package Overview
Dependencies
Maintainers
2
Versions
43
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

ngx-base - npm Package Compare versions

Comparing version 1.2.9 to 1.3.0

385

bundles/ngx-base.js

@@ -10,3 +10,3 @@ (function webpackUniversalModuleDefinition(root, factory) {

root["ngx-base"] = factory(root["@angular/core"], root["@angular/http"], root["rxjs/Subject"], root["rxjs/add/operator/filter"], root["rxjs/add/operator/map"]);
})(this, (function(__WEBPACK_EXTERNAL_MODULE_0__, __WEBPACK_EXTERNAL_MODULE_10__, __WEBPACK_EXTERNAL_MODULE_11__, __WEBPACK_EXTERNAL_MODULE_12__, __WEBPACK_EXTERNAL_MODULE_13__) {
})(this, (function(__WEBPACK_EXTERNAL_MODULE_0__, __WEBPACK_EXTERNAL_MODULE_12__, __WEBPACK_EXTERNAL_MODULE_7__, __WEBPACK_EXTERNAL_MODULE_8__, __WEBPACK_EXTERNAL_MODULE_9__) {
return /******/ (function(modules) { // webpackBootstrap

@@ -20,5 +20,5 @@ /******/ // The module cache

/******/ // Check if module is in cache
/******/ if(installedModules[moduleId])
/******/ if(installedModules[moduleId]) {
/******/ return installedModules[moduleId].exports;
/******/
/******/ }
/******/ // Create a new module (and put it into the cache)

@@ -48,5 +48,2 @@ /******/ var module = installedModules[moduleId] = {

/******/
/******/ // identity function for calling harmony imports with the correct context
/******/ __webpack_require__.i = function(value) { return value; };
/******/
/******/ // define getter function for harmony exports

@@ -79,3 +76,3 @@ /******/ __webpack_require__.d = function(exports, name, getter) {

/******/ // Load entry module and return exports
/******/ return __webpack_require__(__webpack_require__.s = 9);
/******/ return __webpack_require__(__webpack_require__.s = 1);
/******/ })

@@ -94,11 +91,131 @@ /************************************************************************/

"use strict";
Object.defineProperty(__webpack_exports__, "__esModule", { value: true });
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_0__src_app_notifications_notification__ = __webpack_require__(2);
/* harmony reexport (binding) */ __webpack_require__.d(__webpack_exports__, "Notification", (function() { return __WEBPACK_IMPORTED_MODULE_0__src_app_notifications_notification__["a"]; }));
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_1__src_app_notifications_notification_action__ = __webpack_require__(3);
/* harmony reexport (binding) */ __webpack_require__.d(__webpack_exports__, "NotificationAction", (function() { return __WEBPACK_IMPORTED_MODULE_1__src_app_notifications_notification_action__["a"]; }));
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_2__src_app_notifications_notifications__ = __webpack_require__(4);
/* harmony reexport (binding) */ __webpack_require__.d(__webpack_exports__, "Notifications", (function() { return __WEBPACK_IMPORTED_MODULE_2__src_app_notifications_notifications__["a"]; }));
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_3__src_app_notifications_notification_type__ = __webpack_require__(5);
/* harmony reexport (binding) */ __webpack_require__.d(__webpack_exports__, "NotificationType", (function() { return __WEBPACK_IMPORTED_MODULE_3__src_app_notifications_notification_type__["a"]; }));
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_4__src_app_broadcaster_service__ = __webpack_require__(6);
/* harmony reexport (binding) */ __webpack_require__.d(__webpack_exports__, "Broadcaster", (function() { return __WEBPACK_IMPORTED_MODULE_4__src_app_broadcaster_service__["a"]; }));
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_5__src_app_logger_service__ = __webpack_require__(10);
/* harmony reexport (binding) */ __webpack_require__.d(__webpack_exports__, "Logger", (function() { return __WEBPACK_IMPORTED_MODULE_5__src_app_logger_service__["a"]; }));
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_6__src_app_config_store__ = __webpack_require__(11);
/* harmony reexport (binding) */ __webpack_require__.d(__webpack_exports__, "ConfigStore", (function() { return __WEBPACK_IMPORTED_MODULE_6__src_app_config_store__["a"]; }));
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_7__src_app_val_wrapper__ = __webpack_require__(13);
/* harmony reexport (binding) */ __webpack_require__.d(__webpack_exports__, "ValWrapper", (function() { return __WEBPACK_IMPORTED_MODULE_7__src_app_val_wrapper__["a"]; }));
// Notifications
// Broadcaster
// Logger
// Config
// ValWrapper
/***/ }),
/* 2 */
/***/ (function(module, __webpack_exports__, __webpack_require__) {
"use strict";
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "a", (function() { return Notification; }));
/*
* A notification message containing:
*
* header - The header to display for the notification (optional)
* message - The main text message of the notification
* primaryActions Optional action to ask user to complete
* moreActions Optional list of other actions the user can take
* type - The type of the notification message; 'success','info','danger', 'warning'
*/
var Notification = (function () {
function Notification() {
}
return Notification;
}());
/***/ }),
/* 3 */
/***/ (function(module, __webpack_exports__, __webpack_require__) {
"use strict";
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "a", (function() { return NotificationAction; }));
/*
* An action for a button, dropdown, etc:
*
* id - Optional unique Id for the filter field, useful for comparisons
* isDisabled - set to true to disable the action
* isSeparator - set to true if this is a placehodler for a separator rather than an action
* name - The name of the action, displayed on the button
* title - Optional title, used for the tooltip
*/
var NotificationAction = (function () {
function NotificationAction() {
this.isDisabled = false;
this.isSeparator = false;
}
return NotificationAction;
}());
/***/ }),
/* 4 */
/***/ (function(module, __webpack_exports__, __webpack_require__) {
"use strict";
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "a", (function() { return Notifications; }));
var Notifications = (function () {
function Notifications() {
}
Notifications.prototype.message = function (notification) {
throw new Error('Not yet implemented');
};
return Notifications;
}());
/***/ }),
/* 5 */
/***/ (function(module, __webpack_exports__, __webpack_require__) {
"use strict";
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "a", (function() { return NotificationType; }));
var NotificationType = (function () {
function NotificationType() {
}
NotificationType.SUCCESS = { cssClass: 'success' };
NotificationType.INFO = { cssClass: 'info' };
NotificationType.DANGER = { cssClass: 'danger' };
NotificationType.WARNING = { cssClass: 'warning' };
return NotificationType;
}());
/***/ }),
/* 6 */
/***/ (function(module, __webpack_exports__, __webpack_require__) {
"use strict";
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "a", (function() { return Broadcaster; }));
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_0__angular_core__ = __webpack_require__(0);
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_0__angular_core___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_0__angular_core__);
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_1_rxjs_Subject__ = __webpack_require__(11);
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_1_rxjs_Subject__ = __webpack_require__(7);
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_1_rxjs_Subject___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_1_rxjs_Subject__);
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_2_rxjs_add_operator_filter__ = __webpack_require__(12);
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_2_rxjs_add_operator_filter__ = __webpack_require__(8);
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_2_rxjs_add_operator_filter___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_2_rxjs_add_operator_filter__);
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_3_rxjs_add_operator_map__ = __webpack_require__(13);
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_3_rxjs_add_operator_map__ = __webpack_require__(9);
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_3_rxjs_add_operator_map___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_3_rxjs_add_operator_map__);
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "a", (function() { return Broadcaster; }));
var __decorate = (this && this.__decorate) || function (decorators, target, key, desc) {

@@ -171,8 +288,8 @@ var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;

};
Broadcaster = __decorate([
Object(__WEBPACK_IMPORTED_MODULE_0__angular_core__["Injectable"])(),
__metadata("design:paramtypes", [])
], Broadcaster);
return Broadcaster;
}());
Broadcaster = __decorate([
__webpack_require__.i(__WEBPACK_IMPORTED_MODULE_0__angular_core__["Injectable"])(),
__metadata("design:paramtypes", [])
], Broadcaster);

@@ -182,11 +299,58 @@

/***/ }),
/* 2 */
/* 7 */
/***/ (function(module, exports) {
module.exports = __WEBPACK_EXTERNAL_MODULE_7__;
/***/ }),
/* 8 */
/***/ (function(module, exports) {
module.exports = __WEBPACK_EXTERNAL_MODULE_8__;
/***/ }),
/* 9 */
/***/ (function(module, exports) {
module.exports = __WEBPACK_EXTERNAL_MODULE_9__;
/***/ }),
/* 10 */
/***/ (function(module, __webpack_exports__, __webpack_require__) {
"use strict";
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "a", (function() { return Logger; }));
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_0__angular_core__ = __webpack_require__(0);
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_0__angular_core___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_0__angular_core__);
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_1__angular_http__ = __webpack_require__(10);
var __decorate = (this && this.__decorate) || function (decorators, target, key, desc) {
var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
if (typeof Reflect === "object" && typeof Reflect.decorate === "function") r = Reflect.decorate(decorators, target, key, desc);
else for (var i = decorators.length - 1; i >= 0; i--) if (d = decorators[i]) r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;
return c > 3 && r && Object.defineProperty(target, key, r), r;
};
var Logger = (function () {
function Logger() {
}
Logger.prototype.log = function (msg) { console.log(msg); };
Logger.prototype.error = function (msg) { console.error(msg); };
Logger.prototype.warn = function (msg) { console.warn(msg); };
Logger = __decorate([
Object(__WEBPACK_IMPORTED_MODULE_0__angular_core__["Injectable"])()
], Logger);
return Logger;
}());
/***/ }),
/* 11 */
/***/ (function(module, __webpack_exports__, __webpack_require__) {
"use strict";
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "a", (function() { return ConfigStore; }));
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_0__angular_core__ = __webpack_require__(0);
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_0__angular_core___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_0__angular_core__);
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_1__angular_http__ = __webpack_require__(12);
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_1__angular_http___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_1__angular_http__);
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "a", (function() { return ConfigStore; }));
var __decorate = (this && this.__decorate) || function (decorators, target, key, desc) {

@@ -233,8 +397,8 @@ var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;

};
ConfigStore = __decorate([
Object(__WEBPACK_IMPORTED_MODULE_0__angular_core__["Injectable"])(),
__metadata("design:paramtypes", [__WEBPACK_IMPORTED_MODULE_1__angular_http__["Http"]])
], ConfigStore);
return ConfigStore;
}());
ConfigStore = __decorate([
__webpack_require__.i(__WEBPACK_IMPORTED_MODULE_0__angular_core__["Injectable"])(),
__metadata("design:paramtypes", [__WEBPACK_IMPORTED_MODULE_1__angular_http__["Http"]])
], ConfigStore);

@@ -244,118 +408,12 @@

/***/ }),
/* 3 */
/***/ (function(module, __webpack_exports__, __webpack_require__) {
/* 12 */
/***/ (function(module, exports) {
"use strict";
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_0__angular_core__ = __webpack_require__(0);
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_0__angular_core___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_0__angular_core__);
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "a", (function() { return Logger; }));
var __decorate = (this && this.__decorate) || function (decorators, target, key, desc) {
var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
if (typeof Reflect === "object" && typeof Reflect.decorate === "function") r = Reflect.decorate(decorators, target, key, desc);
else for (var i = decorators.length - 1; i >= 0; i--) if (d = decorators[i]) r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;
return c > 3 && r && Object.defineProperty(target, key, r), r;
};
module.exports = __WEBPACK_EXTERNAL_MODULE_12__;
var Logger = (function () {
function Logger() {
}
Logger.prototype.log = function (msg) { console.log(msg); };
Logger.prototype.error = function (msg) { console.error(msg); };
Logger.prototype.warn = function (msg) { console.warn(msg); };
return Logger;
}());
Logger = __decorate([
__webpack_require__.i(__WEBPACK_IMPORTED_MODULE_0__angular_core__["Injectable"])()
], Logger);
/***/ }),
/* 4 */
/***/ (function(module, __webpack_exports__, __webpack_require__) {
/* 13 */
/***/ ((function(module, __webpack_exports__, __webpack_require__) {
"use strict";
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "a", (function() { return NotificationAction; }));
/*
* An action for a button, dropdown, etc:
*
* id - Optional unique Id for the filter field, useful for comparisons
* isDisabled - set to true to disable the action
* isSeparator - set to true if this is a placehodler for a separator rather than an action
* name - The name of the action, displayed on the button
* title - Optional title, used for the tooltip
*/
var NotificationAction = (function () {
function NotificationAction() {
this.isDisabled = false;
this.isSeparator = false;
}
return NotificationAction;
}());
/***/ }),
/* 5 */
/***/ (function(module, __webpack_exports__, __webpack_require__) {
"use strict";
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "a", (function() { return NotificationType; }));
var NotificationType = (function () {
function NotificationType() {
}
return NotificationType;
}());
NotificationType.SUCCESS = { cssClass: 'success' };
NotificationType.INFO = { cssClass: 'info' };
NotificationType.DANGER = { cssClass: 'danger' };
NotificationType.WARNING = { cssClass: 'warning' };
/***/ }),
/* 6 */
/***/ (function(module, __webpack_exports__, __webpack_require__) {
"use strict";
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "a", (function() { return Notification; }));
/*
* A notification message containing:
*
* header - The header to display for the notification (optional)
* message - The main text message of the notification
* primaryActions Optional action to ask user to complete
* moreActions Optional list of other actions the user can take
* type - The type of the notification message; 'success','info','danger', 'warning'
*/
var Notification = (function () {
function Notification() {
}
return Notification;
}());
/***/ }),
/* 7 */
/***/ (function(module, __webpack_exports__, __webpack_require__) {
"use strict";
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "a", (function() { return Notifications; }));
var Notifications = (function () {
function Notifications() {
}
Notifications.prototype.message = function (notification) {
throw new Error('Not yet implemented');
};
return Notifications;
}());
/***/ }),
/* 8 */
/***/ (function(module, __webpack_exports__, __webpack_require__) {
"use strict";
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "a", (function() { return ValWrapper; }));

@@ -377,65 +435,4 @@ /**

/***/ }),
/* 9 */
/***/ (function(module, __webpack_exports__, __webpack_require__) {
"use strict";
Object.defineProperty(__webpack_exports__, "__esModule", { value: true });
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_0__src_app_notifications_notification__ = __webpack_require__(6);
/* harmony reexport (binding) */ __webpack_require__.d(__webpack_exports__, "Notification", (function() { return __WEBPACK_IMPORTED_MODULE_0__src_app_notifications_notification__["a"]; }));
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_1__src_app_notifications_notification_action__ = __webpack_require__(4);
/* harmony reexport (binding) */ __webpack_require__.d(__webpack_exports__, "NotificationAction", (function() { return __WEBPACK_IMPORTED_MODULE_1__src_app_notifications_notification_action__["a"]; }));
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_2__src_app_notifications_notifications__ = __webpack_require__(7);
/* harmony reexport (binding) */ __webpack_require__.d(__webpack_exports__, "Notifications", (function() { return __WEBPACK_IMPORTED_MODULE_2__src_app_notifications_notifications__["a"]; }));
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_3__src_app_notifications_notification_type__ = __webpack_require__(5);
/* harmony reexport (binding) */ __webpack_require__.d(__webpack_exports__, "NotificationType", (function() { return __WEBPACK_IMPORTED_MODULE_3__src_app_notifications_notification_type__["a"]; }));
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_4__src_app_broadcaster_service__ = __webpack_require__(1);
/* harmony reexport (binding) */ __webpack_require__.d(__webpack_exports__, "Broadcaster", (function() { return __WEBPACK_IMPORTED_MODULE_4__src_app_broadcaster_service__["a"]; }));
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_5__src_app_logger_service__ = __webpack_require__(3);
/* harmony reexport (binding) */ __webpack_require__.d(__webpack_exports__, "Logger", (function() { return __WEBPACK_IMPORTED_MODULE_5__src_app_logger_service__["a"]; }));
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_6__src_app_config_store__ = __webpack_require__(2);
/* harmony reexport (binding) */ __webpack_require__.d(__webpack_exports__, "ConfigStore", (function() { return __WEBPACK_IMPORTED_MODULE_6__src_app_config_store__["a"]; }));
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_7__src_app_val_wrapper__ = __webpack_require__(8);
/* harmony reexport (binding) */ __webpack_require__.d(__webpack_exports__, "ValWrapper", (function() { return __WEBPACK_IMPORTED_MODULE_7__src_app_val_wrapper__["a"]; }));
// Notifications
// Broadcaster
// Logger
// Config
// ValWrapper
/***/ }),
/* 10 */
/***/ (function(module, exports) {
module.exports = __WEBPACK_EXTERNAL_MODULE_10__;
/***/ }),
/* 11 */
/***/ (function(module, exports) {
module.exports = __WEBPACK_EXTERNAL_MODULE_11__;
/***/ }),
/* 12 */
/***/ (function(module, exports) {
module.exports = __WEBPACK_EXTERNAL_MODULE_12__;
/***/ }),
/* 13 */
/***/ ((function(module, exports) {
module.exports = __WEBPACK_EXTERNAL_MODULE_13__;
/***/ }))
/******/ ]);
}));
{
"name": "ngx-base",
"version": "1.2.9",
"version": "1.3.0",
"description": "Common services for working with Fabric8 Work Item Tracker",

@@ -72,41 +72,41 @@ "main": "bundles/ngx-base.umd.js",

"dependencies": {
"@angular/core": "4.0.1",
"@angular/http": "4.0.1"
"@angular/core": "4.3.6",
"@angular/http": "4.3.6"
},
"peerDependencies": {},
"devDependencies": {
"@angular/common": "4.0.1",
"@angular/compiler": "4.0.1",
"@angular/compiler-cli": "4.0.1",
"@angular/platform-browser": "4.0.1",
"@angular/platform-browser-dynamic": "4.0.1",
"@angular/common": "4.3.6",
"@angular/compiler": "4.3.6",
"@angular/compiler-cli": "4.3.6",
"@angular/platform-browser": "4.3.6",
"@angular/platform-browser-dynamic": "4.3.6",
"@krux/condition-jenkins": "1.0.1",
"@types/jasmine": "2.5.47",
"@types/jasmine": "2.5.54",
"angular2-template-loader": "0.6.2",
"awesome-typescript-loader": "3.1.2",
"awesome-typescript-loader": "3.2.3",
"child_process": "1.0.2",
"clean-webpack-plugin": "0.1.16",
"codelyzer": "3.0.0-beta.4",
"codelyzer": "3.1.2",
"copy-webpack-plugin": "4.0.1",
"copyfiles": "1.2.0",
"core-js": "2.4.1",
"css-loader": "0.28.0",
"core-js": "2.5.0",
"css-loader": "0.28.5",
"cz-conventional-changelog": "2.0.0",
"del": "2.2.2",
"extract-text-webpack-plugin": "2.1.0",
"file-loader": "0.11.0",
"del": "3.0.0",
"extract-text-webpack-plugin": "3.0.0",
"file-loader": "0.11.2",
"gulp": "3.9.1",
"gulp-changed": "2.0.0",
"gulp-ngc": "0.2.0",
"gulp-sourcemaps": "2.5.0",
"gulp-changed": "3.1.0",
"gulp-ngc": "0.3.2",
"gulp-sourcemaps": "2.6.1",
"gulp-string-replace": "0.4.0",
"gulp-util": "3.0.8",
"html-webpack-plugin": "2.28.0",
"husky": "0.13.3",
"istanbul-instrumenter-loader": "2.0.0",
"jasmine-core": "2.5.2",
"json-loader": "0.5.4",
"html-webpack-plugin": "2.30.1",
"husky": "0.14.3",
"istanbul-instrumenter-loader": "3.0.0",
"jasmine-core": "2.8.0",
"json-loader": "0.5.7",
"json-stringify": "1.0.0",
"karma": "1.5.0",
"karma-chrome-launcher": "2.0.0",
"karma": "1.7.0",
"karma-chrome-launcher": "2.2.0",
"karma-cli": "1.0.1",

@@ -117,36 +117,36 @@ "karma-coverage": "1.1.1",

"karma-jasmine-html-reporter": "0.2.2",
"karma-mocha-reporter": "2.2.3",
"karma-mocha-reporter": "2.2.4",
"karma-phantomjs-launcher": "1.0.4",
"karma-sourcemap-loader": "0.3.7",
"karma-webpack": "2.0.3",
"mocha": "3.2.0",
"node-sass": "4.5.2",
"karma-webpack": "2.0.4",
"mocha": "3.5.0",
"node-sass": "4.5.3",
"npm-run-all": "4.0.2",
"optimize-js-plugin": "0.0.4",
"phantomjs-prebuilt": "2.1.14",
"protractor": "5.1.1",
"phantomjs-prebuilt": "2.1.15",
"protractor": "5.1.2",
"raw-loader": "0.5.1",
"reflect-metadata": "0.1.10",
"rimraf": "2.6.1",
"run-sequence": "1.2.2",
"rxjs": "5.2.0",
"sass-loader": "6.0.3",
"semantic-release": "6.3.2",
"run-sequence": "2.1.0",
"rxjs": "5.4.3",
"sass-loader": "6.0.6",
"semantic-release": "7.0.2",
"source-map-loader": "0.2.1",
"string-replace-loader": "1.2.0",
"string-replace-loader": "1.3.0",
"to-string-loader": "1.1.5",
"ts-helpers": "1.1.2",
"ts-node": "3.0.2",
"tslint": "5.0.0",
"tslint-loader": "3.4.3",
"typedoc": "0.5.9",
"typescript": "2.2.2",
"uglify-js": "2.8.20",
"webpack": "2.3.2",
"webpack-bundle-analyzer": "2.3.1",
"webpack-dashboard": "0.3.0",
"webpack-dev-server": "2.4.2",
"ts-node": "3.3.0",
"tslint": "5.6.0",
"tslint-loader": "3.5.3",
"typedoc": "0.8.0",
"typescript": "2.4.2",
"uglify-js": "3.0.28",
"webpack": "3.5.5",
"webpack-bundle-analyzer": "2.9.0",
"webpack-dashboard": "1.0.0-5",
"webpack-dev-server": "2.7.1",
"webpack-md5-hash": "0.0.5",
"webpack-merge": "4.1.0",
"zone.js": "0.8.5"
"zone.js": "0.8.17"
},

@@ -153,0 +153,0 @@ "release": {

@@ -64,3 +64,3 @@ # ngx-base

a library and then set up a watch task to rebuild any ts, html and scss files you
change.
change.
2. In the webapp into which you are embedding, run `npm link <path to ngx-base>/dist-watch`.

@@ -67,0 +67,0 @@ This will create a symlink from `node_modules/ngx-base` to the `dist-watch` directory

@@ -1,10 +0,1 @@

var __decorate = (this && this.__decorate) || function (decorators, target, key, desc) {
var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
if (typeof Reflect === "object" && typeof Reflect.decorate === "function") r = Reflect.decorate(decorators, target, key, desc);
else for (var i = decorators.length - 1; i >= 0; i--) if (d = decorators[i]) r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;
return c > 3 && r && Object.defineProperty(target, key, r), r;
};
var __metadata = (this && this.__metadata) || function (k, v) {
if (typeof Reflect === "object" && typeof Reflect.metadata === "function") return Reflect.metadata(k, v);
};
import { Injectable } from '@angular/core';

@@ -68,9 +59,10 @@ import { Subject } from 'rxjs/Subject';

};
Broadcaster.decorators = [
{ type: Injectable },
];
/** @nocollapse */
Broadcaster.ctorParameters = function () { return []; };
return Broadcaster;
}());
Broadcaster = __decorate([
Injectable(),
__metadata("design:paramtypes", [])
], Broadcaster);
export { Broadcaster };
//# sourceMappingURL=broadcaster.service.js.map

@@ -1,10 +0,1 @@

var __decorate = (this && this.__decorate) || function (decorators, target, key, desc) {
var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
if (typeof Reflect === "object" && typeof Reflect.decorate === "function") r = Reflect.decorate(decorators, target, key, desc);
else for (var i = decorators.length - 1; i >= 0; i--) if (d = decorators[i]) r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;
return c > 3 && r && Object.defineProperty(target, key, r), r;
};
var __metadata = (this && this.__metadata) || function (k, v) {
if (typeof Reflect === "object" && typeof Reflect.metadata === "function") return Reflect.metadata(k, v);
};
import { Injectable } from '@angular/core';

@@ -42,9 +33,12 @@ import { Http } from '@angular/http';

};
ConfigStore.decorators = [
{ type: Injectable },
];
/** @nocollapse */
ConfigStore.ctorParameters = function () { return [
{ type: Http, },
]; };
return ConfigStore;
}());
ConfigStore = __decorate([
Injectable(),
__metadata("design:paramtypes", [Http])
], ConfigStore);
export { ConfigStore };
//# sourceMappingURL=config.store.js.map

@@ -1,1 +0,1 @@

[{"__symbolic":"module","version":3,"metadata":{"ConfigStore":{"__symbolic":"class","decorators":[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"Injectable"}}],"members":{"__ctor__":[{"__symbolic":"constructor","parameters":[{"__symbolic":"reference","module":"@angular/http","name":"Http"}]}],"get":[{"__symbolic":"method"}],"clear":[{"__symbolic":"method"}]}}}},{"__symbolic":"module","version":1,"metadata":{"ConfigStore":{"__symbolic":"class","decorators":[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"Injectable"}}],"members":{"__ctor__":[{"__symbolic":"constructor","parameters":[{"__symbolic":"reference","module":"@angular/http","name":"Http"}]}],"get":[{"__symbolic":"method"}],"clear":[{"__symbolic":"method"}]}}}}]
[{"__symbolic":"module","version":3,"metadata":{"LoadCallback":{"__symbolic":"interface"},"ConfigStore":{"__symbolic":"class","decorators":[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"Injectable"}}],"members":{"__ctor__":[{"__symbolic":"constructor","parameters":[{"__symbolic":"reference","module":"@angular/http","name":"Http"}]}],"get":[{"__symbolic":"method"}],"clear":[{"__symbolic":"method"}]}}}},{"__symbolic":"module","version":1,"metadata":{"LoadCallback":{"__symbolic":"interface"},"ConfigStore":{"__symbolic":"class","decorators":[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"Injectable"}}],"members":{"__ctor__":[{"__symbolic":"constructor","parameters":[{"__symbolic":"reference","module":"@angular/http","name":"Http"}]}],"get":[{"__symbolic":"method"}],"clear":[{"__symbolic":"method"}]}}}}]

@@ -1,7 +0,1 @@

var __decorate = (this && this.__decorate) || function (decorators, target, key, desc) {
var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
if (typeof Reflect === "object" && typeof Reflect.decorate === "function") r = Reflect.decorate(decorators, target, key, desc);
else for (var i = decorators.length - 1; i >= 0; i--) if (d = decorators[i]) r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;
return c > 3 && r && Object.defineProperty(target, key, r), r;
};
import { Injectable } from '@angular/core';

@@ -14,8 +8,10 @@ var Logger = (function () {

Logger.prototype.warn = function (msg) { console.warn(msg); };
Logger.decorators = [
{ type: Injectable },
];
/** @nocollapse */
Logger.ctorParameters = function () { return []; };
return Logger;
}());
Logger = __decorate([
Injectable()
], Logger);
export { Logger };
//# sourceMappingURL=logger.service.js.map
var NotificationType = (function () {
function NotificationType() {
}
NotificationType.SUCCESS = { cssClass: 'success' };
NotificationType.INFO = { cssClass: 'info' };
NotificationType.DANGER = { cssClass: 'danger' };
NotificationType.WARNING = { cssClass: 'warning' };
return NotificationType;
}());
export { NotificationType };
NotificationType.SUCCESS = { cssClass: 'success' };
NotificationType.INFO = { cssClass: 'info' };
NotificationType.DANGER = { cssClass: 'danger' };
NotificationType.WARNING = { cssClass: 'warning' };
//# sourceMappingURL=notification-type.js.map

@@ -1,1 +0,1 @@

[{"__symbolic":"module","version":3,"metadata":{"NotificationType":{"__symbolic":"class","statics":{"SUCCESS":{"__symbolic":"error","message":"Expression form not supported","line":2,"character":46},"INFO":{"__symbolic":"error","message":"Expression form not supported","line":3,"character":43},"DANGER":{"__symbolic":"error","message":"Expression form not supported","line":4,"character":45},"WARNING":{"__symbolic":"error","message":"Expression form not supported","line":5,"character":46}}}}},{"__symbolic":"module","version":1,"metadata":{"NotificationType":{"__symbolic":"class","statics":{"SUCCESS":{"__symbolic":"error","message":"Expression form not supported","line":2,"character":46},"INFO":{"__symbolic":"error","message":"Expression form not supported","line":3,"character":43},"DANGER":{"__symbolic":"error","message":"Expression form not supported","line":4,"character":45},"WARNING":{"__symbolic":"error","message":"Expression form not supported","line":5,"character":46}}}}}]
[{"__symbolic":"module","version":3,"metadata":{"NotificationType":{"__symbolic":"class","statics":{"SUCCESS":{"cssClass":"success"},"INFO":{"cssClass":"info"},"DANGER":{"cssClass":"danger"},"WARNING":{"cssClass":"warning"}}}}},{"__symbolic":"module","version":1,"metadata":{"NotificationType":{"__symbolic":"class","statics":{"SUCCESS":{"cssClass":"success"},"INFO":{"cssClass":"info"},"DANGER":{"cssClass":"danger"},"WARNING":{"cssClass":"warning"}}}}}]

@@ -1,1 +0,1 @@

[{"__symbolic":"module","version":3,"metadata":{"ValWrapper":{"__symbolic":"class"}}},{"__symbolic":"module","version":1,"metadata":{"ValWrapper":{"__symbolic":"class"}}}]
[{"__symbolic":"module","version":3,"metadata":{"ValWrapper":{"__symbolic":"class","arity":1}}},{"__symbolic":"module","version":1,"metadata":{"ValWrapper":{"__symbolic":"class","arity":1}}}]

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

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