{"version":3,"file":"accountPaymentDirective.js","sourceRoot":"","sources":["../../../../src/modules/directives/customs/accountPaymentDirective.ts"],"names":[],"mappings":"AAAA,IAAO,UAAU,CAgChB;AAhCD,WAAO,UAAU;IACb,IAAc,OAAO,CA8BpB;IA9BD,WAAc,OAAO;QAIjB;YAUI,iCAAmB,EAAgB;gBAAhB,OAAE,GAAF,EAAE,CAAc;gBATnC,gBAAW,GAAG,mEAAmE,CAAC;gBAClF,UAAK,GAAG;oBACJ,cAAc,EAAE,GAAG;oBACnB,gBAAgB,EAAE,GAAG;oBACrB,KAAK,EAAE,GAAG;iBACb,CAAC;gBACF,eAAU,GAAG,oBAAoB,CAAC;gBAClC,iBAAY,GAAG,oBAAoB,CAAC;gBAKpC,SAAI,GAAG,UAAC,MAAiB,EAAE,QAA6B;gBAExD,CAAC,CAAA;YAJD,CAAC;YAMM,+BAAO,GAAd;gBACI,IAAM,SAAS,GAAG,UAAC,EAAE,IAAK,OAAA,IAAI,uBAAuB,CAAC,EAAE,CAAC,EAA/B,CAA+B,CAAC;gBAC1D,SAAS,CAAC,OAAO,GAAG,CAAC,IAAI,CAAC,CAAC;gBAE3B,OAAO,SAAS,CAAC;YACrB,CAAC;YACL,8BAAC;QAAD,CAAC,AAvBD,IAuBC;QAvBY,+BAAuB,0BAuBnC,CAAA;QAED,OAAO,CAAC,MAAM,CAAC,KAAK,CAAC,CAAC,SAAS,CAAC,mBAAmB,EAAE,uBAAuB,CAAC,OAAO,EAAE,CAAC,CAAC;IAC5F,CAAC,EA9Ba,OAAO,GAAP,kBAAO,KAAP,kBAAO,QA8BpB;AACL,CAAC,EAhCM,UAAU,KAAV,UAAU,QAgChB","sourcesContent":["module directives {\r\n export module costing {\r\n interface IAccountPaymentDirectiveScope extends ng.IScope {\r\n }\r\n\r\n export class accountPaymentDirective implements ng.IDirective {\r\n templateUrl = 'templates/modules/applicationmain/customs/accountPaymentView.html';\r\n scope = {\r\n customsPartyId: \"=\",\r\n accountPaymentId: \"=\",\r\n close: \"&\",\r\n };\r\n controller = \"accountPaymentCtrl\";\r\n controllerAs = \"accountPaymentCtrl\";\r\n\r\n constructor(public $q: ng.IQService) {\r\n }\r\n\r\n link = ($scope: ng.IScope, $element: ng.IAugmentedJQuery) => {\r\n\r\n }\r\n\r\n static factory(): ng.IDirectiveFactory {\r\n const directive = ($q) => new accountPaymentDirective($q);\r\n directive.$inject = ['$q'];\r\n\r\n return directive;\r\n }\r\n }\r\n\r\n angular.module(\"app\").directive(\"gtsAccountPayment\", accountPaymentDirective.factory());\r\n }\r\n}"]}