\r\n\t\t\r\n\t\t\r\n\t\t\t\r\n\t\t\t\t\r\n\t\t\t\t\t\r\n\t\t\t\t\t\t\r\n\t\t\t\t\t\tContinue with Google\r\n\t\t\t\t\t\r\n\t\t\t\t\r\n\t\t\t\r\n\t\t\t\r\n\t\t\r\n\t
\r\n\r\n\r\n\r\n","import mod from \"-!../../node_modules/thread-loader/dist/cjs.js!../../node_modules/babel-loader/lib/index.js??clonedRuleSet-40.use[1]!../../node_modules/@vue/vue-loader-v15/lib/index.js??vue-loader-options!./TheSocial.vue?vue&type=script&lang=js\"; export default mod; export * from \"-!../../node_modules/thread-loader/dist/cjs.js!../../node_modules/babel-loader/lib/index.js??clonedRuleSet-40.use[1]!../../node_modules/@vue/vue-loader-v15/lib/index.js??vue-loader-options!./TheSocial.vue?vue&type=script&lang=js\"","import { render, staticRenderFns } from \"./TheSocial.vue?vue&type=template&id=317331c0\"\nimport script from \"./TheSocial.vue?vue&type=script&lang=js\"\nexport * from \"./TheSocial.vue?vue&type=script&lang=js\"\n\n\n/* normalize component */\nimport normalizer from \"!../../node_modules/@vue/vue-loader-v15/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","import Api from '@/services/Api'\r\n\r\nexport default {\r\n\tregister(params) {\r\n\t\treturn Api().post('Authentication/AccountSignupSignin', params)\r\n\t},\r\n\tsendOTP(params) {\r\n\t\treturn Api().post('Authentication/ResendAccountVerifyOtp', params)\r\n\t},\r\n\tverifyOTP(params) {\r\n\t\treturn Api().post('Authentication/VerifySigninOtp', params)\r\n\t}\r\n}\r\n","import LogMixin from '@/mixins/log-mixin.js'\r\nimport constants from '@/constants.json'\r\nimport countryIsd from '@/countryIsd'\r\n\r\nimport { Success, Not_found } from '@/statusCodes.js'\r\n\r\nconst googleAuthReponse = {\r\n\tmixins: [LogMixin],\r\n\tmethods: {\r\n\t\thandleGoogleAuth(method, response) {\r\n\t\t\tconst { StatusCode, Data, Message } = response.data\r\n\r\n\t\t\tif (StatusCode !== Success && StatusCode !== Not_found) {\r\n\t\t\t\tthis.snackbar = true\r\n\t\t\t\tthis.errorMessage = Message || constants.errorMessage\r\n\t\t\t\treturn\r\n\t\t\t}\r\n\r\n\t\t\tif (StatusCode === Not_found) {\r\n\t\t\t\tthis.snackbar = true\r\n\t\t\t\tthis.errorMessage = constants.invalidUser\r\n\t\t\t\treturn\r\n\t\t\t}\r\n\r\n\t\t\tif (StatusCode === Success) {\r\n\t\t\t\tconst { Token, UserInfo, DoctorInfo } = Data\r\n\r\n\t\t\t\t// const password = window.atob(UserInfo.Password) // convert base64 to raw\r\n\r\n\t\t\t\tthis.storeUser = {\r\n\t\t\t\t\tuserName: this.$CryptoJS.AES.encrypt(UserInfo.Username, this.$secretKey).toString(),\r\n\t\t\t\t\t// password: this.$CryptoJS.AES.encrypt(password, this.$secretKey).toString(),\r\n\t\t\t\t\tprovider: 'google'\r\n\t\t\t\t}\r\n\r\n\t\t\t\tthis.$store.commit('setUser', this.storeUser)\r\n\t\t\t\tthis.$store.commit('setToken', Token) // Authorization Token response.data.Data.Token\r\n\t\t\t\tthis.$store.commit('setUserId', UserInfo.Id) // Store user Id\r\n\t\t\t\tthis.$store.commit('setUserName', DoctorInfo.Doctor_name)\r\n\t\t\t\tthis.$store.commit('setUserEmail', UserInfo.Email)\r\n\r\n\t\t\t\tthis.$store.commit('setUserContact', DoctorInfo.Doctor_contact)\r\n\r\n\t\t\t\t// method -> sign_up | login\r\n\t\t\t\tthis.$gtag.event(method, { method: 'google' })\r\n\r\n\t\t\t\tif (UserInfo.AskMobileNumber) {\r\n\t\t\t\t\tthis.$store.commit('verifyPhoneStore/SET_VERIFY_PHONE_STATUS', true)\r\n\t\t\t\t\tthis.$router.push('/verify-phone')\r\n\t\t\t\t} else {\r\n\t\t\t\t\tlocalStorage.setItem('isLogin', true)\r\n\t\t\t\t\tthis.enableLogsAPI(UserInfo.Id) // enable login api\r\n\r\n\t\t\t\t\t// has country\r\n\t\t\t\t\tif (typeof DoctorInfo.Doctor_country === 'string' && DoctorInfo.Doctor_country) {\r\n\t\t\t\t\t\tconst { Doctor_country, IsdCode } = DoctorInfo\r\n\t\t\t\t\t\tconst doctorCountry = `${Doctor_country.charAt(0).toUpperCase()}${Doctor_country.slice(\r\n\t\t\t\t\t\t\t1\r\n\t\t\t\t\t\t)}`\r\n\r\n\t\t\t\t\t\tif (IsdCode != null) {\r\n\t\t\t\t\t\t\tlet country = countryIsd.filter(\r\n\t\t\t\t\t\t\t\t(x) => x.code.replace('+', '') == IsdCode.replace('+', '')\r\n\t\t\t\t\t\t\t) //get country from isdcode\r\n\t\t\t\t\t\t\tlet countryName = country[0]['name']\r\n\t\t\t\t\t\t\tthis.$store.commit('setUserIsd', IsdCode)\r\n\t\t\t\t\t\t\tthis.$store.commit(\r\n\t\t\t\t\t\t\t\t'setUserCountry',\r\n\t\t\t\t\t\t\t\tcountryName.charAt(0).toUpperCase() + countryName.slice(1)\r\n\t\t\t\t\t\t\t) // Authorization Token response.data.Data.Token\r\n\t\t\t\t\t\t} else {\r\n\t\t\t\t\t\t\tthis.$store.commit('setUserIsd', IsdCode)\r\n\t\t\t\t\t\t\tthis.$store.commit(\r\n\t\t\t\t\t\t\t\t'setUserCountry',\r\n\t\t\t\t\t\t\t\tdoctorCountry.charAt(0).toUpperCase() + doctorCountry.slice(1)\r\n\t\t\t\t\t\t\t)\r\n\t\t\t\t\t\t}\r\n\t\t\t\t\t}\r\n\r\n\t\t\t\t\tif (DoctorInfo.Doctor_photo && DoctorInfo.Doctor_photo != 'null') {\r\n\t\t\t\t\t\tconst pic = DoctorInfo.Doctor_photo.includes('http')\r\n\t\t\t\t\t\t\t? DoctorInfo.Doctor_photo\r\n\t\t\t\t\t\t\t: process.env.VUE_APP_API_URL_BASE + DoctorInfo.Doctor_photo\r\n\r\n\t\t\t\t\t\tthis.$store.commit('setProfileImage', pic)\r\n\t\t\t\t\t}\r\n\t\t\t\t\tthis.$root.$emit('setImage', DoctorInfo.Doctor_photo)\r\n\r\n\t\t\t\t\tthis.$router.push('/dashboard') // If success then redirect to dashboard page.\r\n\t\t\t\t}\r\n\t\t\t}\r\n\t\t}\r\n\t}\r\n}\r\n\r\nexport default googleAuthReponse\r\n","import Api from '@/services/Api'\r\nimport { AppVersion, OS, PlatformName } from '../deviceDetails'\r\n\r\nconst logMixin = {\r\n\tcomputed: {\r\n\t\tposition() {\r\n\t\t\treturn this.$store.state.position\r\n\t\t},\r\n\t\tos() {\r\n\t\t\treturn OS\r\n\t\t},\r\n\t\tappVersion() {\r\n\t\t\treturn AppVersion\r\n\t\t}\r\n\t},\r\n\tmethods: {\r\n\t\tgenerateDeviceId() {\r\n\t\t\tconst existingId = localStorage.getItem('deviceId')\r\n\t\t\tif (existingId) {\r\n\t\t\t\treturn existingId\r\n\t\t\t}\r\n\r\n\t\t\t// Generate a pseudo-unique ID (UUID)\r\n\t\t\tconst deviceId = window.crypto.randomUUID()\r\n\r\n\t\t\t// Save in local storage for persistence\r\n\t\t\tlocalStorage.setItem('deviceId', deviceId)\r\n\t\t\treturn deviceId\r\n\t\t},\r\n\t\tgetDeviceLocation() {\r\n\t\t\treturn new Promise((resolve, reject) => {\r\n\t\t\t\tif (navigator.geolocation) {\r\n\t\t\t\t\tnavigator.geolocation.getCurrentPosition(\r\n\t\t\t\t\t\t(position) => {\r\n\t\t\t\t\t\t\tresolve({\r\n\t\t\t\t\t\t\t\tlatitude: position.coords.latitude,\r\n\t\t\t\t\t\t\t\tlongitude: position.coords.longitude\r\n\t\t\t\t\t\t\t})\r\n\t\t\t\t\t\t},\r\n\t\t\t\t\t\t(error) => {\r\n\t\t\t\t\t\t\treject(error)\r\n\t\t\t\t\t\t}\r\n\t\t\t\t\t)\r\n\t\t\t\t} else {\r\n\t\t\t\t\treject('Geolocation is not supported by this browser.')\r\n\t\t\t\t}\r\n\t\t\t})\r\n\t\t},\r\n\t\tasync getIpAddress() {\r\n\t\t\ttry {\r\n\t\t\t\tconst response = await fetch('https://api.ipify.org?format=json')\r\n\t\t\t\tconst data = await response.json()\r\n\t\t\t\treturn data.ip\r\n\t\t\t} catch (error) {\r\n\t\t\t\tconsole.error('Error fetching IP address:', error)\r\n\t\t\t\treturn null\r\n\t\t\t}\r\n\t\t},\r\n\t\tasync enableLogsAPI(userId) {\r\n\t\t\tconst ipAddress = await this.getIpAddress()\r\n\t\t\tconst location = await this.getDeviceLocation().catch(() => null)\r\n\t\t\tconst deviceId = await this.generateDeviceId()\r\n\t\t\tconst data = {\r\n\t\t\t\tUserId: userId,\r\n\t\t\t\tplatform: 'Web',\r\n\t\t\t\tdeviceDetail: PlatformName,\r\n\t\t\t\tDeviceId: deviceId,\r\n\t\t\t\tappVersion: this.appVersion,\r\n\t\t\t\tIpAddress: ipAddress || '',\r\n\t\t\t\tScreenName: this.$route.name,\r\n\t\t\t\tUserIdInt: parseInt(userId),\r\n\t\t\t\tLatitude: location ? location.latitude.toString() : '',\r\n\t\t\t\tLongitude: location ? location.longitude.toString() : '',\r\n\t\t\t\tDeviceLocation: location ? `${location.latitude}, ${location.longitude}` : ''\r\n\t\t\t}\r\n\r\n\t\t\tif (this.position.lat !== null) data['latitude'] = this.position.lat\r\n\r\n\t\t\tif (this.position.long !== null) data['longitude'] = this.position.long\r\n\r\n\t\t\tawait Api().post('Log/AddUserLog', data)\r\n\t\t}\r\n\t}\r\n}\r\n\r\nexport default logMixin\r\n","import countryIsd from '@/countryIsd'\r\n\r\nconst countryList = countryIsd\r\n\t.map((country) => ({\r\n\t\tname: country.name,\r\n\t\tavatar: country.flag,\r\n\t\tisdCode: country.code.replace('+', ''),\r\n\t\tcode: country.code.replace('+', '').replace(' ', '')\r\n\t}))\r\n\t.sort((a, b) => a.code - b.code)\r\n\r\nexport const findCountryByName = (name) => {\r\n\tif (typeof name !== 'string') return\r\n\r\n\treturn countryList.find((c) => c.name.toLowerCase() === name.toLowerCase())\r\n}\r\n\r\nexport default {\r\n\tisdCodeList() {\r\n\t\treturn countryList\r\n\t}\r\n}\r\n","import Vue from 'vue'\r\n// import axios from 'axios'\r\nimport store from '../store'\r\nimport Api from '@/services/Api'\r\n\r\nconst API_URL = Vue.prototype.$api\r\n\r\n/**\r\n * Get address suggestions from search, latitude and longitude\r\n * @param {string} latitude\r\n * @param {string} longitude\r\n * @returns {Promise<{ data?: any, error?: any }>}\r\n */\r\nexport async function getAddressDataFromLatLong(latitude, longitude) {\r\n\tif (!latitude || !longitude)\r\n\t\treturn { data: undefined, error: 'Latitude and longitude is required' }\r\n\r\n\tconst urlQueryParams = new URLSearchParams({ latitude, longitude }).toString()\r\n\r\n\ttry {\r\n\t\tconst { data } = await Api().get(`${API_URL}/Common/GetAddressFromGoogle?${urlQueryParams}`, {\r\n\t\t\theaders: {\r\n\t\t\t\tScreenName: store.state.screenName\r\n\t\t\t}\r\n\t\t})\r\n\r\n\t\treturn { data, error: undefined }\r\n\t} catch (e) {\r\n\t\treturn { data: undefined, error: e }\r\n\t}\r\n}\r\n\r\n/**\r\n * Get address suggestions from search, latitude and longitude\r\n * @param {{ search: string, latitude: string, longitude: string }} param\r\n * @returns {Promise<{ data?: any, error?: any }>}\r\n */\r\nexport async function getAddressSuggestion({ search, latitude, longitude }) {\r\n\tconst urlQueryParams = new URLSearchParams({ searchText: search, latitude, longitude }).toString()\r\n\r\n\ttry {\r\n\t\tconst { data } = await Api().get(`${API_URL}/Common/GetAddressByGoogle?${urlQueryParams}`)\r\n\r\n\t\treturn { data, error: undefined }\r\n\t} catch (e) {\r\n\t\treturn { data: undefined, error: e }\r\n\t}\r\n}\r\n","import countryIsdCode from '@/countryIsd'\r\nimport { getAddressDataFromLatLong } from '../services/address'\r\nimport { Success } from '@/statusCodes.js'\r\n\r\nexport function askToUserPermissionForLocation() {\r\n\treturn new Promise((resolve, reject) => {\r\n\t\tif (!('geolocation' in navigator)) reject('gelocation not supported')\r\n\r\n\t\tnavigator.geolocation.getCurrentPosition(\r\n\t\t\t(position) => resolve(position), // on success\r\n\t\t\t(error) => reject(error), // on error\r\n\t\t\t{\r\n\t\t\t\tenableHighAccuracy: true,\r\n\t\t\t\ttimeout: 5000,\r\n\t\t\t\tmaximumAge: 0\r\n\t\t\t} // options\r\n\t\t)\r\n\t})\r\n}\r\n\r\nasync function getAddressesFromUserLatLong(position) {\r\n\tif (!position) return { data: undefined, error: 'Position is required' }\r\n\r\n\ttry {\r\n\t\tconst { data, error } = await getAddressDataFromLatLong(position.latitude, position.longitude)\r\n\r\n\t\tif (error || data.StatusCode !== Success) throw new Error('Cant find location at the moment')\r\n\r\n\t\tconst { results } = data.Data\r\n\r\n\t\t// if \"GEOMETRIC_CENTER\" not found fallback to \"ROOFTOP\" location\r\n\t\tconst userLocation =\r\n\t\t\tresults.find((result) => result?.geometry.location_type === 'GEOMETRIC_CENTER') ??\r\n\t\t\tresults.find((result) => result?.geometry.location_type === 'ROOFTOP')\r\n\r\n\t\tif (!userLocation) throw new Error('Cant find user location')\r\n\r\n\t\tconst locationData = { city: null, state: null, country: null, isdCode: null }\r\n\r\n\t\tfor (let address of userLocation.address_components) {\r\n\t\t\t// state\r\n\t\t\tif (address?.types?.includes('administrative_area_level_1')) {\r\n\t\t\t\tlocationData.state = address.long_name\r\n\t\t\t}\r\n\t\t\t// city\r\n\t\t\tif (address?.types?.includes('locality') || address?.types?.includes('postal_town')) {\r\n\t\t\t\tlocationData.city = address.long_name\r\n\t\t\t}\r\n\r\n\t\t\t// country\r\n\t\t\tif (address?.types?.includes('country')) {\r\n\t\t\t\tlocationData.country = address.long_name\r\n\t\t\t}\r\n\t\t}\r\n\r\n\t\tconst myCountry = countryIsdCode.find(\r\n\t\t\t(c) => c.name.toLowerCase() === locationData.country.toLowerCase()\r\n\t\t)\r\n\r\n\t\t// isdCode\r\n\t\tif (myCountry) locationData.isdCode = myCountry.code.replace('+', '')\r\n\r\n\t\treturn { data: locationData, error: undefined }\r\n\t} catch (e) {\r\n\t\treturn { data: undefined, error: e }\r\n\t}\r\n}\r\n\r\nexport async function getUserAddressLocationData() {\r\n\ttry {\r\n\t\tconst position = await askToUserPermissionForLocation()\r\n\t\tif (!position) throw new Error('No position')\r\n\t\tconst { data, error } = await getAddressesFromUserLatLong(position.coords)\r\n\r\n\t\tif (error) throw new Error(error)\r\n\r\n\t\treturn { data: { ...data, position }, error: undefined }\r\n\t} catch (e) {\r\n\t\treturn { data: undefined, error: e }\r\n\t}\r\n}\r\n","!function(t,e){\"object\"==typeof exports&&\"undefined\"!=typeof module?e(exports):\"function\"==typeof define&&define.amd?define([\"exports\"],e):e((t=t||self)[\"vue-google-login\"]={})}(this,(function(t){\"use strict\";var e,n,i=function(t){return e?Promise.resolve(e):(n||(n=function(t){return new Promise((function(n,i){window.onGapiLoad=function(){window.gapi.load(\"auth2\",(function(){try{e=window.gapi.auth2.init(Object.assign({},t))}catch(t){i({err:\"client_id missing or is incorrect, or if you added extra params maybe they are written incorrectly, did you add it to the component or plugin?\"})}n(e)}))}}))}(t)),n)},o=function(t,e){if(t)return t[e]();return Promise.reject({err:\"Script not loaded correctly, did you added the plugin or the client_id to the component?\"})},r={load:function(t){return Promise.all([i(t),new Promise((function(t,e){if(!document.getElementById(\"auth2_script_id\")){var n=document.createElement(\"script\");n.setAttribute(\"src\",\"https://apis.google.com/js/platform.js?onload=onGapiLoad\"),n.setAttribute(\"async\",!0),n.setAttribute(\"defer\",\"defer\"),n.setAttribute(\"id\",\"auth2_script_id\"),document.head.appendChild(n)}t()}))]).then((function(t){return t[0]}))},signIn:function(){return o(e,\"signIn\")},signOut:function(){return o(e,\"signOut\")},isSignedIn:function(){return o(e.isSignedIn,\"get\")},currentUser:function(){return o(e.currentUser,\"get\")},grantOfflineAccess:function(){return o(e,\"grantOfflineAccess\")}},s=0;var u=function(t,e,n,i,o,r,s,u,c,d){\"boolean\"!=typeof s&&(c=u,u=s,s=!1);var a,l=\"function\"==typeof n?n.options:n;if(t&&t.render&&(l.render=t.render,l.staticRenderFns=t.staticRenderFns,l._compiled=!0,o&&(l.functional=!0)),i&&(l._scopeId=i),r?(a=function(t){(t=t||this.$vnode&&this.$vnode.ssrContext||this.parent&&this.parent.$vnode&&this.parent.$vnode.ssrContext)||\"undefined\"==typeof __VUE_SSR_CONTEXT__||(t=__VUE_SSR_CONTEXT__),e&&e.call(this,c(t)),t&&t._registeredComponents&&t._registeredComponents.add(r)},l._ssrRegister=a):e&&(a=s?function(){e.call(this,d(this.$root.$options.shadowRoot))}:function(t){e.call(this,u(t))}),a)if(l.functional){var f=l.render;l.render=function(t,e){return a.call(e),f(t,e)}}else{var h=l.beforeCreate;l.beforeCreate=h?[].concat(h,a):[a]}return n}({render:function(){var t=this.$createElement,e=this._self._c||t;return this.renderParams&&!this.logoutButton?e(\"div\",{attrs:{id:this.id},on:{click:this.handleClick}}):e(\"button\",{attrs:{id:this.id},on:{click:this.handleClick}},[this._t(\"default\")],2)},staticRenderFns:[]},void 0,{name:\"GoogleLogin\",props:{params:{type:Object,required:!0},onCurrentUser:{type:Function,default:function(){}},onSuccess:{type:Function,default:function(){}},onFailure:{type:Function,default:function(){}},logoutButton:{type:Boolean,default:!1},renderParams:{type:Object,required:!1}},beforeCreate:function(){this.id=\"google-signin-btn-\".concat(s++)},methods:{handleClick:function(){var t=this,e=this.logoutButton?\"signOut\":\"signIn\";r[e]().then((function(e){return t.onSuccess(e)})).catch((function(e){return t.onFailure(e)}))}},mounted:function(){var t=this;r.load(this.params).then((function(){t.renderParams&&!1===t.logoutButton&&window.gapi.signin2.render(t.id,t.renderParams),r.isSignedIn()&&t.onCurrentUser(r.currentUser())})).catch((function(t){console.log(t)}))}},void 0,!1,void 0,void 0,void 0),c={install:function(t,e){t.GoogleAuth=r.load(e)}};t.GoogleLogin=u,t.LoaderPlugin=c,t.default=u,Object.defineProperty(t,\"__esModule\",{value:!0})}));\n//# sourceMappingURL=vue-google-login.min.js.map\n"],"names":["render","_vm","this","_c","_self","loader","_e","attrs","staticClass","params","onSuccess","onFailure","_v","staticRenderFns","initFbSDK","window","fbAsyncInit","FB","init","appId","cookie","xfbml","version","AppEvents","logPageView","d","s","id","js","fjs","getElementsByTagName","getElementById","createElement","src","parentNode","insertBefore","document","data","user","email","firstName","providerId","tokenId","provider","lastName","client_id","plugin_name","mounted","components","GoogleLogin","TheLoader","methods","Vue","console","loginWithFacebook","response","userResponse","fields","scope","component","register","Api","post","sendOTP","verifyOTP","googleAuthReponse","mixins","LogMixin","handleGoogleAuth","method","StatusCode","Data","Message","Success","Not_found","snackbar","errorMessage","constants","Token","UserInfo","DoctorInfo","storeUser","userName","$CryptoJS","AES","encrypt","Username","$secretKey","toString","$store","commit","Id","Doctor_name","Email","Doctor_contact","$gtag","event","AskMobileNumber","$router","push","localStorage","setItem","enableLogsAPI","Doctor_country","IsdCode","doctorCountry","charAt","toUpperCase","slice","country","countryIsd","x","code","replace","countryName","Doctor_photo","pic","includes","process","$root","$emit","logMixin","computed","position","state","os","OS","appVersion","AppVersion","generateDeviceId","existingId","getItem","deviceId","crypto","randomUUID","getDeviceLocation","Promise","resolve","reject","navigator","geolocation","getCurrentPosition","latitude","coords","longitude","error","async","fetch","json","ip","userId","ipAddress","getIpAddress","location","catch","UserId","platform","deviceDetail","PlatformName","DeviceId","IpAddress","ScreenName","$route","name","UserIdInt","parseInt","Latitude","Longitude","DeviceLocation","lat","long","countryList","avatar","flag","isdCode","sort","a","b","findCountryByName","find","c","toLowerCase","isdCodeList","API_URL","getAddressDataFromLatLong","undefined","urlQueryParams","URLSearchParams","get","headers","store","e","getAddressSuggestion","search","searchText","askToUserPermissionForLocation","enableHighAccuracy","timeout","maximumAge","getAddressesFromUserLatLong","Error","results","userLocation","result","geometry","location_type","locationData","city","address","address_components","types","long_name","myCountry","countryIsdCode","getUserAddressLocationData","t","exports","n","i","onGapiLoad","gapi","load","auth2","Object","assign","err","o","r","all","setAttribute","head","appendChild","then","signIn","signOut","isSignedIn","currentUser","grantOfflineAccess","u","l","options","_compiled","functional","_scopeId","$vnode","ssrContext","parent","__VUE_SSR_CONTEXT__","call","_registeredComponents","add","_ssrRegister","$options","shadowRoot","f","h","beforeCreate","concat","$createElement","renderParams","logoutButton","on","click","handleClick","_t","props","type","required","onCurrentUser","Function","default","Boolean","signin2","log","install","GoogleAuth","LoaderPlugin","defineProperty","value"],"sourceRoot":""}