{"version":3,"file":"costingDirective.js","sourceRoot":"","sources":["../../../../src/modules/directives/costing/costingDirective.ts"],"names":[],"mappings":"AAAA,IAAO,UAAU,CAoChB;AApCD,WAAO,UAAU;IACb,IAAc,OAAO,CAkCpB;IAlCD,WAAc,OAAO;QAIjB;YAcI,0BAAmB,EAAgB;gBAAhB,OAAE,GAAF,EAAE,CAAc;gBAbnC,gBAAW,GAAG,qEAAqE,CAAC;gBACpF,UAAK,GAAG;oBACJ,QAAQ,EAAE,GAAG;oBACb,aAAa,EAAE,GAAG;oBAClB,OAAO,EAAE,GAAG;oBACZ,eAAe,EAAE,GAAG;oBACpB,MAAM,EAAE,GAAG;oBACX,KAAK,EAAE,GAAG;oBACV,UAAU,EAAE,IAAI;iBACnB,CAAC;gBACF,eAAU,GAAG,aAAa,CAAC;gBAC3B,iBAAY,GAAG,aAAa,CAAC;gBAK7B,SAAI,GAAG,UAAC,MAAiB,EAAE,QAA6B;gBAExD,CAAC,CAAA;YAJD,CAAC;YAMM,wBAAO,GAAd;gBACI,IAAM,SAAS,GAAG,UAAC,EAAE,IAAK,OAAA,IAAI,gBAAgB,CAAC,EAAE,CAAC,EAAxB,CAAwB,CAAC;gBACnD,SAAS,CAAC,OAAO,GAAG,CAAC,IAAI,CAAC,CAAC;gBAE3B,OAAO,SAAS,CAAC;YACrB,CAAC;YACL,uBAAC;QAAD,CAAC,AA3BD,IA2BC;QA3BY,wBAAgB,mBA2B5B,CAAA;QAED,OAAO,CAAC,MAAM,CAAC,KAAK,CAAC,CAAC,SAAS,CAAC,YAAY,EAAE,gBAAgB,CAAC,OAAO,EAAE,CAAC,CAAC;IAC9E,CAAC,EAlCa,OAAO,GAAP,kBAAO,KAAP,kBAAO,QAkCpB;AACL,CAAC,EApCM,UAAU,KAAV,UAAU,QAoChB","sourcesContent":["module directives {\r\n export module costing {\r\n interface ICostingDirectiveScope extends ng.IScope {\r\n }\r\n\r\n export class costingDirective implements ng.IDirective {\r\n templateUrl = 'templates/modules/applicationmain/costing/costingDirectiveView.html';\r\n scope = {\r\n entityId: \"=\",\r\n costModelType: \"=\",\r\n ngModel: \"=\",\r\n loadViewDetails: \"&\",\r\n recost: \"&\",\r\n disId: \"=\",\r\n ngDisabled: \"=?\"\r\n };\r\n controller = \"costingCtrl\";\r\n controllerAs = \"costingCtrl\";\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 costingDirective($q);\r\n directive.$inject = ['$q'];\r\n\r\n return directive;\r\n }\r\n }\r\n\r\n angular.module(\"app\").directive(\"gtsCosting\", costingDirective.factory());\r\n }\r\n}"]}