{"version":3,"sources":["webpack:///./src/components/shared/providers/TerminationConfirmationModal.vue?4735","webpack:///./src/components/shared/providers/TerminationConfirmationModal.vue?e3f7","webpack:///src/components/shared/providers/TerminationConfirmationModal.vue","webpack:///./src/components/shared/providers/TerminationConfirmationModal.vue?4322","webpack:///./src/components/shared/providers/TerminationConfirmationModal.vue"],"names":["component","_vm","this","_h","$createElement","_c","_self","ref","attrs","staticClass","_v","options","__file"],"mappings":"0GAAA,uBAA+hB,G,mDCA/hB,ICuCA,E,wBCvCoY,EDqCpY,CACE,KAAF,+BACE,QAAF,CACI,WADJ,cAAM,mBAAN,oBAAQ,IAAR,IAAQ,OAAR,gFACA,EADA,EACA,mBADA,EACA,iBADA,SAEA,6BAFA,kDAIA,oEAJA,gDAAM,SAAN,GAAQ,OAAR,4B,wBE/BIA,EAAY,YACd,GHTW,WAAa,IAAIC,EAAIC,KAASC,EAAGF,EAAIG,eAAmBC,EAAGJ,EAAIK,MAAMD,IAAIF,EAAG,OAAOE,EAAG,wBAAwB,CAACE,IAAI,QAAQC,MAAM,CAAC,MAAQ,uBAAuB,aAAa,WAAW,gBAAgB,uBAAuB,CAAC,CAACH,EAAG,OAAO,CAACA,EAAG,MAAM,CAACI,YAAY,OAAO,CAACJ,EAAG,MAAM,CAACI,YAAY,8BAA8B,CAACJ,EAAG,MAAM,CAACI,YAAY,OAAO,CAACJ,EAAG,MAAM,CAACI,YAAY,aAAa,CAACJ,EAAG,IAAI,CAACI,YAAY,gBAAgB,CAACJ,EAAG,QAAQ,CAACA,EAAG,KAAK,CAACJ,EAAIS,GAAG,q8BAAq8B,KAC/3C,IGWpB,EACA,KACA,WACA,MAIFV,EAAUW,QAAQC,OAAS,mCACZ,UAAAZ,E","file":"js/vue-modals68.48fc2040.js","sourcesContent":["import mod from \"-!../../../../node_modules/mini-css-extract-plugin/dist/loader.js??ref--6-oneOf-1-0!../../../../node_modules/css-loader/index.js??ref--6-oneOf-1-1!../../../../node_modules/vue-loader/lib/loaders/stylePostLoader.js!../../../../node_modules/postcss-loader/src/index.js??ref--6-oneOf-1-2!../../../../node_modules/cache-loader/dist/cjs.js??ref--0-0!../../../../node_modules/vue-loader/lib/index.js??vue-loader-options!./TerminationConfirmationModal.vue?vue&type=style&index=0&id=e12cdece&scoped=true&lang=css&\"; export default mod; export * from \"-!../../../../node_modules/mini-css-extract-plugin/dist/loader.js??ref--6-oneOf-1-0!../../../../node_modules/css-loader/index.js??ref--6-oneOf-1-1!../../../../node_modules/vue-loader/lib/loaders/stylePostLoader.js!../../../../node_modules/postcss-loader/src/index.js??ref--6-oneOf-1-2!../../../../node_modules/cache-loader/dist/cjs.js??ref--0-0!../../../../node_modules/vue-loader/lib/index.js??vue-loader-options!./TerminationConfirmationModal.vue?vue&type=style&index=0&id=e12cdece&scoped=true&lang=css&\"","var render = function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('ac-confirmation-modal',{ref:\"modal\",attrs:{\"title\":'Provider Termination',\"size-class\":'modal-md',\"accept-button\":'Terminate Provider'}},[[_c('form',[_c('div',{staticClass:\"row\"},[_c('div',{staticClass:\"info-board info-board-blue\"},[_c('div',{staticClass:\"row\"},[_c('div',{staticClass:\"col-lg-12\"},[_c('p',{staticClass:\"text-primary\"},[_c('small',[_c('em',[_vm._v(\"\\n                                        You are about to terminate the selected provider entity.\\n                                        Doing so will schedule the provider for immediate termination.\\n                                        Once the termination is processed, this provider entity will no\\n                                        longer be able to make changes to their account or accept any new\\n                                        patients. If you are terminating a parent Network or Clinic, this\\n                                        process will terminate all providers associated with the entity.\\n                                        Please Note: Members who have selected a plan associated to this\\n                                        provider will have their plans scheduled for termination at the end of\\n                                        the current month.\\n                                    \")])])])])])])])])]],2)}\nvar staticRenderFns = []\n\nexport { render, staticRenderFns }","<template>\n    <ac-confirmation-modal :title=\"'Provider Termination'\"\n                           :size-class=\"'modal-md'\"\n                           :accept-button=\"'Terminate Provider'\" ref=\"modal\">\n        <template>\n            <form>\n                <div class=\"row\">\n                    <div class=\"info-board info-board-blue\">\n                        <div class=\"row\">\n                            <div class=\"col-lg-12\">\n                                <p class=\"text-primary\">\n                                    <small>\n                                        <em>\n                                            You are about to terminate the selected provider entity.\n                                            Doing so will schedule the provider for immediate termination.\n                                            Once the termination is processed, this provider entity will no\n                                            longer be able to make changes to their account or accept any new\n                                            patients. If you are terminating a parent Network or Clinic, this\n                                            process will terminate all providers associated with the entity.\n                                            Please Note: Members who have selected a plan associated to this\n                                            provider will have their plans scheduled for termination at the end of\n                                            the current month.\n                                        </em>\n                                    </small>\n                                </p>\n                            </div>\n                        </div>\n                    </div>\n                </div>\n            </form>\n        </template>\n    </ac-confirmation-modal>\n</template>\n\n<script>\n    import {api} from \"../../../global/framework/api.js\";\n\n    export default {\n        name: \"TerminationConfirmationModal\",\n        methods: {\n            async showModal({providerEntityId, terminatingChild}) {\n                let result = await this.$refs.modal.showModal();\n                if (result) {\n                    await api.postDataAsJson('ProviderEntity', terminatingChild ? 'TermChild' : 'TermProvider', providerEntityId);\n                }\n            }\n        }\n    }\n</script>\n\n<style scoped>\n\n</style>","import mod from \"-!../../../../node_modules/cache-loader/dist/cjs.js??ref--12-0!../../../../node_modules/thread-loader/dist/cjs.js!../../../../node_modules/babel-loader/lib/index.js!../../../../node_modules/cache-loader/dist/cjs.js??ref--0-0!../../../../node_modules/vue-loader/lib/index.js??vue-loader-options!./TerminationConfirmationModal.vue?vue&type=script&lang=js&\"; export default mod; export * from \"-!../../../../node_modules/cache-loader/dist/cjs.js??ref--12-0!../../../../node_modules/thread-loader/dist/cjs.js!../../../../node_modules/babel-loader/lib/index.js!../../../../node_modules/cache-loader/dist/cjs.js??ref--0-0!../../../../node_modules/vue-loader/lib/index.js??vue-loader-options!./TerminationConfirmationModal.vue?vue&type=script&lang=js&\"","import { render, staticRenderFns } from \"./TerminationConfirmationModal.vue?vue&type=template&id=e12cdece&scoped=true&\"\nimport script from \"./TerminationConfirmationModal.vue?vue&type=script&lang=js&\"\nexport * from \"./TerminationConfirmationModal.vue?vue&type=script&lang=js&\"\nimport style0 from \"./TerminationConfirmationModal.vue?vue&type=style&index=0&id=e12cdece&scoped=true&lang=css&\"\n\n\n/* normalize component */\nimport normalizer from \"!../../../../node_modules/vue-loader/lib/runtime/componentNormalizer.js\"\nvar component = normalizer(\n  script,\n  render,\n  staticRenderFns,\n  false,\n  null,\n  \"e12cdece\",\n  null\n  \n)\n\ncomponent.options.__file = \"TerminationConfirmationModal.vue\"\nexport default component.exports"],"sourceRoot":""}