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

@boxmeglobal/omisell-ui-lib

Package Overview
Dependencies
Maintainers
2
Versions
16
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@boxmeglobal/omisell-ui-lib - npm Package Compare versions

Comparing version 0.0.11 to 0.0.12

16

bundles/boxmeglobal-omisell-ui-lib-omisell-confirm-modal.umd.js

@@ -252,2 +252,10 @@ (function (global, factory) {

function (data) {
this.dataModel = {
isDanger: data.hasOwnProperty('isDanger') ? data.isDanger : this.dataModel.isDanger,
textConfirm: data.textConfirm || this.dataModel.textConfirm,
textCancel: data.textCancel || this.dataModel.textCancel,
urlConfirm: data.urlConfirm || this.dataModel.urlConfirm,
content: data.content || '',
title: data.title || this.dataModel.title
};
if (this._translateService) {

@@ -267,10 +275,2 @@ if (typeof data.textConfirm == 'string') {

}
this.dataModel = {
isDanger: data.hasOwnProperty('isDanger') ? data.isDanger : this.dataModel.isDanger,
textConfirm: data.textConfirm || this.dataModel.textConfirm,
textCancel: data.textCancel || this.dataModel.textCancel,
urlConfirm: data.urlConfirm || this.dataModel.urlConfirm,
content: data.content || '',
title: data.title || this.dataModel.title
};
};

@@ -277,0 +277,0 @@ /**

@@ -15,3 +15,3 @@ !function(e,t){"object"==typeof exports&&"undefined"!=typeof module?t(exports,require("@angular/core"),require("@angular/common"),require("@angular/cdk/overlay"),require("rxjs"),require("@ngx-translate/core"),require("@angular/cdk/portal"),require("rxjs/operators")):"function"==typeof define&&define.amd?define("@boxmeglobal/omisell-ui-lib/omisell-confirm-modal",["exports","@angular/core","@angular/common","@angular/cdk/overlay","rxjs","@ngx-translate/core","@angular/cdk/portal","rxjs/operators"],t):t(((e=e||self).boxmeglobal=e.boxmeglobal||{},e.boxmeglobal["omisell-ui-lib"]=e.boxmeglobal["omisell-ui-lib"]||{},e.boxmeglobal["omisell-ui-lib"]["omisell-confirm-modal"]={}),e.ng.core,e.ng.common,e.ng.cdk.overlay,e.rxjs,e.core$1,e.ng.cdk.portal,e.rxjs.operators)}(this,(function(e,t,n,o,r,a,i,l){"use strict";

PERFORMANCE OF THIS SOFTWARE.
***************************************************************************** */var c=function(){return(c=Object.assign||function(e){for(var t,n=1,o=arguments.length;n<o;n++)for(var r in t=arguments[n])Object.prototype.hasOwnProperty.call(t,r)&&(e[r]=t[r]);return e}).apply(this,arguments)};var s=function(){function e(e){this._translateService=e,this._closeEvent$=new r.Subject,this.dataModel={isDanger:!0,textCancel:"Cancel",textConfirm:"Confirm",urlConfirm:"",title:""}}return e.prototype.setModalData=function(e){this._translateService&&("string"==typeof e.textConfirm&&(e.textConfirm=this._translateService.instant(e.textConfirm)),"string"==typeof e.textCancel&&(e.textCancel=this._translateService.instant(e.textCancel)),"string"==typeof e.title&&(e.title=this._translateService.instant(e.title)),"string"==typeof e.content&&(e.content=this._translateService.instant(e.content))),this.dataModel={isDanger:e.hasOwnProperty("isDanger")?e.isDanger:this.dataModel.isDanger,textConfirm:e.textConfirm||this.dataModel.textConfirm,textCancel:e.textCancel||this.dataModel.textCancel,urlConfirm:e.urlConfirm||this.dataModel.urlConfirm,content:e.content||"",title:e.title||this.dataModel.title}},e.prototype.confirm=function(){this._closeEvent$.next({reason:"confirm"})},e.prototype.cancel=function(){this._closeEvent$.next({reason:"dismiss"})},e.prototype.getCloseEvent=function(){return this._closeEvent$.asObservable()},e.decorators=[{type:t.Injectable,args:[{providedIn:"root"}]}],e.ctorParameters=function(){return[{type:a.TranslateService,decorators:[{type:t.Optional}]}]},e.ngInjectableDef=t.ɵɵdefineInjectable({factory:function(){return new e(t.ɵɵinject(a.TranslateService,8))},token:e,providedIn:"root"}),e}();var d=function(){function e(e,t){this.modalDataService=e,this._injector=t}return e.prototype.ngOnInit=function(){},e.prototype.confirm=function(){},e.decorators=[{type:t.Component,args:[{selector:"omisell-confirm-modal",template:'<div class="omisell-confirm-modal border rounded">\n <div class="omisell-confirm-modal__body bg-white">\n <h5 class="omisell-confirm-modal__title font-weight-bold mb-4">{{ modalDataService.dataModel.title }}</h5>\n <p class="omisell-confirm-modal__content mb-0">{{ modalDataService.dataModel.content }}</p>\n </div>\n\n <div class="group-actions p-3 bg-light text-right">\n <button type="button" class="btn mr-2" (click)="modalDataService.cancel()">\n {{ modalDataService.dataModel.textCancel }}\n </button>\n <button\n *ngIf="!modalDataService.dataModel.urlConfirm"\n type="button" class="btn"\n [className]="modalDataService.dataModel.isDanger ? \'btn btn-danger\': \'btn btn-primary\'"\n (click)="modalDataService.confirm()">\n {{ modalDataService.dataModel.textConfirm }}\n </button>\n <a\n *ngIf="modalDataService.dataModel.urlConfirm"\n class="btn"\n [className]="modalDataService.dataModel.isDanger ? \'btn btn-danger\': \'btn btn-primary\'"\n target="_blank"\n href="{{modalDataService.dataModel.urlConfirm}}">\n {{ modalDataService.dataModel.textConfirm }}\n </a>\n </div>\n</div>\n',encapsulation:t.ViewEncapsulation.None}]}],e.ctorParameters=function(){return[{type:s},{type:t.Injector}]},e}();var m=function(){function e(e,t){this._overlay=e,this._dataService=t,this.defaultOverlayConfig={hasBackdrop:!0,disposeOnNavigation:!0}}return e.prototype.openModal=function(e){var t=this.buildOverlayConfig(),n=this._overlay.create(t);this._dataService.setModalData(e);var o=new i.ComponentPortal(d);return n.attach(o),r.merge(n.backdropClick().pipe(l.map((function(){return{reason:"dismiss"}}))),this._dataService.getCloseEvent()).pipe(l.take(1),l.tap((function(){n.detach(),n.dispose()})),l.map((function(e){if("confirm"===e.reason)return e;throw new Error("error")})))},e.prototype.buildOverlayConfig=function(){var e=this.defaultOverlayConfig;return c({},e,{scrollStrategy:this._overlay.scrollStrategies.block(),positionStrategy:this._overlay.position().global().centerHorizontally().centerVertically()})},e.decorators=[{type:t.Injectable,args:[{providedIn:"root"}]}],e.ctorParameters=function(){return[{type:o.Overlay},{type:s}]},e.ngInjectableDef=t.ɵɵdefineInjectable({factory:function(){return new e(t.ɵɵinject(o.Overlay),t.ɵɵinject(s))},token:e,providedIn:"root"}),e}();var u=function(){function e(){}return e.forRoot=function(){return{ngModule:e,providers:[m]}},e.decorators=[{type:t.NgModule,args:[{declarations:[d],entryComponents:[d],imports:[n.CommonModule,o.OverlayModule],providers:[m]}]}],e}();e.ConfirmModalService=m,e.OmisellConfirmModalModule=u,e.ɵa=d,e.ɵb=s,Object.defineProperty(e,"__esModule",{value:!0})}));
***************************************************************************** */var c=function(){return(c=Object.assign||function(e){for(var t,n=1,o=arguments.length;n<o;n++)for(var r in t=arguments[n])Object.prototype.hasOwnProperty.call(t,r)&&(e[r]=t[r]);return e}).apply(this,arguments)};var s=function(){function e(e){this._translateService=e,this._closeEvent$=new r.Subject,this.dataModel={isDanger:!0,textCancel:"Cancel",textConfirm:"Confirm",urlConfirm:"",title:""}}return e.prototype.setModalData=function(e){this.dataModel={isDanger:e.hasOwnProperty("isDanger")?e.isDanger:this.dataModel.isDanger,textConfirm:e.textConfirm||this.dataModel.textConfirm,textCancel:e.textCancel||this.dataModel.textCancel,urlConfirm:e.urlConfirm||this.dataModel.urlConfirm,content:e.content||"",title:e.title||this.dataModel.title},this._translateService&&("string"==typeof e.textConfirm&&(e.textConfirm=this._translateService.instant(e.textConfirm)),"string"==typeof e.textCancel&&(e.textCancel=this._translateService.instant(e.textCancel)),"string"==typeof e.title&&(e.title=this._translateService.instant(e.title)),"string"==typeof e.content&&(e.content=this._translateService.instant(e.content)))},e.prototype.confirm=function(){this._closeEvent$.next({reason:"confirm"})},e.prototype.cancel=function(){this._closeEvent$.next({reason:"dismiss"})},e.prototype.getCloseEvent=function(){return this._closeEvent$.asObservable()},e.decorators=[{type:t.Injectable,args:[{providedIn:"root"}]}],e.ctorParameters=function(){return[{type:a.TranslateService,decorators:[{type:t.Optional}]}]},e.ngInjectableDef=t.ɵɵdefineInjectable({factory:function(){return new e(t.ɵɵinject(a.TranslateService,8))},token:e,providedIn:"root"}),e}();var d=function(){function e(e,t){this.modalDataService=e,this._injector=t}return e.prototype.ngOnInit=function(){},e.prototype.confirm=function(){},e.decorators=[{type:t.Component,args:[{selector:"omisell-confirm-modal",template:'<div class="omisell-confirm-modal border rounded">\n <div class="omisell-confirm-modal__body bg-white">\n <h5 class="omisell-confirm-modal__title font-weight-bold mb-4">{{ modalDataService.dataModel.title }}</h5>\n <p class="omisell-confirm-modal__content mb-0">{{ modalDataService.dataModel.content }}</p>\n </div>\n\n <div class="group-actions p-3 bg-light text-right">\n <button type="button" class="btn mr-2" (click)="modalDataService.cancel()">\n {{ modalDataService.dataModel.textCancel }}\n </button>\n <button\n *ngIf="!modalDataService.dataModel.urlConfirm"\n type="button" class="btn"\n [className]="modalDataService.dataModel.isDanger ? \'btn btn-danger\': \'btn btn-primary\'"\n (click)="modalDataService.confirm()">\n {{ modalDataService.dataModel.textConfirm }}\n </button>\n <a\n *ngIf="modalDataService.dataModel.urlConfirm"\n class="btn"\n [className]="modalDataService.dataModel.isDanger ? \'btn btn-danger\': \'btn btn-primary\'"\n target="_blank"\n href="{{modalDataService.dataModel.urlConfirm}}">\n {{ modalDataService.dataModel.textConfirm }}\n </a>\n </div>\n</div>\n',encapsulation:t.ViewEncapsulation.None}]}],e.ctorParameters=function(){return[{type:s},{type:t.Injector}]},e}();var m=function(){function e(e,t){this._overlay=e,this._dataService=t,this.defaultOverlayConfig={hasBackdrop:!0,disposeOnNavigation:!0}}return e.prototype.openModal=function(e){var t=this.buildOverlayConfig(),n=this._overlay.create(t);this._dataService.setModalData(e);var o=new i.ComponentPortal(d);return n.attach(o),r.merge(n.backdropClick().pipe(l.map((function(){return{reason:"dismiss"}}))),this._dataService.getCloseEvent()).pipe(l.take(1),l.tap((function(){n.detach(),n.dispose()})),l.map((function(e){if("confirm"===e.reason)return e;throw new Error("error")})))},e.prototype.buildOverlayConfig=function(){var e=this.defaultOverlayConfig;return c({},e,{scrollStrategy:this._overlay.scrollStrategies.block(),positionStrategy:this._overlay.position().global().centerHorizontally().centerVertically()})},e.decorators=[{type:t.Injectable,args:[{providedIn:"root"}]}],e.ctorParameters=function(){return[{type:o.Overlay},{type:s}]},e.ngInjectableDef=t.ɵɵdefineInjectable({factory:function(){return new e(t.ɵɵinject(o.Overlay),t.ɵɵinject(s))},token:e,providedIn:"root"}),e}();var u=function(){function e(){}return e.forRoot=function(){return{ngModule:e,providers:[m]}},e.decorators=[{type:t.NgModule,args:[{declarations:[d],entryComponents:[d],imports:[n.CommonModule,o.OverlayModule],providers:[m]}]}],e}();e.ConfirmModalService=m,e.OmisellConfirmModalModule=u,e.ɵa=d,e.ɵb=s,Object.defineProperty(e,"__esModule",{value:!0})}));
//# sourceMappingURL=boxmeglobal-omisell-ui-lib-omisell-confirm-modal.umd.min.js.map

@@ -1015,2 +1015,10 @@ (function (global, factory) {

function (data) {
this.dataModel = {
isDanger: data.hasOwnProperty('isDanger') ? data.isDanger : this.dataModel.isDanger,
textConfirm: data.textConfirm || this.dataModel.textConfirm,
textCancel: data.textCancel || this.dataModel.textCancel,
urlConfirm: data.urlConfirm || this.dataModel.urlConfirm,
content: data.content || '',
title: data.title || this.dataModel.title
};
if (this._translateService) {

@@ -1030,10 +1038,2 @@ if (typeof data.textConfirm == 'string') {

}
this.dataModel = {
isDanger: data.hasOwnProperty('isDanger') ? data.isDanger : this.dataModel.isDanger,
textConfirm: data.textConfirm || this.dataModel.textConfirm,
textCancel: data.textCancel || this.dataModel.textCancel,
urlConfirm: data.urlConfirm || this.dataModel.urlConfirm,
content: data.content || '',
title: data.title || this.dataModel.title
};
};

@@ -1040,0 +1040,0 @@ /**

@@ -15,3 +15,3 @@ !function(t,e){"object"==typeof exports&&"undefined"!=typeof module?e(exports,require("@angular/core"),require("@angular/common"),require("rxjs"),require("rxjs/operators"),require("@angular/forms"),require("@angular/cdk/overlay"),require("@ngx-translate/core"),require("@angular/cdk/portal")):"function"==typeof define&&define.amd?define("@boxmeglobal/omisell-ui-lib",["exports","@angular/core","@angular/common","rxjs","rxjs/operators","@angular/forms","@angular/cdk/overlay","@ngx-translate/core","@angular/cdk/portal"],e):e(((t=t||self).boxmeglobal=t.boxmeglobal||{},t.boxmeglobal["omisell-ui-lib"]={}),t.ng.core,t.ng.common,t.rxjs,t.rxjs.operators,t.ng.forms,t.ng.cdk.overlay,t.core$1,t.ng.cdk.portal)}(this,(function(t,e,n,o,i,r,a,s,c){"use strict";

PERFORMANCE OF THIS SOFTWARE.
***************************************************************************** */var l=function(){return(l=Object.assign||function(t){for(var e,n=1,o=arguments.length;n<o;n++)for(var i in e=arguments[n])Object.prototype.hasOwnProperty.call(e,i)&&(t[i]=e[i]);return t}).apply(this,arguments)};var u=function(){function t(){this.listTab=[],this.activeTabChange=new o.Subject}return Object.defineProperty(t.prototype,"activeId",{get:function(){return this._activeId},enumerable:!0,configurable:!0}),Object.defineProperty(t.prototype,"activeTemplate",{get:function(){var t=this,e=this.listTab.find((function(e){return e.id==t._activeId}));return e&&e.template||null},enumerable:!0,configurable:!0}),t.prototype.setTabActive=function(t){this._activeId&&this.activeTabChange.next(t),this._activeId=t},t.prototype.addTab=function(t){this.listTab.find((function(e){return e.id==t.id}))||this.listTab.push(l({},t))},t.decorators=[{type:e.Injectable}],t.ctorParameters=function(){return[]},t}();var p=function(){function t(t){this._templateRef=t}return t.decorators=[{type:e.Directive,args:[{selector:"[omisell-tabcontent]"}]}],t.ctorParameters=function(){return[{type:e.TemplateRef}]},t}();var d=function(){function t(t){this.tabActivateService=t}return t.prototype.ngOnInit=function(){},t.prototype.ngAfterContentInit=function(){this.tabActivateService.addTab({id:this.tabID,template:this.tabcontent&&this.tabcontent._templateRef||null})},t.prototype.active=function(){this.tabActivateService.setTabActive(this.tabID)},t.decorators=[{type:e.Component,args:[{selector:"omisell-tab",template:'<div class="tab-control" [class.active]="tabActivateService.activeId == tabID" (click)="active()">\n <div class="tab-title">{{ title }}</div>\n</div>\n',styles:[""]}]}],t.ctorParameters=function(){return[{type:u}]},t.propDecorators={tabcontent:[{type:e.ContentChild,args:[p,{static:!1}]}],tabID:[{type:e.Input}],title:[{type:e.Input}]},t}();var f=function(){function t(t){this.tabActivateService=t,this.destroy$=new o.Subject,this.changeTab=new e.EventEmitter(!1)}return t.prototype.ngOnInit=function(){var t=this;this.tabActivateService.activeTabChange.pipe(i.takeUntil(this.destroy$)).subscribe((function(e){return t.changeTab.emit(e)})),this.tabIdDefault&&this.tabActivateService.setTabActive(this.tabIdDefault)},t.prototype.ngAfterContentInit=function(){var t=this;this.tabs.changes.pipe(i.startWith(!0),i.filter((function(){return!t.tabActivateService.activeId&&t.tabs.length>0})),i.delay(0),i.takeUntil(this.destroy$)).subscribe((function(){var e=t.tabs.first;t.tabActivateService.setTabActive(e.tabID)}))},t.prototype.ngOnDestroy=function(){this.destroy$.next(),this.destroy$.complete(),this.destroy$.unsubscribe()},t.decorators=[{type:e.Component,args:[{selector:"omisell-tabset",template:'<div class="control-wrapper d-flex w-100">\n <ng-content></ng-content>\n</div>\n\n<div class="tab-content" *ngIf="tabActivateService.activeTemplate">\n <ng-container *ngTemplateOutlet="tabActivateService.activeTemplate"></ng-container>\n</div>\n',providers:[u],styles:[""]}]}],t.ctorParameters=function(){return[{type:u}]},t.propDecorators={tabs:[{type:e.ContentChildren,args:[d,{descendants:!1}]}],tabIdDefault:[{type:e.Input,args:["tabIdDefault"]}],changeTab:[{type:e.Output,args:["changeTab"]}]},t}();var h=function(){function t(){}return t.decorators=[{type:e.NgModule,args:[{declarations:[d,f,p],exports:[d,f,p],imports:[n.CommonModule]}]}],t}(),v=function(){function t(){this.isActive=!1,this._onChangeFn=function(t){},this._onTouchedFn=function(){},this.isDisabled=!1,this.onChangeEvent=new e.EventEmitter(!0)}return t.prototype.onClick=function(){this.isDisabled||(this.isActive=!this.isActive,this._onTouchedFn(),this.onChangeEvent.emit(this.isActive),this._onChangeFn(this.isActive))},t.prototype.ngOnInit=function(){},t.prototype.registerOnChange=function(t){this._onChangeFn=t},t.prototype.writeValue=function(t){this.isActive=!!t},t.prototype.registerOnTouched=function(t){this._onTouchedFn=t},t.prototype.setDisabledState=function(t){this.isDisabled=t},t.decorators=[{type:e.Component,args:[{selector:"omisell-switch",template:'<div class="ui-switch" [class.ui-switch--checked]="isActive" [class.ui-switch--disabled]="isDisabled">\n <span class="ui-switch__inner"></span>\n</div>\n',encapsulation:e.ViewEncapsulation.None,providers:[{provide:r.NG_VALUE_ACCESSOR,useExisting:e.forwardRef((function(){return t})),multi:!0}]}]}],t.ctorParameters=function(){return[]},t.propDecorators={isDisabled:[{type:e.Input,args:["disabled"]}],onChangeEvent:[{type:e.Output,args:["onChange"]}],onClick:[{type:e.HostListener,args:["click"]}]},t}();var m=function(){function t(){}return t.decorators=[{type:e.NgModule,args:[{declarations:[v],imports:[n.CommonModule],exports:[v]}]}],t}(),g=new e.InjectionToken("OmisellGroupToken"),b=function(){function t(){this._onChangeFn=function(t){},this._onTouchedFn=function(){},this.isDisabled=!1}return Object.defineProperty(t.prototype,"selectedOption",{get:function(){return this._selectedOption},enumerable:!0,configurable:!0}),t.prototype.ngOnInit=function(){},t.prototype.registerOnChange=function(t){this._onChangeFn=t},t.prototype.registerOnTouched=function(t){this._onTouchedFn=t},t.prototype.writeValue=function(t){this._selectedOption=t,this._checkRadiosInput()},t.prototype.setDisabledState=function(t){this.isDisabled=t},t.prototype.setSelectedOption=function(t){this._selectedOption!=t&&(this._selectedOption=t,this._checkRadiosInput(),this._onChangeFn&&this._onChangeFn(t),this._onTouchedFn&&this._onTouchedFn())},t.prototype._checkRadiosInput=function(){this._radios&&this._radios.length&&this._radios.forEach((function(t){return t.updateStatusCheck()}))},t.decorators=[{type:e.Component,args:[{selector:"omisell-radio-group",template:"\n <ng-content></ng-content>\n ",encapsulation:e.ViewEncapsulation.None,providers:[{provide:r.NG_VALUE_ACCESSOR,useExisting:e.forwardRef((function(){return t})),multi:!0},{provide:g,useExisting:t}]}]}],t.propDecorators={_radios:[{type:e.ContentChildren,args:[e.forwardRef((function(){return y})),{descendants:!1}]}],isDisabled:[{type:e.Input,args:["disabled"]}]},t}();var y=function(){function t(t){this._inputGroup=t}return Object.defineProperty(t.prototype,"checked",{get:function(){return this._checked},enumerable:!0,configurable:!0}),Object.defineProperty(t.prototype,"value",{get:function(){return this._value},set:function(t){this._value!=t&&(this._value=t,this._inputGroup&&(this._checked=this._value==this._inputGroup.selectedOption))},enumerable:!0,configurable:!0}),t.prototype.onClick=function(){this.value!=this._inputGroup.selectedOption&&this._inputGroup.setSelectedOption(this.value)},t.prototype.updateStatusCheck=function(){this._checked=this.value==this._inputGroup.selectedOption},t.prototype.ngOnInit=function(){},t.decorators=[{type:e.Component,args:[{selector:"omisell-radio-input",template:'<div class="ui-radio-input__wrapper">\n <div class="ui-radio-input" [class.ui-radio-input--checked]="checked">\n <div class="ui-radio-input__inner"></div>\n </div>\n <span class="ui-radio-input__name">{{ name }}</span>\n</div>\n',encapsulation:e.ViewEncapsulation.None}]}],t.ctorParameters=function(){return[{type:b,decorators:[{type:e.Inject,args:[g]}]}]},t.propDecorators={name:[{type:e.Input}],value:[{type:e.Input,args:["value"]}],onClick:[{type:e.HostListener,args:["click"]}]},t}();var C=function(){function t(){}return t.decorators=[{type:e.NgModule,args:[{declarations:[y,b],imports:[n.CommonModule],exports:[y,b]}]}],t}(),_=function(){function t(t){this._translateService=t,this._closeEvent$=new o.Subject,this.dataModel={isDanger:!0,textCancel:"Cancel",textConfirm:"Confirm",urlConfirm:"",title:""}}return t.prototype.setModalData=function(t){this._translateService&&("string"==typeof t.textConfirm&&(t.textConfirm=this._translateService.instant(t.textConfirm)),"string"==typeof t.textCancel&&(t.textCancel=this._translateService.instant(t.textCancel)),"string"==typeof t.title&&(t.title=this._translateService.instant(t.title)),"string"==typeof t.content&&(t.content=this._translateService.instant(t.content))),this.dataModel={isDanger:t.hasOwnProperty("isDanger")?t.isDanger:this.dataModel.isDanger,textConfirm:t.textConfirm||this.dataModel.textConfirm,textCancel:t.textCancel||this.dataModel.textCancel,urlConfirm:t.urlConfirm||this.dataModel.urlConfirm,content:t.content||"",title:t.title||this.dataModel.title}},t.prototype.confirm=function(){this._closeEvent$.next({reason:"confirm"})},t.prototype.cancel=function(){this._closeEvent$.next({reason:"dismiss"})},t.prototype.getCloseEvent=function(){return this._closeEvent$.asObservable()},t.decorators=[{type:e.Injectable,args:[{providedIn:"root"}]}],t.ctorParameters=function(){return[{type:s.TranslateService,decorators:[{type:e.Optional}]}]},t.ngInjectableDef=e.ɵɵdefineInjectable({factory:function(){return new t(e.ɵɵinject(s.TranslateService,8))},token:t,providedIn:"root"}),t}();var S=function(){function t(t,e){this.modalDataService=t,this._injector=e}return t.prototype.ngOnInit=function(){},t.prototype.confirm=function(){},t.decorators=[{type:e.Component,args:[{selector:"omisell-confirm-modal",template:'<div class="omisell-confirm-modal border rounded">\n <div class="omisell-confirm-modal__body bg-white">\n <h5 class="omisell-confirm-modal__title font-weight-bold mb-4">{{ modalDataService.dataModel.title }}</h5>\n <p class="omisell-confirm-modal__content mb-0">{{ modalDataService.dataModel.content }}</p>\n </div>\n\n <div class="group-actions p-3 bg-light text-right">\n <button type="button" class="btn mr-2" (click)="modalDataService.cancel()">\n {{ modalDataService.dataModel.textCancel }}\n </button>\n <button\n *ngIf="!modalDataService.dataModel.urlConfirm"\n type="button" class="btn"\n [className]="modalDataService.dataModel.isDanger ? \'btn btn-danger\': \'btn btn-primary\'"\n (click)="modalDataService.confirm()">\n {{ modalDataService.dataModel.textConfirm }}\n </button>\n <a\n *ngIf="modalDataService.dataModel.urlConfirm"\n class="btn"\n [className]="modalDataService.dataModel.isDanger ? \'btn btn-danger\': \'btn btn-primary\'"\n target="_blank"\n href="{{modalDataService.dataModel.urlConfirm}}">\n {{ modalDataService.dataModel.textConfirm }}\n </a>\n </div>\n</div>\n',encapsulation:e.ViewEncapsulation.None}]}],t.ctorParameters=function(){return[{type:_},{type:e.Injector}]},t}();var I=function(){function t(t,e){this._overlay=t,this._dataService=e,this.defaultOverlayConfig={hasBackdrop:!0,disposeOnNavigation:!0}}return t.prototype.openModal=function(t){var e=this.buildOverlayConfig(),n=this._overlay.create(e);this._dataService.setModalData(t);var r=new c.ComponentPortal(S);return n.attach(r),o.merge(n.backdropClick().pipe(i.map((function(){return{reason:"dismiss"}}))),this._dataService.getCloseEvent()).pipe(i.take(1),i.tap((function(){n.detach(),n.dispose()})),i.map((function(t){if("confirm"===t.reason)return t;throw new Error("error")})))},t.prototype.buildOverlayConfig=function(){var t=this.defaultOverlayConfig;return l({},t,{scrollStrategy:this._overlay.scrollStrategies.block(),positionStrategy:this._overlay.position().global().centerHorizontally().centerVertically()})},t.decorators=[{type:e.Injectable,args:[{providedIn:"root"}]}],t.ctorParameters=function(){return[{type:a.Overlay},{type:_}]},t.ngInjectableDef=e.ɵɵdefineInjectable({factory:function(){return new t(e.ɵɵinject(a.Overlay),e.ɵɵinject(_))},token:t,providedIn:"root"}),t}();var O=function(){function t(){}return t.forRoot=function(){return{ngModule:t,providers:[I]}},t.decorators=[{type:e.NgModule,args:[{declarations:[S],entryComponents:[S],imports:[n.CommonModule,a.OverlayModule],providers:[I]}]}],t}();t.ConfirmModalService=I,t.OmisellConfirmModalModule=O,t.OmisellRadioInputModule=C,t.OmisellSwitchComponent=v,t.OmisellSwitchModule=m,t.OmisellTabsetModule=h,t.TabComponent=d,t.TabContentDirective=p,t.TabsetComponent=f,t.ɵa=u,t.ɵb=y,t.ɵc=g,t.ɵd=b,t.ɵe=S,t.ɵf=_,Object.defineProperty(t,"__esModule",{value:!0})}));
***************************************************************************** */var l=function(){return(l=Object.assign||function(t){for(var e,n=1,o=arguments.length;n<o;n++)for(var i in e=arguments[n])Object.prototype.hasOwnProperty.call(e,i)&&(t[i]=e[i]);return t}).apply(this,arguments)};var u=function(){function t(){this.listTab=[],this.activeTabChange=new o.Subject}return Object.defineProperty(t.prototype,"activeId",{get:function(){return this._activeId},enumerable:!0,configurable:!0}),Object.defineProperty(t.prototype,"activeTemplate",{get:function(){var t=this,e=this.listTab.find((function(e){return e.id==t._activeId}));return e&&e.template||null},enumerable:!0,configurable:!0}),t.prototype.setTabActive=function(t){this._activeId&&this.activeTabChange.next(t),this._activeId=t},t.prototype.addTab=function(t){this.listTab.find((function(e){return e.id==t.id}))||this.listTab.push(l({},t))},t.decorators=[{type:e.Injectable}],t.ctorParameters=function(){return[]},t}();var p=function(){function t(t){this._templateRef=t}return t.decorators=[{type:e.Directive,args:[{selector:"[omisell-tabcontent]"}]}],t.ctorParameters=function(){return[{type:e.TemplateRef}]},t}();var d=function(){function t(t){this.tabActivateService=t}return t.prototype.ngOnInit=function(){},t.prototype.ngAfterContentInit=function(){this.tabActivateService.addTab({id:this.tabID,template:this.tabcontent&&this.tabcontent._templateRef||null})},t.prototype.active=function(){this.tabActivateService.setTabActive(this.tabID)},t.decorators=[{type:e.Component,args:[{selector:"omisell-tab",template:'<div class="tab-control" [class.active]="tabActivateService.activeId == tabID" (click)="active()">\n <div class="tab-title">{{ title }}</div>\n</div>\n',styles:[""]}]}],t.ctorParameters=function(){return[{type:u}]},t.propDecorators={tabcontent:[{type:e.ContentChild,args:[p,{static:!1}]}],tabID:[{type:e.Input}],title:[{type:e.Input}]},t}();var f=function(){function t(t){this.tabActivateService=t,this.destroy$=new o.Subject,this.changeTab=new e.EventEmitter(!1)}return t.prototype.ngOnInit=function(){var t=this;this.tabActivateService.activeTabChange.pipe(i.takeUntil(this.destroy$)).subscribe((function(e){return t.changeTab.emit(e)})),this.tabIdDefault&&this.tabActivateService.setTabActive(this.tabIdDefault)},t.prototype.ngAfterContentInit=function(){var t=this;this.tabs.changes.pipe(i.startWith(!0),i.filter((function(){return!t.tabActivateService.activeId&&t.tabs.length>0})),i.delay(0),i.takeUntil(this.destroy$)).subscribe((function(){var e=t.tabs.first;t.tabActivateService.setTabActive(e.tabID)}))},t.prototype.ngOnDestroy=function(){this.destroy$.next(),this.destroy$.complete(),this.destroy$.unsubscribe()},t.decorators=[{type:e.Component,args:[{selector:"omisell-tabset",template:'<div class="control-wrapper d-flex w-100">\n <ng-content></ng-content>\n</div>\n\n<div class="tab-content" *ngIf="tabActivateService.activeTemplate">\n <ng-container *ngTemplateOutlet="tabActivateService.activeTemplate"></ng-container>\n</div>\n',providers:[u],styles:[""]}]}],t.ctorParameters=function(){return[{type:u}]},t.propDecorators={tabs:[{type:e.ContentChildren,args:[d,{descendants:!1}]}],tabIdDefault:[{type:e.Input,args:["tabIdDefault"]}],changeTab:[{type:e.Output,args:["changeTab"]}]},t}();var h=function(){function t(){}return t.decorators=[{type:e.NgModule,args:[{declarations:[d,f,p],exports:[d,f,p],imports:[n.CommonModule]}]}],t}(),v=function(){function t(){this.isActive=!1,this._onChangeFn=function(t){},this._onTouchedFn=function(){},this.isDisabled=!1,this.onChangeEvent=new e.EventEmitter(!0)}return t.prototype.onClick=function(){this.isDisabled||(this.isActive=!this.isActive,this._onTouchedFn(),this.onChangeEvent.emit(this.isActive),this._onChangeFn(this.isActive))},t.prototype.ngOnInit=function(){},t.prototype.registerOnChange=function(t){this._onChangeFn=t},t.prototype.writeValue=function(t){this.isActive=!!t},t.prototype.registerOnTouched=function(t){this._onTouchedFn=t},t.prototype.setDisabledState=function(t){this.isDisabled=t},t.decorators=[{type:e.Component,args:[{selector:"omisell-switch",template:'<div class="ui-switch" [class.ui-switch--checked]="isActive" [class.ui-switch--disabled]="isDisabled">\n <span class="ui-switch__inner"></span>\n</div>\n',encapsulation:e.ViewEncapsulation.None,providers:[{provide:r.NG_VALUE_ACCESSOR,useExisting:e.forwardRef((function(){return t})),multi:!0}]}]}],t.ctorParameters=function(){return[]},t.propDecorators={isDisabled:[{type:e.Input,args:["disabled"]}],onChangeEvent:[{type:e.Output,args:["onChange"]}],onClick:[{type:e.HostListener,args:["click"]}]},t}();var m=function(){function t(){}return t.decorators=[{type:e.NgModule,args:[{declarations:[v],imports:[n.CommonModule],exports:[v]}]}],t}(),g=new e.InjectionToken("OmisellGroupToken"),b=function(){function t(){this._onChangeFn=function(t){},this._onTouchedFn=function(){},this.isDisabled=!1}return Object.defineProperty(t.prototype,"selectedOption",{get:function(){return this._selectedOption},enumerable:!0,configurable:!0}),t.prototype.ngOnInit=function(){},t.prototype.registerOnChange=function(t){this._onChangeFn=t},t.prototype.registerOnTouched=function(t){this._onTouchedFn=t},t.prototype.writeValue=function(t){this._selectedOption=t,this._checkRadiosInput()},t.prototype.setDisabledState=function(t){this.isDisabled=t},t.prototype.setSelectedOption=function(t){this._selectedOption!=t&&(this._selectedOption=t,this._checkRadiosInput(),this._onChangeFn&&this._onChangeFn(t),this._onTouchedFn&&this._onTouchedFn())},t.prototype._checkRadiosInput=function(){this._radios&&this._radios.length&&this._radios.forEach((function(t){return t.updateStatusCheck()}))},t.decorators=[{type:e.Component,args:[{selector:"omisell-radio-group",template:"\n <ng-content></ng-content>\n ",encapsulation:e.ViewEncapsulation.None,providers:[{provide:r.NG_VALUE_ACCESSOR,useExisting:e.forwardRef((function(){return t})),multi:!0},{provide:g,useExisting:t}]}]}],t.propDecorators={_radios:[{type:e.ContentChildren,args:[e.forwardRef((function(){return y})),{descendants:!1}]}],isDisabled:[{type:e.Input,args:["disabled"]}]},t}();var y=function(){function t(t){this._inputGroup=t}return Object.defineProperty(t.prototype,"checked",{get:function(){return this._checked},enumerable:!0,configurable:!0}),Object.defineProperty(t.prototype,"value",{get:function(){return this._value},set:function(t){this._value!=t&&(this._value=t,this._inputGroup&&(this._checked=this._value==this._inputGroup.selectedOption))},enumerable:!0,configurable:!0}),t.prototype.onClick=function(){this.value!=this._inputGroup.selectedOption&&this._inputGroup.setSelectedOption(this.value)},t.prototype.updateStatusCheck=function(){this._checked=this.value==this._inputGroup.selectedOption},t.prototype.ngOnInit=function(){},t.decorators=[{type:e.Component,args:[{selector:"omisell-radio-input",template:'<div class="ui-radio-input__wrapper">\n <div class="ui-radio-input" [class.ui-radio-input--checked]="checked">\n <div class="ui-radio-input__inner"></div>\n </div>\n <span class="ui-radio-input__name">{{ name }}</span>\n</div>\n',encapsulation:e.ViewEncapsulation.None}]}],t.ctorParameters=function(){return[{type:b,decorators:[{type:e.Inject,args:[g]}]}]},t.propDecorators={name:[{type:e.Input}],value:[{type:e.Input,args:["value"]}],onClick:[{type:e.HostListener,args:["click"]}]},t}();var C=function(){function t(){}return t.decorators=[{type:e.NgModule,args:[{declarations:[y,b],imports:[n.CommonModule],exports:[y,b]}]}],t}(),_=function(){function t(t){this._translateService=t,this._closeEvent$=new o.Subject,this.dataModel={isDanger:!0,textCancel:"Cancel",textConfirm:"Confirm",urlConfirm:"",title:""}}return t.prototype.setModalData=function(t){this.dataModel={isDanger:t.hasOwnProperty("isDanger")?t.isDanger:this.dataModel.isDanger,textConfirm:t.textConfirm||this.dataModel.textConfirm,textCancel:t.textCancel||this.dataModel.textCancel,urlConfirm:t.urlConfirm||this.dataModel.urlConfirm,content:t.content||"",title:t.title||this.dataModel.title},this._translateService&&("string"==typeof t.textConfirm&&(t.textConfirm=this._translateService.instant(t.textConfirm)),"string"==typeof t.textCancel&&(t.textCancel=this._translateService.instant(t.textCancel)),"string"==typeof t.title&&(t.title=this._translateService.instant(t.title)),"string"==typeof t.content&&(t.content=this._translateService.instant(t.content)))},t.prototype.confirm=function(){this._closeEvent$.next({reason:"confirm"})},t.prototype.cancel=function(){this._closeEvent$.next({reason:"dismiss"})},t.prototype.getCloseEvent=function(){return this._closeEvent$.asObservable()},t.decorators=[{type:e.Injectable,args:[{providedIn:"root"}]}],t.ctorParameters=function(){return[{type:s.TranslateService,decorators:[{type:e.Optional}]}]},t.ngInjectableDef=e.ɵɵdefineInjectable({factory:function(){return new t(e.ɵɵinject(s.TranslateService,8))},token:t,providedIn:"root"}),t}();var S=function(){function t(t,e){this.modalDataService=t,this._injector=e}return t.prototype.ngOnInit=function(){},t.prototype.confirm=function(){},t.decorators=[{type:e.Component,args:[{selector:"omisell-confirm-modal",template:'<div class="omisell-confirm-modal border rounded">\n <div class="omisell-confirm-modal__body bg-white">\n <h5 class="omisell-confirm-modal__title font-weight-bold mb-4">{{ modalDataService.dataModel.title }}</h5>\n <p class="omisell-confirm-modal__content mb-0">{{ modalDataService.dataModel.content }}</p>\n </div>\n\n <div class="group-actions p-3 bg-light text-right">\n <button type="button" class="btn mr-2" (click)="modalDataService.cancel()">\n {{ modalDataService.dataModel.textCancel }}\n </button>\n <button\n *ngIf="!modalDataService.dataModel.urlConfirm"\n type="button" class="btn"\n [className]="modalDataService.dataModel.isDanger ? \'btn btn-danger\': \'btn btn-primary\'"\n (click)="modalDataService.confirm()">\n {{ modalDataService.dataModel.textConfirm }}\n </button>\n <a\n *ngIf="modalDataService.dataModel.urlConfirm"\n class="btn"\n [className]="modalDataService.dataModel.isDanger ? \'btn btn-danger\': \'btn btn-primary\'"\n target="_blank"\n href="{{modalDataService.dataModel.urlConfirm}}">\n {{ modalDataService.dataModel.textConfirm }}\n </a>\n </div>\n</div>\n',encapsulation:e.ViewEncapsulation.None}]}],t.ctorParameters=function(){return[{type:_},{type:e.Injector}]},t}();var I=function(){function t(t,e){this._overlay=t,this._dataService=e,this.defaultOverlayConfig={hasBackdrop:!0,disposeOnNavigation:!0}}return t.prototype.openModal=function(t){var e=this.buildOverlayConfig(),n=this._overlay.create(e);this._dataService.setModalData(t);var r=new c.ComponentPortal(S);return n.attach(r),o.merge(n.backdropClick().pipe(i.map((function(){return{reason:"dismiss"}}))),this._dataService.getCloseEvent()).pipe(i.take(1),i.tap((function(){n.detach(),n.dispose()})),i.map((function(t){if("confirm"===t.reason)return t;throw new Error("error")})))},t.prototype.buildOverlayConfig=function(){var t=this.defaultOverlayConfig;return l({},t,{scrollStrategy:this._overlay.scrollStrategies.block(),positionStrategy:this._overlay.position().global().centerHorizontally().centerVertically()})},t.decorators=[{type:e.Injectable,args:[{providedIn:"root"}]}],t.ctorParameters=function(){return[{type:a.Overlay},{type:_}]},t.ngInjectableDef=e.ɵɵdefineInjectable({factory:function(){return new t(e.ɵɵinject(a.Overlay),e.ɵɵinject(_))},token:t,providedIn:"root"}),t}();var O=function(){function t(){}return t.forRoot=function(){return{ngModule:t,providers:[I]}},t.decorators=[{type:e.NgModule,args:[{declarations:[S],entryComponents:[S],imports:[n.CommonModule,a.OverlayModule],providers:[I]}]}],t}();t.ConfirmModalService=I,t.OmisellConfirmModalModule=O,t.OmisellRadioInputModule=C,t.OmisellSwitchComponent=v,t.OmisellSwitchModule=m,t.OmisellTabsetModule=h,t.TabComponent=d,t.TabContentDirective=p,t.TabsetComponent=f,t.ɵa=u,t.ɵb=y,t.ɵc=g,t.ɵd=b,t.ɵe=S,t.ɵf=_,Object.defineProperty(t,"__esModule",{value:!0})}));
//# sourceMappingURL=boxmeglobal-omisell-ui-lib.umd.min.js.map

@@ -31,2 +31,10 @@ /**

setModalData(data) {
this.dataModel = {
isDanger: data.hasOwnProperty('isDanger') ? data.isDanger : this.dataModel.isDanger,
textConfirm: data.textConfirm || this.dataModel.textConfirm,
textCancel: data.textCancel || this.dataModel.textCancel,
urlConfirm: data.urlConfirm || this.dataModel.urlConfirm,
content: data.content || '',
title: data.title || this.dataModel.title
};
if (this._translateService) {

@@ -46,10 +54,2 @@ if (typeof data.textConfirm == 'string') {

}
this.dataModel = {
isDanger: data.hasOwnProperty('isDanger') ? data.isDanger : this.dataModel.isDanger,
textConfirm: data.textConfirm || this.dataModel.textConfirm,
textCancel: data.textCancel || this.dataModel.textCancel,
urlConfirm: data.urlConfirm || this.dataModel.urlConfirm,
content: data.content || '',
title: data.title || this.dataModel.title
};
}

@@ -97,2 +97,2 @@ /**

}
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoibW9kYWwtZGF0YS5zZXJ2aWNlLmpzIiwic291cmNlUm9vdCI6Im5nOi8vQGJveG1lZ2xvYmFsL29taXNlbGwtdWktbGliL29taXNlbGwtY29uZmlybS1tb2RhbC8iLCJzb3VyY2VzIjpbIm1vZGFsLWRhdGEuc2VydmljZS50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiOzs7OztBQUFBLE9BQU8sRUFBRSxVQUFVLEVBQUUsUUFBUSxFQUFFLE1BQU0sZUFBZSxDQUFDO0FBRXJELE9BQU8sRUFBRSxPQUFPLEVBQUUsTUFBTSxNQUFNLENBQUE7QUFDOUIsT0FBTyxFQUFFLGdCQUFnQixFQUFFLE1BQU0scUJBQXFCLENBQUM7OztBQUd2RCxNQUFNLE9BQU8sZ0JBQWdCOzs7O0lBVzNCLFlBQ3NCLGlCQUFtQztRQUFuQyxzQkFBaUIsR0FBakIsaUJBQWlCLENBQWtCO1FBWGpELGlCQUFZLEdBQW1DLElBQUksT0FBTyxFQUF5QixDQUFBO1FBRTNGLGNBQVMsR0FBc0I7WUFDN0IsUUFBUSxFQUFFLElBQUk7WUFDZCxVQUFVLEVBQUUsUUFBUTtZQUNwQixXQUFXLEVBQUUsU0FBUztZQUN0QixVQUFVLEVBQUUsRUFBRTtZQUNkLEtBQUssRUFBRSxFQUFFO1NBQ1YsQ0FBQTtJQUlHLENBQUM7Ozs7O0lBRUwsWUFBWSxDQUFDLElBQXVCO1FBQ2xDLElBQUksSUFBSSxDQUFDLGlCQUFpQixFQUFFO1lBQzFCLElBQUksT0FBTyxJQUFJLENBQUMsV0FBVyxJQUFJLFFBQVEsRUFBRTtnQkFDdkMsSUFBSSxDQUFDLFdBQVcsR0FBRyxJQUFJLENBQUMsaUJBQWlCLENBQUMsT0FBTyxDQUFDLElBQUksQ0FBQyxXQUFXLENBQUMsQ0FBQTthQUNwRTtZQUVELElBQUksT0FBTyxJQUFJLENBQUMsVUFBVSxJQUFJLFFBQVEsRUFBRTtnQkFDdEMsSUFBSSxDQUFDLFVBQVUsR0FBRyxJQUFJLENBQUMsaUJBQWlCLENBQUMsT0FBTyxDQUFDLElBQUksQ0FBQyxVQUFVLENBQUMsQ0FBQTthQUNsRTtZQUVELElBQUksT0FBTyxJQUFJLENBQUMsS0FBSyxJQUFJLFFBQVEsRUFBRTtnQkFDakMsSUFBSSxDQUFDLEtBQUssR0FBRyxJQUFJLENBQUMsaUJBQWlCLENBQUMsT0FBTyxDQUFDLElBQUksQ0FBQyxLQUFLLENBQUMsQ0FBQTthQUN4RDtZQUVELElBQUksT0FBTyxJQUFJLENBQUMsT0FBTyxJQUFJLFFBQVEsRUFBRTtnQkFDbkMsSUFBSSxDQUFDLE9BQU8sR0FBRyxJQUFJLENBQUMsaUJBQWlCLENBQUMsT0FBTyxDQUFDLElBQUksQ0FBQyxPQUFPLENBQUMsQ0FBQTthQUM1RDtTQUNGO1FBRUQsSUFBSSxDQUFDLFNBQVMsR0FBRztZQUNmLFFBQVEsRUFBRSxJQUFJLENBQUMsY0FBYyxDQUFDLFVBQVUsQ0FBQyxDQUFDLENBQUMsQ0FBQyxJQUFJLENBQUMsUUFBUSxDQUFDLENBQUMsQ0FBQyxJQUFJLENBQUMsU0FBUyxDQUFDLFFBQVE7WUFDbkYsV0FBVyxFQUFFLElBQUksQ0FBQyxXQUFXLElBQUksSUFBSSxDQUFDLFNBQVMsQ0FBQyxXQUFXO1lBQzNELFVBQVUsRUFBRSxJQUFJLENBQUMsVUFBVSxJQUFJLElBQUksQ0FBQyxTQUFTLENBQUMsVUFBVTtZQUN4RCxVQUFVLEVBQUUsSUFBSSxDQUFDLFVBQVUsSUFBSSxJQUFJLENBQUMsU0FBUyxDQUFDLFVBQVU7WUFDeEQsT0FBTyxFQUFFLElBQUksQ0FBQyxPQUFPLElBQUksRUFBRTtZQUMzQixLQUFLLEVBQUUsSUFBSSxDQUFDLEtBQUssSUFBSSxJQUFJLENBQUMsU0FBUyxDQUFDLEtBQUs7U0FDMUMsQ0FBQTtJQUNILENBQUM7Ozs7SUFFRCxPQUFPO1FBQ0wsSUFBSSxDQUFDLFlBQVksQ0FBQyxJQUFJLENBQUMsRUFBRSxNQUFNLEVBQUUsU0FBUyxFQUFFLENBQUMsQ0FBQTtJQUMvQyxDQUFDOzs7O0lBRUQsTUFBTTtRQUNKLElBQUksQ0FBQyxZQUFZLENBQUMsSUFBSSxDQUFDLEVBQUUsTUFBTSxFQUFFLFNBQVMsRUFBRSxDQUFDLENBQUE7SUFDL0MsQ0FBQzs7OztJQUVELGFBQWE7UUFDWCxPQUFPLElBQUksQ0FBQyxZQUFZLENBQUMsWUFBWSxFQUFFLENBQUE7SUFDekMsQ0FBQzs7O1lBdkRGLFVBQVUsU0FBQyxFQUFFLFVBQVUsRUFBRSxNQUFNLEVBQUU7Ozs7WUFGekIsZ0JBQWdCLHVCQWVwQixRQUFROzs7Ozs7OztJQVhYLHdDQUEyRjs7SUFFM0YscUNBTUM7Ozs7O0lBR0MsNkNBQXVEIiwic291cmNlc0NvbnRlbnQiOlsiaW1wb3J0IHsgSW5qZWN0YWJsZSwgT3B0aW9uYWwgfSBmcm9tICdAYW5ndWxhci9jb3JlJztcbmltcG9ydCB7IENsb3NlTW9kYWxSZWFzb25FdmVudCwgQ29uZmlybU1vZGFsTW9kZWwgfSBmcm9tICcuL2NvbmZpcm0tbW9kYWwubW9kZWwnXG5pbXBvcnQgeyBTdWJqZWN0IH0gZnJvbSAncnhqcydcbmltcG9ydCB7IFRyYW5zbGF0ZVNlcnZpY2UgfSBmcm9tICdAbmd4LXRyYW5zbGF0ZS9jb3JlJztcblxuQEluamVjdGFibGUoeyBwcm92aWRlZEluOiAncm9vdCcgfSlcbmV4cG9ydCBjbGFzcyBNb2RhbERhdGFTZXJ2aWNlIHtcbiAgcHJpdmF0ZSBfY2xvc2VFdmVudCQ6IFN1YmplY3Q8Q2xvc2VNb2RhbFJlYXNvbkV2ZW50PiA9IG5ldyBTdWJqZWN0PENsb3NlTW9kYWxSZWFzb25FdmVudD4oKVxuXG4gIGRhdGFNb2RlbDogQ29uZmlybU1vZGFsTW9kZWwgPSB7XG4gICAgaXNEYW5nZXI6IHRydWUsXG4gICAgdGV4dENhbmNlbDogJ0NhbmNlbCcsXG4gICAgdGV4dENvbmZpcm06ICdDb25maXJtJyxcbiAgICB1cmxDb25maXJtOiAnJyxcbiAgICB0aXRsZTogJydcbiAgfVxuXG4gIGNvbnN0cnVjdG9yKFxuICAgIEBPcHRpb25hbCgpIHByaXZhdGUgX3RyYW5zbGF0ZVNlcnZpY2U6IFRyYW5zbGF0ZVNlcnZpY2VcbiAgKSB7IH1cblxuICBzZXRNb2RhbERhdGEoZGF0YTogQ29uZmlybU1vZGFsTW9kZWwpIHtcbiAgICBpZiAodGhpcy5fdHJhbnNsYXRlU2VydmljZSkge1xuICAgICAgaWYgKHR5cGVvZiBkYXRhLnRleHRDb25maXJtID09ICdzdHJpbmcnKSB7XG4gICAgICAgIGRhdGEudGV4dENvbmZpcm0gPSB0aGlzLl90cmFuc2xhdGVTZXJ2aWNlLmluc3RhbnQoZGF0YS50ZXh0Q29uZmlybSlcbiAgICAgIH1cblxuICAgICAgaWYgKHR5cGVvZiBkYXRhLnRleHRDYW5jZWwgPT0gJ3N0cmluZycpIHtcbiAgICAgICAgZGF0YS50ZXh0Q2FuY2VsID0gdGhpcy5fdHJhbnNsYXRlU2VydmljZS5pbnN0YW50KGRhdGEudGV4dENhbmNlbClcbiAgICAgIH1cblxuICAgICAgaWYgKHR5cGVvZiBkYXRhLnRpdGxlID09ICdzdHJpbmcnKSB7XG4gICAgICAgIGRhdGEudGl0bGUgPSB0aGlzLl90cmFuc2xhdGVTZXJ2aWNlLmluc3RhbnQoZGF0YS50aXRsZSlcbiAgICAgIH1cblxuICAgICAgaWYgKHR5cGVvZiBkYXRhLmNvbnRlbnQgPT0gJ3N0cmluZycpIHtcbiAgICAgICAgZGF0YS5jb250ZW50ID0gdGhpcy5fdHJhbnNsYXRlU2VydmljZS5pbnN0YW50KGRhdGEuY29udGVudClcbiAgICAgIH1cbiAgICB9XG5cbiAgICB0aGlzLmRhdGFNb2RlbCA9IHtcbiAgICAgIGlzRGFuZ2VyOiBkYXRhLmhhc093blByb3BlcnR5KCdpc0RhbmdlcicpID8gZGF0YS5pc0RhbmdlciA6IHRoaXMuZGF0YU1vZGVsLmlzRGFuZ2VyLFxuICAgICAgdGV4dENvbmZpcm06IGRhdGEudGV4dENvbmZpcm0gfHwgdGhpcy5kYXRhTW9kZWwudGV4dENvbmZpcm0sXG4gICAgICB0ZXh0Q2FuY2VsOiBkYXRhLnRleHRDYW5jZWwgfHwgdGhpcy5kYXRhTW9kZWwudGV4dENhbmNlbCxcbiAgICAgIHVybENvbmZpcm06IGRhdGEudXJsQ29uZmlybSB8fCB0aGlzLmRhdGFNb2RlbC51cmxDb25maXJtLFxuICAgICAgY29udGVudDogZGF0YS5jb250ZW50IHx8ICcnLFxuICAgICAgdGl0bGU6IGRhdGEudGl0bGUgfHwgdGhpcy5kYXRhTW9kZWwudGl0bGVcbiAgICB9XG4gIH1cblxuICBjb25maXJtKCkge1xuICAgIHRoaXMuX2Nsb3NlRXZlbnQkLm5leHQoeyByZWFzb246ICdjb25maXJtJyB9KVxuICB9XG5cbiAgY2FuY2VsKCkge1xuICAgIHRoaXMuX2Nsb3NlRXZlbnQkLm5leHQoeyByZWFzb246ICdkaXNtaXNzJyB9KVxuICB9XG5cbiAgZ2V0Q2xvc2VFdmVudCgpIHtcbiAgICByZXR1cm4gdGhpcy5fY2xvc2VFdmVudCQuYXNPYnNlcnZhYmxlKClcbiAgfVxufVxuIl19
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoibW9kYWwtZGF0YS5zZXJ2aWNlLmpzIiwic291cmNlUm9vdCI6Im5nOi8vQGJveG1lZ2xvYmFsL29taXNlbGwtdWktbGliL29taXNlbGwtY29uZmlybS1tb2RhbC8iLCJzb3VyY2VzIjpbIm1vZGFsLWRhdGEuc2VydmljZS50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiOzs7OztBQUFBLE9BQU8sRUFBRSxVQUFVLEVBQUUsUUFBUSxFQUFFLE1BQU0sZUFBZSxDQUFDO0FBRXJELE9BQU8sRUFBRSxPQUFPLEVBQUUsTUFBTSxNQUFNLENBQUE7QUFDOUIsT0FBTyxFQUFFLGdCQUFnQixFQUFFLE1BQU0scUJBQXFCLENBQUM7OztBQUd2RCxNQUFNLE9BQU8sZ0JBQWdCOzs7O0lBVzNCLFlBQ3NCLGlCQUFtQztRQUFuQyxzQkFBaUIsR0FBakIsaUJBQWlCLENBQWtCO1FBWGpELGlCQUFZLEdBQW1DLElBQUksT0FBTyxFQUF5QixDQUFBO1FBRTNGLGNBQVMsR0FBc0I7WUFDN0IsUUFBUSxFQUFFLElBQUk7WUFDZCxVQUFVLEVBQUUsUUFBUTtZQUNwQixXQUFXLEVBQUUsU0FBUztZQUN0QixVQUFVLEVBQUUsRUFBRTtZQUNkLEtBQUssRUFBRSxFQUFFO1NBQ1YsQ0FBQTtJQUlHLENBQUM7Ozs7O0lBRUwsWUFBWSxDQUFDLElBQXVCO1FBQ2xDLElBQUksQ0FBQyxTQUFTLEdBQUc7WUFDZixRQUFRLEVBQUUsSUFBSSxDQUFDLGNBQWMsQ0FBQyxVQUFVLENBQUMsQ0FBQyxDQUFDLENBQUMsSUFBSSxDQUFDLFFBQVEsQ0FBQyxDQUFDLENBQUMsSUFBSSxDQUFDLFNBQVMsQ0FBQyxRQUFRO1lBQ25GLFdBQVcsRUFBRSxJQUFJLENBQUMsV0FBVyxJQUFJLElBQUksQ0FBQyxTQUFTLENBQUMsV0FBVztZQUMzRCxVQUFVLEVBQUUsSUFBSSxDQUFDLFVBQVUsSUFBSSxJQUFJLENBQUMsU0FBUyxDQUFDLFVBQVU7WUFDeEQsVUFBVSxFQUFFLElBQUksQ0FBQyxVQUFVLElBQUksSUFBSSxDQUFDLFNBQVMsQ0FBQyxVQUFVO1lBQ3hELE9BQU8sRUFBRSxJQUFJLENBQUMsT0FBTyxJQUFJLEVBQUU7WUFDM0IsS0FBSyxFQUFFLElBQUksQ0FBQyxLQUFLLElBQUksSUFBSSxDQUFDLFNBQVMsQ0FBQyxLQUFLO1NBQzFDLENBQUE7UUFFRCxJQUFJLElBQUksQ0FBQyxpQkFBaUIsRUFBRTtZQUMxQixJQUFJLE9BQU8sSUFBSSxDQUFDLFdBQVcsSUFBSSxRQUFRLEVBQUU7Z0JBQ3ZDLElBQUksQ0FBQyxXQUFXLEdBQUcsSUFBSSxDQUFDLGlCQUFpQixDQUFDLE9BQU8sQ0FBQyxJQUFJLENBQUMsV0FBVyxDQUFDLENBQUE7YUFDcEU7WUFFRCxJQUFJLE9BQU8sSUFBSSxDQUFDLFVBQVUsSUFBSSxRQUFRLEVBQUU7Z0JBQ3RDLElBQUksQ0FBQyxVQUFVLEdBQUcsSUFBSSxDQUFDLGlCQUFpQixDQUFDLE9BQU8sQ0FBQyxJQUFJLENBQUMsVUFBVSxDQUFDLENBQUE7YUFDbEU7WUFFRCxJQUFJLE9BQU8sSUFBSSxDQUFDLEtBQUssSUFBSSxRQUFRLEVBQUU7Z0JBQ2pDLElBQUksQ0FBQyxLQUFLLEdBQUcsSUFBSSxDQUFDLGlCQUFpQixDQUFDLE9BQU8sQ0FBQyxJQUFJLENBQUMsS0FBSyxDQUFDLENBQUE7YUFDeEQ7WUFFRCxJQUFJLE9BQU8sSUFBSSxDQUFDLE9BQU8sSUFBSSxRQUFRLEVBQUU7Z0JBQ25DLElBQUksQ0FBQyxPQUFPLEdBQUcsSUFBSSxDQUFDLGlCQUFpQixDQUFDLE9BQU8sQ0FBQyxJQUFJLENBQUMsT0FBTyxDQUFDLENBQUE7YUFDNUQ7U0FDRjtJQUNILENBQUM7Ozs7SUFFRCxPQUFPO1FBQ0wsSUFBSSxDQUFDLFlBQVksQ0FBQyxJQUFJLENBQUMsRUFBRSxNQUFNLEVBQUUsU0FBUyxFQUFFLENBQUMsQ0FBQTtJQUMvQyxDQUFDOzs7O0lBRUQsTUFBTTtRQUNKLElBQUksQ0FBQyxZQUFZLENBQUMsSUFBSSxDQUFDLEVBQUUsTUFBTSxFQUFFLFNBQVMsRUFBRSxDQUFDLENBQUE7SUFDL0MsQ0FBQzs7OztJQUVELGFBQWE7UUFDWCxPQUFPLElBQUksQ0FBQyxZQUFZLENBQUMsWUFBWSxFQUFFLENBQUE7SUFDekMsQ0FBQzs7O1lBdkRGLFVBQVUsU0FBQyxFQUFFLFVBQVUsRUFBRSxNQUFNLEVBQUU7Ozs7WUFGekIsZ0JBQWdCLHVCQWVwQixRQUFROzs7Ozs7OztJQVhYLHdDQUEyRjs7SUFFM0YscUNBTUM7Ozs7O0lBR0MsNkNBQXVEIiwic291cmNlc0NvbnRlbnQiOlsiaW1wb3J0IHsgSW5qZWN0YWJsZSwgT3B0aW9uYWwgfSBmcm9tICdAYW5ndWxhci9jb3JlJztcbmltcG9ydCB7IENsb3NlTW9kYWxSZWFzb25FdmVudCwgQ29uZmlybU1vZGFsTW9kZWwgfSBmcm9tICcuL2NvbmZpcm0tbW9kYWwubW9kZWwnXG5pbXBvcnQgeyBTdWJqZWN0IH0gZnJvbSAncnhqcydcbmltcG9ydCB7IFRyYW5zbGF0ZVNlcnZpY2UgfSBmcm9tICdAbmd4LXRyYW5zbGF0ZS9jb3JlJztcblxuQEluamVjdGFibGUoeyBwcm92aWRlZEluOiAncm9vdCcgfSlcbmV4cG9ydCBjbGFzcyBNb2RhbERhdGFTZXJ2aWNlIHtcbiAgcHJpdmF0ZSBfY2xvc2VFdmVudCQ6IFN1YmplY3Q8Q2xvc2VNb2RhbFJlYXNvbkV2ZW50PiA9IG5ldyBTdWJqZWN0PENsb3NlTW9kYWxSZWFzb25FdmVudD4oKVxuXG4gIGRhdGFNb2RlbDogQ29uZmlybU1vZGFsTW9kZWwgPSB7XG4gICAgaXNEYW5nZXI6IHRydWUsXG4gICAgdGV4dENhbmNlbDogJ0NhbmNlbCcsXG4gICAgdGV4dENvbmZpcm06ICdDb25maXJtJyxcbiAgICB1cmxDb25maXJtOiAnJyxcbiAgICB0aXRsZTogJydcbiAgfVxuXG4gIGNvbnN0cnVjdG9yKFxuICAgIEBPcHRpb25hbCgpIHByaXZhdGUgX3RyYW5zbGF0ZVNlcnZpY2U6IFRyYW5zbGF0ZVNlcnZpY2VcbiAgKSB7IH1cblxuICBzZXRNb2RhbERhdGEoZGF0YTogQ29uZmlybU1vZGFsTW9kZWwpIHtcbiAgICB0aGlzLmRhdGFNb2RlbCA9IHtcbiAgICAgIGlzRGFuZ2VyOiBkYXRhLmhhc093blByb3BlcnR5KCdpc0RhbmdlcicpID8gZGF0YS5pc0RhbmdlciA6IHRoaXMuZGF0YU1vZGVsLmlzRGFuZ2VyLFxuICAgICAgdGV4dENvbmZpcm06IGRhdGEudGV4dENvbmZpcm0gfHwgdGhpcy5kYXRhTW9kZWwudGV4dENvbmZpcm0sXG4gICAgICB0ZXh0Q2FuY2VsOiBkYXRhLnRleHRDYW5jZWwgfHwgdGhpcy5kYXRhTW9kZWwudGV4dENhbmNlbCxcbiAgICAgIHVybENvbmZpcm06IGRhdGEudXJsQ29uZmlybSB8fCB0aGlzLmRhdGFNb2RlbC51cmxDb25maXJtLFxuICAgICAgY29udGVudDogZGF0YS5jb250ZW50IHx8ICcnLFxuICAgICAgdGl0bGU6IGRhdGEudGl0bGUgfHwgdGhpcy5kYXRhTW9kZWwudGl0bGVcbiAgICB9XG5cbiAgICBpZiAodGhpcy5fdHJhbnNsYXRlU2VydmljZSkge1xuICAgICAgaWYgKHR5cGVvZiBkYXRhLnRleHRDb25maXJtID09ICdzdHJpbmcnKSB7XG4gICAgICAgIGRhdGEudGV4dENvbmZpcm0gPSB0aGlzLl90cmFuc2xhdGVTZXJ2aWNlLmluc3RhbnQoZGF0YS50ZXh0Q29uZmlybSlcbiAgICAgIH1cblxuICAgICAgaWYgKHR5cGVvZiBkYXRhLnRleHRDYW5jZWwgPT0gJ3N0cmluZycpIHtcbiAgICAgICAgZGF0YS50ZXh0Q2FuY2VsID0gdGhpcy5fdHJhbnNsYXRlU2VydmljZS5pbnN0YW50KGRhdGEudGV4dENhbmNlbClcbiAgICAgIH1cblxuICAgICAgaWYgKHR5cGVvZiBkYXRhLnRpdGxlID09ICdzdHJpbmcnKSB7XG4gICAgICAgIGRhdGEudGl0bGUgPSB0aGlzLl90cmFuc2xhdGVTZXJ2aWNlLmluc3RhbnQoZGF0YS50aXRsZSlcbiAgICAgIH1cblxuICAgICAgaWYgKHR5cGVvZiBkYXRhLmNvbnRlbnQgPT0gJ3N0cmluZycpIHtcbiAgICAgICAgZGF0YS5jb250ZW50ID0gdGhpcy5fdHJhbnNsYXRlU2VydmljZS5pbnN0YW50KGRhdGEuY29udGVudClcbiAgICAgIH1cbiAgICB9XG4gIH1cblxuICBjb25maXJtKCkge1xuICAgIHRoaXMuX2Nsb3NlRXZlbnQkLm5leHQoeyByZWFzb246ICdjb25maXJtJyB9KVxuICB9XG5cbiAgY2FuY2VsKCkge1xuICAgIHRoaXMuX2Nsb3NlRXZlbnQkLm5leHQoeyByZWFzb246ICdkaXNtaXNzJyB9KVxuICB9XG5cbiAgZ2V0Q2xvc2VFdmVudCgpIHtcbiAgICByZXR1cm4gdGhpcy5fY2xvc2VFdmVudCQuYXNPYnNlcnZhYmxlKClcbiAgfVxufVxuIl19

@@ -32,2 +32,10 @@ /**

function (data) {
this.dataModel = {
isDanger: data.hasOwnProperty('isDanger') ? data.isDanger : this.dataModel.isDanger,
textConfirm: data.textConfirm || this.dataModel.textConfirm,
textCancel: data.textCancel || this.dataModel.textCancel,
urlConfirm: data.urlConfirm || this.dataModel.urlConfirm,
content: data.content || '',
title: data.title || this.dataModel.title
};
if (this._translateService) {

@@ -47,10 +55,2 @@ if (typeof data.textConfirm == 'string') {

}
this.dataModel = {
isDanger: data.hasOwnProperty('isDanger') ? data.isDanger : this.dataModel.isDanger,
textConfirm: data.textConfirm || this.dataModel.textConfirm,
textCancel: data.textCancel || this.dataModel.textCancel,
urlConfirm: data.urlConfirm || this.dataModel.urlConfirm,
content: data.content || '',
title: data.title || this.dataModel.title
};
};

@@ -109,2 +109,2 @@ /**

}
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoibW9kYWwtZGF0YS5zZXJ2aWNlLmpzIiwic291cmNlUm9vdCI6Im5nOi8vQGJveG1lZ2xvYmFsL29taXNlbGwtdWktbGliL29taXNlbGwtY29uZmlybS1tb2RhbC8iLCJzb3VyY2VzIjpbIm1vZGFsLWRhdGEuc2VydmljZS50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiOzs7OztBQUFBLE9BQU8sRUFBRSxVQUFVLEVBQUUsUUFBUSxFQUFFLE1BQU0sZUFBZSxDQUFDO0FBRXJELE9BQU8sRUFBRSxPQUFPLEVBQUUsTUFBTSxNQUFNLENBQUE7QUFDOUIsT0FBTyxFQUFFLGdCQUFnQixFQUFFLE1BQU0scUJBQXFCLENBQUM7OztBQUV2RDtJQVlFLDBCQUNzQixpQkFBbUM7UUFBbkMsc0JBQWlCLEdBQWpCLGlCQUFpQixDQUFrQjtRQVhqRCxpQkFBWSxHQUFtQyxJQUFJLE9BQU8sRUFBeUIsQ0FBQTtRQUUzRixjQUFTLEdBQXNCO1lBQzdCLFFBQVEsRUFBRSxJQUFJO1lBQ2QsVUFBVSxFQUFFLFFBQVE7WUFDcEIsV0FBVyxFQUFFLFNBQVM7WUFDdEIsVUFBVSxFQUFFLEVBQUU7WUFDZCxLQUFLLEVBQUUsRUFBRTtTQUNWLENBQUE7SUFJRyxDQUFDOzs7OztJQUVMLHVDQUFZOzs7O0lBQVosVUFBYSxJQUF1QjtRQUNsQyxJQUFJLElBQUksQ0FBQyxpQkFBaUIsRUFBRTtZQUMxQixJQUFJLE9BQU8sSUFBSSxDQUFDLFdBQVcsSUFBSSxRQUFRLEVBQUU7Z0JBQ3ZDLElBQUksQ0FBQyxXQUFXLEdBQUcsSUFBSSxDQUFDLGlCQUFpQixDQUFDLE9BQU8sQ0FBQyxJQUFJLENBQUMsV0FBVyxDQUFDLENBQUE7YUFDcEU7WUFFRCxJQUFJLE9BQU8sSUFBSSxDQUFDLFVBQVUsSUFBSSxRQUFRLEVBQUU7Z0JBQ3RDLElBQUksQ0FBQyxVQUFVLEdBQUcsSUFBSSxDQUFDLGlCQUFpQixDQUFDLE9BQU8sQ0FBQyxJQUFJLENBQUMsVUFBVSxDQUFDLENBQUE7YUFDbEU7WUFFRCxJQUFJLE9BQU8sSUFBSSxDQUFDLEtBQUssSUFBSSxRQUFRLEVBQUU7Z0JBQ2pDLElBQUksQ0FBQyxLQUFLLEdBQUcsSUFBSSxDQUFDLGlCQUFpQixDQUFDLE9BQU8sQ0FBQyxJQUFJLENBQUMsS0FBSyxDQUFDLENBQUE7YUFDeEQ7WUFFRCxJQUFJLE9BQU8sSUFBSSxDQUFDLE9BQU8sSUFBSSxRQUFRLEVBQUU7Z0JBQ25DLElBQUksQ0FBQyxPQUFPLEdBQUcsSUFBSSxDQUFDLGlCQUFpQixDQUFDLE9BQU8sQ0FBQyxJQUFJLENBQUMsT0FBTyxDQUFDLENBQUE7YUFDNUQ7U0FDRjtRQUVELElBQUksQ0FBQyxTQUFTLEdBQUc7WUFDZixRQUFRLEVBQUUsSUFBSSxDQUFDLGNBQWMsQ0FBQyxVQUFVLENBQUMsQ0FBQyxDQUFDLENBQUMsSUFBSSxDQUFDLFFBQVEsQ0FBQyxDQUFDLENBQUMsSUFBSSxDQUFDLFNBQVMsQ0FBQyxRQUFRO1lBQ25GLFdBQVcsRUFBRSxJQUFJLENBQUMsV0FBVyxJQUFJLElBQUksQ0FBQyxTQUFTLENBQUMsV0FBVztZQUMzRCxVQUFVLEVBQUUsSUFBSSxDQUFDLFVBQVUsSUFBSSxJQUFJLENBQUMsU0FBUyxDQUFDLFVBQVU7WUFDeEQsVUFBVSxFQUFFLElBQUksQ0FBQyxVQUFVLElBQUksSUFBSSxDQUFDLFNBQVMsQ0FBQyxVQUFVO1lBQ3hELE9BQU8sRUFBRSxJQUFJLENBQUMsT0FBTyxJQUFJLEVBQUU7WUFDM0IsS0FBSyxFQUFFLElBQUksQ0FBQyxLQUFLLElBQUksSUFBSSxDQUFDLFNBQVMsQ0FBQyxLQUFLO1NBQzFDLENBQUE7SUFDSCxDQUFDOzs7O0lBRUQsa0NBQU87OztJQUFQO1FBQ0UsSUFBSSxDQUFDLFlBQVksQ0FBQyxJQUFJLENBQUMsRUFBRSxNQUFNLEVBQUUsU0FBUyxFQUFFLENBQUMsQ0FBQTtJQUMvQyxDQUFDOzs7O0lBRUQsaUNBQU07OztJQUFOO1FBQ0UsSUFBSSxDQUFDLFlBQVksQ0FBQyxJQUFJLENBQUMsRUFBRSxNQUFNLEVBQUUsU0FBUyxFQUFFLENBQUMsQ0FBQTtJQUMvQyxDQUFDOzs7O0lBRUQsd0NBQWE7OztJQUFiO1FBQ0UsT0FBTyxJQUFJLENBQUMsWUFBWSxDQUFDLFlBQVksRUFBRSxDQUFBO0lBQ3pDLENBQUM7O2dCQXZERixVQUFVLFNBQUMsRUFBRSxVQUFVLEVBQUUsTUFBTSxFQUFFOzs7O2dCQUZ6QixnQkFBZ0IsdUJBZXBCLFFBQVE7OzsyQkFsQmI7Q0E2REMsQUF4REQsSUF3REM7U0F2RFksZ0JBQWdCOzs7Ozs7SUFDM0Isd0NBQTJGOztJQUUzRixxQ0FNQzs7Ozs7SUFHQyw2Q0FBdUQiLCJzb3VyY2VzQ29udGVudCI6WyJpbXBvcnQgeyBJbmplY3RhYmxlLCBPcHRpb25hbCB9IGZyb20gJ0Bhbmd1bGFyL2NvcmUnO1xuaW1wb3J0IHsgQ2xvc2VNb2RhbFJlYXNvbkV2ZW50LCBDb25maXJtTW9kYWxNb2RlbCB9IGZyb20gJy4vY29uZmlybS1tb2RhbC5tb2RlbCdcbmltcG9ydCB7IFN1YmplY3QgfSBmcm9tICdyeGpzJ1xuaW1wb3J0IHsgVHJhbnNsYXRlU2VydmljZSB9IGZyb20gJ0BuZ3gtdHJhbnNsYXRlL2NvcmUnO1xuXG5ASW5qZWN0YWJsZSh7IHByb3ZpZGVkSW46ICdyb290JyB9KVxuZXhwb3J0IGNsYXNzIE1vZGFsRGF0YVNlcnZpY2Uge1xuICBwcml2YXRlIF9jbG9zZUV2ZW50JDogU3ViamVjdDxDbG9zZU1vZGFsUmVhc29uRXZlbnQ+ID0gbmV3IFN1YmplY3Q8Q2xvc2VNb2RhbFJlYXNvbkV2ZW50PigpXG5cbiAgZGF0YU1vZGVsOiBDb25maXJtTW9kYWxNb2RlbCA9IHtcbiAgICBpc0RhbmdlcjogdHJ1ZSxcbiAgICB0ZXh0Q2FuY2VsOiAnQ2FuY2VsJyxcbiAgICB0ZXh0Q29uZmlybTogJ0NvbmZpcm0nLFxuICAgIHVybENvbmZpcm06ICcnLFxuICAgIHRpdGxlOiAnJ1xuICB9XG5cbiAgY29uc3RydWN0b3IoXG4gICAgQE9wdGlvbmFsKCkgcHJpdmF0ZSBfdHJhbnNsYXRlU2VydmljZTogVHJhbnNsYXRlU2VydmljZVxuICApIHsgfVxuXG4gIHNldE1vZGFsRGF0YShkYXRhOiBDb25maXJtTW9kYWxNb2RlbCkge1xuICAgIGlmICh0aGlzLl90cmFuc2xhdGVTZXJ2aWNlKSB7XG4gICAgICBpZiAodHlwZW9mIGRhdGEudGV4dENvbmZpcm0gPT0gJ3N0cmluZycpIHtcbiAgICAgICAgZGF0YS50ZXh0Q29uZmlybSA9IHRoaXMuX3RyYW5zbGF0ZVNlcnZpY2UuaW5zdGFudChkYXRhLnRleHRDb25maXJtKVxuICAgICAgfVxuXG4gICAgICBpZiAodHlwZW9mIGRhdGEudGV4dENhbmNlbCA9PSAnc3RyaW5nJykge1xuICAgICAgICBkYXRhLnRleHRDYW5jZWwgPSB0aGlzLl90cmFuc2xhdGVTZXJ2aWNlLmluc3RhbnQoZGF0YS50ZXh0Q2FuY2VsKVxuICAgICAgfVxuXG4gICAgICBpZiAodHlwZW9mIGRhdGEudGl0bGUgPT0gJ3N0cmluZycpIHtcbiAgICAgICAgZGF0YS50aXRsZSA9IHRoaXMuX3RyYW5zbGF0ZVNlcnZpY2UuaW5zdGFudChkYXRhLnRpdGxlKVxuICAgICAgfVxuXG4gICAgICBpZiAodHlwZW9mIGRhdGEuY29udGVudCA9PSAnc3RyaW5nJykge1xuICAgICAgICBkYXRhLmNvbnRlbnQgPSB0aGlzLl90cmFuc2xhdGVTZXJ2aWNlLmluc3RhbnQoZGF0YS5jb250ZW50KVxuICAgICAgfVxuICAgIH1cblxuICAgIHRoaXMuZGF0YU1vZGVsID0ge1xuICAgICAgaXNEYW5nZXI6IGRhdGEuaGFzT3duUHJvcGVydHkoJ2lzRGFuZ2VyJykgPyBkYXRhLmlzRGFuZ2VyIDogdGhpcy5kYXRhTW9kZWwuaXNEYW5nZXIsXG4gICAgICB0ZXh0Q29uZmlybTogZGF0YS50ZXh0Q29uZmlybSB8fCB0aGlzLmRhdGFNb2RlbC50ZXh0Q29uZmlybSxcbiAgICAgIHRleHRDYW5jZWw6IGRhdGEudGV4dENhbmNlbCB8fCB0aGlzLmRhdGFNb2RlbC50ZXh0Q2FuY2VsLFxuICAgICAgdXJsQ29uZmlybTogZGF0YS51cmxDb25maXJtIHx8IHRoaXMuZGF0YU1vZGVsLnVybENvbmZpcm0sXG4gICAgICBjb250ZW50OiBkYXRhLmNvbnRlbnQgfHwgJycsXG4gICAgICB0aXRsZTogZGF0YS50aXRsZSB8fCB0aGlzLmRhdGFNb2RlbC50aXRsZVxuICAgIH1cbiAgfVxuXG4gIGNvbmZpcm0oKSB7XG4gICAgdGhpcy5fY2xvc2VFdmVudCQubmV4dCh7IHJlYXNvbjogJ2NvbmZpcm0nIH0pXG4gIH1cblxuICBjYW5jZWwoKSB7XG4gICAgdGhpcy5fY2xvc2VFdmVudCQubmV4dCh7IHJlYXNvbjogJ2Rpc21pc3MnIH0pXG4gIH1cblxuICBnZXRDbG9zZUV2ZW50KCkge1xuICAgIHJldHVybiB0aGlzLl9jbG9zZUV2ZW50JC5hc09ic2VydmFibGUoKVxuICB9XG59XG4iXX0=
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoibW9kYWwtZGF0YS5zZXJ2aWNlLmpzIiwic291cmNlUm9vdCI6Im5nOi8vQGJveG1lZ2xvYmFsL29taXNlbGwtdWktbGliL29taXNlbGwtY29uZmlybS1tb2RhbC8iLCJzb3VyY2VzIjpbIm1vZGFsLWRhdGEuc2VydmljZS50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiOzs7OztBQUFBLE9BQU8sRUFBRSxVQUFVLEVBQUUsUUFBUSxFQUFFLE1BQU0sZUFBZSxDQUFDO0FBRXJELE9BQU8sRUFBRSxPQUFPLEVBQUUsTUFBTSxNQUFNLENBQUE7QUFDOUIsT0FBTyxFQUFFLGdCQUFnQixFQUFFLE1BQU0scUJBQXFCLENBQUM7OztBQUV2RDtJQVlFLDBCQUNzQixpQkFBbUM7UUFBbkMsc0JBQWlCLEdBQWpCLGlCQUFpQixDQUFrQjtRQVhqRCxpQkFBWSxHQUFtQyxJQUFJLE9BQU8sRUFBeUIsQ0FBQTtRQUUzRixjQUFTLEdBQXNCO1lBQzdCLFFBQVEsRUFBRSxJQUFJO1lBQ2QsVUFBVSxFQUFFLFFBQVE7WUFDcEIsV0FBVyxFQUFFLFNBQVM7WUFDdEIsVUFBVSxFQUFFLEVBQUU7WUFDZCxLQUFLLEVBQUUsRUFBRTtTQUNWLENBQUE7SUFJRyxDQUFDOzs7OztJQUVMLHVDQUFZOzs7O0lBQVosVUFBYSxJQUF1QjtRQUNsQyxJQUFJLENBQUMsU0FBUyxHQUFHO1lBQ2YsUUFBUSxFQUFFLElBQUksQ0FBQyxjQUFjLENBQUMsVUFBVSxDQUFDLENBQUMsQ0FBQyxDQUFDLElBQUksQ0FBQyxRQUFRLENBQUMsQ0FBQyxDQUFDLElBQUksQ0FBQyxTQUFTLENBQUMsUUFBUTtZQUNuRixXQUFXLEVBQUUsSUFBSSxDQUFDLFdBQVcsSUFBSSxJQUFJLENBQUMsU0FBUyxDQUFDLFdBQVc7WUFDM0QsVUFBVSxFQUFFLElBQUksQ0FBQyxVQUFVLElBQUksSUFBSSxDQUFDLFNBQVMsQ0FBQyxVQUFVO1lBQ3hELFVBQVUsRUFBRSxJQUFJLENBQUMsVUFBVSxJQUFJLElBQUksQ0FBQyxTQUFTLENBQUMsVUFBVTtZQUN4RCxPQUFPLEVBQUUsSUFBSSxDQUFDLE9BQU8sSUFBSSxFQUFFO1lBQzNCLEtBQUssRUFBRSxJQUFJLENBQUMsS0FBSyxJQUFJLElBQUksQ0FBQyxTQUFTLENBQUMsS0FBSztTQUMxQyxDQUFBO1FBRUQsSUFBSSxJQUFJLENBQUMsaUJBQWlCLEVBQUU7WUFDMUIsSUFBSSxPQUFPLElBQUksQ0FBQyxXQUFXLElBQUksUUFBUSxFQUFFO2dCQUN2QyxJQUFJLENBQUMsV0FBVyxHQUFHLElBQUksQ0FBQyxpQkFBaUIsQ0FBQyxPQUFPLENBQUMsSUFBSSxDQUFDLFdBQVcsQ0FBQyxDQUFBO2FBQ3BFO1lBRUQsSUFBSSxPQUFPLElBQUksQ0FBQyxVQUFVLElBQUksUUFBUSxFQUFFO2dCQUN0QyxJQUFJLENBQUMsVUFBVSxHQUFHLElBQUksQ0FBQyxpQkFBaUIsQ0FBQyxPQUFPLENBQUMsSUFBSSxDQUFDLFVBQVUsQ0FBQyxDQUFBO2FBQ2xFO1lBRUQsSUFBSSxPQUFPLElBQUksQ0FBQyxLQUFLLElBQUksUUFBUSxFQUFFO2dCQUNqQyxJQUFJLENBQUMsS0FBSyxHQUFHLElBQUksQ0FBQyxpQkFBaUIsQ0FBQyxPQUFPLENBQUMsSUFBSSxDQUFDLEtBQUssQ0FBQyxDQUFBO2FBQ3hEO1lBRUQsSUFBSSxPQUFPLElBQUksQ0FBQyxPQUFPLElBQUksUUFBUSxFQUFFO2dCQUNuQyxJQUFJLENBQUMsT0FBTyxHQUFHLElBQUksQ0FBQyxpQkFBaUIsQ0FBQyxPQUFPLENBQUMsSUFBSSxDQUFDLE9BQU8sQ0FBQyxDQUFBO2FBQzVEO1NBQ0Y7SUFDSCxDQUFDOzs7O0lBRUQsa0NBQU87OztJQUFQO1FBQ0UsSUFBSSxDQUFDLFlBQVksQ0FBQyxJQUFJLENBQUMsRUFBRSxNQUFNLEVBQUUsU0FBUyxFQUFFLENBQUMsQ0FBQTtJQUMvQyxDQUFDOzs7O0lBRUQsaUNBQU07OztJQUFOO1FBQ0UsSUFBSSxDQUFDLFlBQVksQ0FBQyxJQUFJLENBQUMsRUFBRSxNQUFNLEVBQUUsU0FBUyxFQUFFLENBQUMsQ0FBQTtJQUMvQyxDQUFDOzs7O0lBRUQsd0NBQWE7OztJQUFiO1FBQ0UsT0FBTyxJQUFJLENBQUMsWUFBWSxDQUFDLFlBQVksRUFBRSxDQUFBO0lBQ3pDLENBQUM7O2dCQXZERixVQUFVLFNBQUMsRUFBRSxVQUFVLEVBQUUsTUFBTSxFQUFFOzs7O2dCQUZ6QixnQkFBZ0IsdUJBZXBCLFFBQVE7OzsyQkFsQmI7Q0E2REMsQUF4REQsSUF3REM7U0F2RFksZ0JBQWdCOzs7Ozs7SUFDM0Isd0NBQTJGOztJQUUzRixxQ0FNQzs7Ozs7SUFHQyw2Q0FBdUQiLCJzb3VyY2VzQ29udGVudCI6WyJpbXBvcnQgeyBJbmplY3RhYmxlLCBPcHRpb25hbCB9IGZyb20gJ0Bhbmd1bGFyL2NvcmUnO1xuaW1wb3J0IHsgQ2xvc2VNb2RhbFJlYXNvbkV2ZW50LCBDb25maXJtTW9kYWxNb2RlbCB9IGZyb20gJy4vY29uZmlybS1tb2RhbC5tb2RlbCdcbmltcG9ydCB7IFN1YmplY3QgfSBmcm9tICdyeGpzJ1xuaW1wb3J0IHsgVHJhbnNsYXRlU2VydmljZSB9IGZyb20gJ0BuZ3gtdHJhbnNsYXRlL2NvcmUnO1xuXG5ASW5qZWN0YWJsZSh7IHByb3ZpZGVkSW46ICdyb290JyB9KVxuZXhwb3J0IGNsYXNzIE1vZGFsRGF0YVNlcnZpY2Uge1xuICBwcml2YXRlIF9jbG9zZUV2ZW50JDogU3ViamVjdDxDbG9zZU1vZGFsUmVhc29uRXZlbnQ+ID0gbmV3IFN1YmplY3Q8Q2xvc2VNb2RhbFJlYXNvbkV2ZW50PigpXG5cbiAgZGF0YU1vZGVsOiBDb25maXJtTW9kYWxNb2RlbCA9IHtcbiAgICBpc0RhbmdlcjogdHJ1ZSxcbiAgICB0ZXh0Q2FuY2VsOiAnQ2FuY2VsJyxcbiAgICB0ZXh0Q29uZmlybTogJ0NvbmZpcm0nLFxuICAgIHVybENvbmZpcm06ICcnLFxuICAgIHRpdGxlOiAnJ1xuICB9XG5cbiAgY29uc3RydWN0b3IoXG4gICAgQE9wdGlvbmFsKCkgcHJpdmF0ZSBfdHJhbnNsYXRlU2VydmljZTogVHJhbnNsYXRlU2VydmljZVxuICApIHsgfVxuXG4gIHNldE1vZGFsRGF0YShkYXRhOiBDb25maXJtTW9kYWxNb2RlbCkge1xuICAgIHRoaXMuZGF0YU1vZGVsID0ge1xuICAgICAgaXNEYW5nZXI6IGRhdGEuaGFzT3duUHJvcGVydHkoJ2lzRGFuZ2VyJykgPyBkYXRhLmlzRGFuZ2VyIDogdGhpcy5kYXRhTW9kZWwuaXNEYW5nZXIsXG4gICAgICB0ZXh0Q29uZmlybTogZGF0YS50ZXh0Q29uZmlybSB8fCB0aGlzLmRhdGFNb2RlbC50ZXh0Q29uZmlybSxcbiAgICAgIHRleHRDYW5jZWw6IGRhdGEudGV4dENhbmNlbCB8fCB0aGlzLmRhdGFNb2RlbC50ZXh0Q2FuY2VsLFxuICAgICAgdXJsQ29uZmlybTogZGF0YS51cmxDb25maXJtIHx8IHRoaXMuZGF0YU1vZGVsLnVybENvbmZpcm0sXG4gICAgICBjb250ZW50OiBkYXRhLmNvbnRlbnQgfHwgJycsXG4gICAgICB0aXRsZTogZGF0YS50aXRsZSB8fCB0aGlzLmRhdGFNb2RlbC50aXRsZVxuICAgIH1cblxuICAgIGlmICh0aGlzLl90cmFuc2xhdGVTZXJ2aWNlKSB7XG4gICAgICBpZiAodHlwZW9mIGRhdGEudGV4dENvbmZpcm0gPT0gJ3N0cmluZycpIHtcbiAgICAgICAgZGF0YS50ZXh0Q29uZmlybSA9IHRoaXMuX3RyYW5zbGF0ZVNlcnZpY2UuaW5zdGFudChkYXRhLnRleHRDb25maXJtKVxuICAgICAgfVxuXG4gICAgICBpZiAodHlwZW9mIGRhdGEudGV4dENhbmNlbCA9PSAnc3RyaW5nJykge1xuICAgICAgICBkYXRhLnRleHRDYW5jZWwgPSB0aGlzLl90cmFuc2xhdGVTZXJ2aWNlLmluc3RhbnQoZGF0YS50ZXh0Q2FuY2VsKVxuICAgICAgfVxuXG4gICAgICBpZiAodHlwZW9mIGRhdGEudGl0bGUgPT0gJ3N0cmluZycpIHtcbiAgICAgICAgZGF0YS50aXRsZSA9IHRoaXMuX3RyYW5zbGF0ZVNlcnZpY2UuaW5zdGFudChkYXRhLnRpdGxlKVxuICAgICAgfVxuXG4gICAgICBpZiAodHlwZW9mIGRhdGEuY29udGVudCA9PSAnc3RyaW5nJykge1xuICAgICAgICBkYXRhLmNvbnRlbnQgPSB0aGlzLl90cmFuc2xhdGVTZXJ2aWNlLmluc3RhbnQoZGF0YS5jb250ZW50KVxuICAgICAgfVxuICAgIH1cbiAgfVxuXG4gIGNvbmZpcm0oKSB7XG4gICAgdGhpcy5fY2xvc2VFdmVudCQubmV4dCh7IHJlYXNvbjogJ2NvbmZpcm0nIH0pXG4gIH1cblxuICBjYW5jZWwoKSB7XG4gICAgdGhpcy5fY2xvc2VFdmVudCQubmV4dCh7IHJlYXNvbjogJ2Rpc21pc3MnIH0pXG4gIH1cblxuICBnZXRDbG9zZUV2ZW50KCkge1xuICAgIHJldHVybiB0aGlzLl9jbG9zZUV2ZW50JC5hc09ic2VydmFibGUoKVxuICB9XG59XG4iXX0=

@@ -34,2 +34,10 @@ import { Injectable, Optional, ɵɵdefineInjectable, ɵɵinject, Component, ViewEncapsulation, Injector, NgModule } from '@angular/core';

setModalData(data) {
this.dataModel = {
isDanger: data.hasOwnProperty('isDanger') ? data.isDanger : this.dataModel.isDanger,
textConfirm: data.textConfirm || this.dataModel.textConfirm,
textCancel: data.textCancel || this.dataModel.textCancel,
urlConfirm: data.urlConfirm || this.dataModel.urlConfirm,
content: data.content || '',
title: data.title || this.dataModel.title
};
if (this._translateService) {

@@ -49,10 +57,2 @@ if (typeof data.textConfirm == 'string') {

}
this.dataModel = {
isDanger: data.hasOwnProperty('isDanger') ? data.isDanger : this.dataModel.isDanger,
textConfirm: data.textConfirm || this.dataModel.textConfirm,
textCancel: data.textCancel || this.dataModel.textCancel,
urlConfirm: data.urlConfirm || this.dataModel.urlConfirm,
content: data.content || '',
title: data.title || this.dataModel.title
};
}

@@ -59,0 +59,0 @@ /**

@@ -689,2 +689,10 @@ import { Injectable, Directive, TemplateRef, Component, ContentChild, Input, EventEmitter, ContentChildren, Output, NgModule, ViewEncapsulation, forwardRef, HostListener, InjectionToken, Inject, Optional, ɵɵdefineInjectable, ɵɵinject, Injector } from '@angular/core';

setModalData(data) {
this.dataModel = {
isDanger: data.hasOwnProperty('isDanger') ? data.isDanger : this.dataModel.isDanger,
textConfirm: data.textConfirm || this.dataModel.textConfirm,
textCancel: data.textCancel || this.dataModel.textCancel,
urlConfirm: data.urlConfirm || this.dataModel.urlConfirm,
content: data.content || '',
title: data.title || this.dataModel.title
};
if (this._translateService) {

@@ -704,10 +712,2 @@ if (typeof data.textConfirm == 'string') {

}
this.dataModel = {
isDanger: data.hasOwnProperty('isDanger') ? data.isDanger : this.dataModel.isDanger,
textConfirm: data.textConfirm || this.dataModel.textConfirm,
textCancel: data.textCancel || this.dataModel.textCancel,
urlConfirm: data.urlConfirm || this.dataModel.urlConfirm,
content: data.content || '',
title: data.title || this.dataModel.title
};
}

@@ -714,0 +714,0 @@ /**

@@ -36,2 +36,10 @@ import { Injectable, Optional, ɵɵdefineInjectable, ɵɵinject, Component, ViewEncapsulation, Injector, NgModule } from '@angular/core';

function (data) {
this.dataModel = {
isDanger: data.hasOwnProperty('isDanger') ? data.isDanger : this.dataModel.isDanger,
textConfirm: data.textConfirm || this.dataModel.textConfirm,
textCancel: data.textCancel || this.dataModel.textCancel,
urlConfirm: data.urlConfirm || this.dataModel.urlConfirm,
content: data.content || '',
title: data.title || this.dataModel.title
};
if (this._translateService) {

@@ -51,10 +59,2 @@ if (typeof data.textConfirm == 'string') {

}
this.dataModel = {
isDanger: data.hasOwnProperty('isDanger') ? data.isDanger : this.dataModel.isDanger,
textConfirm: data.textConfirm || this.dataModel.textConfirm,
textCancel: data.textCancel || this.dataModel.textCancel,
urlConfirm: data.urlConfirm || this.dataModel.urlConfirm,
content: data.content || '',
title: data.title || this.dataModel.title
};
};

@@ -61,0 +61,0 @@ /**

@@ -800,2 +800,10 @@ import { Injectable, Directive, TemplateRef, Component, ContentChild, Input, EventEmitter, ContentChildren, Output, NgModule, ViewEncapsulation, forwardRef, HostListener, InjectionToken, Inject, Optional, ɵɵdefineInjectable, ɵɵinject, Injector } from '@angular/core';

function (data) {
this.dataModel = {
isDanger: data.hasOwnProperty('isDanger') ? data.isDanger : this.dataModel.isDanger,
textConfirm: data.textConfirm || this.dataModel.textConfirm,
textCancel: data.textCancel || this.dataModel.textCancel,
urlConfirm: data.urlConfirm || this.dataModel.urlConfirm,
content: data.content || '',
title: data.title || this.dataModel.title
};
if (this._translateService) {

@@ -815,10 +823,2 @@ if (typeof data.textConfirm == 'string') {

}
this.dataModel = {
isDanger: data.hasOwnProperty('isDanger') ? data.isDanger : this.dataModel.isDanger,
textConfirm: data.textConfirm || this.dataModel.textConfirm,
textCancel: data.textCancel || this.dataModel.textCancel,
urlConfirm: data.urlConfirm || this.dataModel.urlConfirm,
content: data.content || '',
title: data.title || this.dataModel.title
};
};

@@ -825,0 +825,0 @@ /**

{
"name": "@boxmeglobal/omisell-ui-lib",
"version": "0.0.11",
"version": "0.0.12",
"author": {

@@ -5,0 +5,0 @@ "name": "Hung Cung"

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