{"version":3,"sources":["webpack:///./src/components/TourGuide/useTourGuideTitleAnimation.js","webpack:///./src/components/TourGuide/TourGuideSteps/PackageSelection.vue?d4de","webpack:///src/components/TourGuide/TourGuideSteps/PackageSelection.vue","webpack:///./src/components/TourGuide/TourGuideSteps/PackageSelection.vue?2b21","webpack:///./src/components/TourGuide/TourGuideSteps/PackageSelection.vue"],"names":["useTourGuideTitleAnimation","props","activateOtherAnimation","deactivateOtherAnimation","showTitles","ref","activateAnimation","setTimeout","value","watch","currentStep","newStep","stepIndex","immediate","render","_vm","this","_h","$createElement","_c","_self","staticStyle","attrs","staticClass","_v","_s","$t","_e","on","$event","moveToNextSlide","staticRenderFns","name","moveToNextStep","type","required","setup","emit","store","includeCallsPreference","id","component","VBtn"],"mappings":"gHAAA,kDAEO,SAASA,EAA2BC,GAAuE,IAAhEC,EAAgE,uDAAvC,KAAMC,EAAiC,uDAAN,KAClGC,EAAaC,kBAAI,GAEjBC,EAAoB,WACtBC,YAAW,WACPH,EAAWI,OAAQ,EACfN,GACAA,MAEL,IAiBP,OAdAO,oBACI,kBAAMR,EAAMS,eACZ,SAAAC,GACQA,IAAYV,EAAMW,UAClBN,KAEIH,GACAA,IAEJC,EAAWI,OAAQ,KAExB,CAAEK,WAAW,IAGb,CACHT,aACAE,uB,2CC9BR,IAAIQ,EAAS,WAAa,IAAIC,EAAIC,KAASC,EAAGF,EAAIG,eAAmBC,EAAGJ,EAAIK,MAAMD,IAAIF,EAAG,OAAOE,EAAG,MAAM,CAACA,EAAG,MAAM,CAACE,YAAY,CAAC,QAAU,OAAO,cAAc,SAAS,CAACF,EAAG,aAAa,CAACG,MAAM,CAAC,KAAO,oBAAoB,CAAEP,EAAc,WAAEI,EAAG,MAAM,CAACI,YAAY,kCAAkC,CAACR,EAAIS,GAAG,IAAIT,EAAIU,GAAGV,EAAIW,GAAG,sBAAsB,OAAOX,EAAIY,OAAOR,EAAG,MAAM,CAACI,YAAY,8BAA8BF,YAAY,CAAC,cAAc,SAAS,CAACF,EAAG,aAAa,CAACG,MAAM,CAAC,KAAO,oBAAoB,CAAEP,EAAc,WAAEI,EAAG,QAAQ,CAACI,YAAY,kBAAkBD,MAAM,CAAC,MAAQ,GAAG,SAAW,GAAG,UAAU,IAAIM,GAAG,CAAC,MAAQ,SAASC,GAAQ,OAAOd,EAAIe,gBAAgB,MAAM,CAACf,EAAIS,GAAG,IAAIT,EAAIU,GAAGV,EAAIW,GAAG,kBAAkB,OAAOX,EAAIY,MAAM,GAAGR,EAAG,aAAa,CAACG,MAAM,CAAC,KAAO,oBAAoB,CAAEP,EAAc,WAAEI,EAAG,QAAQ,CAACI,YAAY,aAAaD,MAAM,CAAC,MAAQ,GAAG,SAAW,GAAG,UAAU,IAAIM,GAAG,CAAC,MAAQ,SAASC,GAAQ,OAAOd,EAAIe,gBAAgB,MAAM,CAACf,EAAIS,GAAG,IAAIT,EAAIU,GAAGV,EAAIW,GAAG,wBAAwB,OAAOX,EAAIY,MAAM,IAAI,IAAI,GAAGR,EAAG,aAAa,CAACG,MAAM,CAAC,KAAO,0BAA0B,CAAEP,EAAc,WAAEI,EAAG,iBAAiB,CAACE,YAAY,CAAC,QAAU,MAAM,aAAa,QAAQC,MAAM,CAAC,IAAM,EAAQ,QAA+C,OAAS,MAAM,QAAU,MAAMP,EAAIY,MAAM,IAAI,IAChwCI,EAAkB,G,wBCyDP,GACbC,KAAMA,UAEN/B,MAAOA,CACLgC,eAAgBA,CACdC,KAAMA,SACNC,UAAUA,GAEZzB,YAAaA,CACXyB,UAAUA,GAEZvB,UAAWA,CACTuB,UAAUA,IAIdC,MAhBF,SAgBAnC,EAhBA,GAgBA,aACA,mCACIoC,EAAKA,yBAA0BA,MAE/B,IAAJ,cACMA,EAAKA,yBAA0BA,GAC/B,IAAN,QAEMC,OAAMA,SAASA,oBAAqBA,CAA1CC,yBAAAC,+BAAA,iBACQvC,EAAMA,qBAIV,MAAO,CACL6B,gBAANA,EACM1B,WAANA,KCzFwX,I,6CCOpXqC,EAAY,eACd,EACA3B,EACAiB,GACA,EACA,KACA,KACA,MAIa,aAAAU,EAAiB,QAKhC,IAAkBA,EAAW,CAACC,OAAA","file":"js/chunk-a10780c0.e5734d38.js","sourcesContent":["import { ref, watch } from '@vue/composition-api'\n\nexport function useTourGuideTitleAnimation(props, activateOtherAnimation = null, deactivateOtherAnimation = null) {\n const showTitles = ref(false)\n\n const activateAnimation = () => {\n setTimeout(() => {\n showTitles.value = true\n if (activateOtherAnimation) {\n activateOtherAnimation()\n }\n }, 2)\n }\n\n watch(\n () => props.currentStep,\n newStep => {\n if (newStep === props.stepIndex) {\n activateAnimation()\n } else {\n if (deactivateOtherAnimation) {\n deactivateOtherAnimation()\n }\n showTitles.value = false\n }\n }, { immediate: true },\n )\n\n return {\n showTitles,\n activateAnimation,\n }\n}","var render = function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('div',[_c('div',{staticStyle:{\"padding\":\"35px\",\"padding-top\":\"15px\"}},[_c('transition',{attrs:{\"name\":\"tour-guide-fade\"}},[(_vm.showTitles)?_c('div',{staticClass:\"py-5 text-2xl font-weight-bold\"},[_vm._v(\" \"+_vm._s(_vm.$t('interests_package'))+\" \")]):_vm._e()]),_c('div',{staticClass:\"justify-center align-center\",staticStyle:{\"padding-top\":\"80px\"}},[_c('transition',{attrs:{\"name\":\"tour-guide-fade\"}},[(_vm.showTitles)?_c('v-btn',{staticClass:\"my-2 rounded-lg\",attrs:{\"block\":\"\",\"outlined\":\"\",\"x-large\":\"\"},on:{\"click\":function($event){return _vm.moveToNextSlide(1)}}},[_vm._v(\" \"+_vm._s(_vm.$t('only_messages'))+\" \")]):_vm._e()],1),_c('transition',{attrs:{\"name\":\"tour-guide-fade\"}},[(_vm.showTitles)?_c('v-btn',{staticClass:\"rounded-lg\",attrs:{\"block\":\"\",\"outlined\":\"\",\"x-large\":\"\"},on:{\"click\":function($event){return _vm.moveToNextSlide(2)}}},[_vm._v(\" \"+_vm._s(_vm.$t('calls_with_messages'))+\" \")]):_vm._e()],1)],1)],1),_c('transition',{attrs:{\"name\":\"tour-guide-image-fade\"}},[(_vm.showTitles)?_c('PreloadedImage',{staticStyle:{\"opacity\":\"0.5\",\"margin-top\":\"50px\"},attrs:{\"src\":require('@/assets/images/tour-guide/conversation.png'),\"height\":\"170\",\"contain\":\"\"}}):_vm._e()],1)],1)}\nvar staticRenderFns = []\n\nexport { render, staticRenderFns }","\n \n \n \n \n {{ $t('interests_package') }}\n \n \n\n \n \n \n {{ $t('only_messages') }}\n \n \n \n \n {{ $t('calls_with_messages') }}\n \n \n \n \n \n \n \n \n\n\n\n","import mod from \"-!../../../../node_modules/cache-loader/dist/cjs.js??ref--13-0!../../../../node_modules/thread-loader/dist/cjs.js!../../../../node_modules/babel-loader/lib/index.js!../../../../node_modules/cache-loader/dist/cjs.js??ref--1-0!../../../../node_modules/vue-loader/lib/index.js??vue-loader-options!./PackageSelection.vue?vue&type=script&lang=js&\"; export default mod; export * from \"-!../../../../node_modules/cache-loader/dist/cjs.js??ref--13-0!../../../../node_modules/thread-loader/dist/cjs.js!../../../../node_modules/babel-loader/lib/index.js!../../../../node_modules/cache-loader/dist/cjs.js??ref--1-0!../../../../node_modules/vue-loader/lib/index.js??vue-loader-options!./PackageSelection.vue?vue&type=script&lang=js&\"","import { render, staticRenderFns } from \"./PackageSelection.vue?vue&type=template&id=12cd707f&\"\nimport script from \"./PackageSelection.vue?vue&type=script&lang=js&\"\nexport * from \"./PackageSelection.vue?vue&type=script&lang=js&\"\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 null,\n null\n \n)\n\nexport default component.exports\n\n/* vuetify-loader */\nimport installComponents from \"!../../../../node_modules/vuetify-loader/lib/runtime/installComponents.js\"\nimport { VBtn } from 'vuetify/lib/components/VBtn';\ninstallComponents(component, {VBtn})\n"],"sourceRoot":""}