{"version":3,"sources":["webpack:///../../../src/components/VAppBar/VAppBarTitle.ts","webpack:///./src/layouts/default/widgets/Notifications.vue?f57e","webpack:///src/layouts/default/widgets/Notifications.vue","webpack:///./src/layouts/default/widgets/Notifications.vue?d16b","webpack:///./src/layouts/default/widgets/Notifications.vue"],"names":[],"mappings":";;;;;;AAAA;AAAA;AAAA;AAAA;CAQA;;AACA;AACA;AAEA,IAAM,IAAI,GAAG,0EAAM,+BAAnB,WAAmB,CAAnB;AASe,6DAAI,CAAJ,gBAA8B;AAC3C,MAAI,EADuC;AAG3C,MAAI,EAAE;AAAA,WAAO;AACX,kBAAY,EADD;AAEX,UAAI,EAFO;AAGX,WAAK,EAAE;AAHI,KAAP;AAAA,GAHqC;AAS3C,OAAK,EAAE;AACL,iCAA6B;AADxB,GAToC;AAa3C,UAAQ,EAAE;AACR,UADQ,oBACF;AACJ,UAAI,CAAC,KAAL,cAAwB;AAExB,UAAM,GAAG,GAAG,KAAZ;AACA,UAAM,GAAG,GAAG,KAAZ;AACA,UAAM,KAAK,GAAG,qFAAc,CAAC,IAAI,CAAJ,OAAY,2BAAzC,GAA6B,CAAD,CAA5B;AACA,aAAO;AACL,aAAK,EAAE,2EAAa,CAAC,GAAG,GAAG,CAAC,GAAG,GAAJ,OADtB,KACe,CADf;AAEL,kBAAU,EAAE,uCAAuC;AAF9C,OAAP;AAID;AAXO,GAbiC;AA2B3C,SA3B2C,qBA2BpC;AACL;AA5ByC;AA+B3C,SAAO,EAAE;AACP,oBADO,8BACS;AACd,UAAM,UAAU,GAAG,uBAAnB,qBAAmB,EAAnB;AACA,mBAAa,UAAU,CAAvB;AACA,kBAAY,UAAU,CAAtB;AACA,0BAAoB,mBAApB;AACD;AANM,GA/BkC;AAwC3C,QAxC2C,kBAwCrC,CAxCqC,EAwClC;AACP,WAAO,CAAC,QAAQ;AACd,WAAK,EAAE;AADO,KAAR,EAEL,CACD,CAAC,QAAQ;AACP,WAAK,EADE;AAEP,WAAK,EAAE,KAFA;AAGP,SAAG,EAAE;AAHE,KAAR,EAIE,CAAC,YALH,OAKE,CAJF,CADA,EAMD,CAAC,QAAQ;AACP,WAAK,EADE;AAEP,WAAK,EAAE;AACL,kBAAU,EAAE,sCAAsC;AAD7C,OAFA;AAKP,SAAG,EAAE;AALE,KAAR,EAME,CAAC,YAdN,OAcK,CANF,CANA,CAFK,CAAR;AAgBD;AAzD0C,CAA9B,CAAf,E;;;;;;;;;;;;ACrBA,0BAA0B,aAAa,0BAA0B,wBAAwB,+BAA+B,OAAO,yFAAyF,sBAAsB;AAC9O;AACA;AACA,kCAAkC,0BAA0B,2BAA2B,yCAAyC,OAAO,yCAAyC,sBAAsB,0BAA0B,kCAAkC,YAAY,aAAa,8CAA8C,yBAAyB,eAAe,OAAO,oBAAoB,0CAA0C,6BAA6B,aAAa,WAAW,oFAAoF;AAC/jB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AC8CA;AACA,8BADA;AAGA;AAAA;AACA,iBADA;AAEA,sBACA,+BADA,EAEA,oBAFA,EAGA,wBAHA;AAFA;AAAA;AAHA,G;;AClDqW,CAAgB,uHAAG,EAAC,C;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;ACA7R;AAC3B;AACL;;;AAG5D;AACgG;AAChG,gBAAgB,8CAAU;AAC1B,EAAE,6CAAM;AACR,EAAE,MAAM;AACR,EAAE,eAAe;AACjB;AACA;AACA;AACA;;AAEA;;AAEe,oGAAiB;;AAEhC;AACyG;AAC3C;AACP;AACJ;AACE;AACA;AACW;AACF;AACT;AACrD,2BAAiB,aAAa,6CAAY,CAAC,iCAAM,CAAC,6BAAI,CAAC,+BAAK,CAAC,+BAAK,CAAC,8DAAgB,CAAC,0DAAc,CAAC,+BAAK,CAAC","file":"js/default-notifications.8d0cdcbd.js","sourcesContent":["// Mixins\nimport { inject } from '../../mixins/registrable'\n\n// Types\nimport { VNode } from 'vue'\nimport { ExtractVue } from '../../util/mixins'\nimport VAppBar from './VAppBar'\n\n// Utilities\nimport { convertToUnit } from '../../util/helpers'\nimport { easeInOutCubic } from '../../services/goto/easing-patterns'\n\nconst base = inject<'VAppBar', typeof VAppBar>('VAppBar', 'v-app-bar-title', 'v-app-bar')\n\ninterface options extends ExtractVue {\n $refs: {\n content: Element\n placeholder: Element\n }\n}\n\nexport default base.extend().extend({\n name: 'v-app-bar-title',\n\n data: () => ({\n contentWidth: 0,\n left: 0,\n width: 0,\n }),\n\n watch: {\n '$vuetify.breakpoint.width': 'updateDimensions',\n },\n\n computed: {\n styles (): object {\n if (!this.contentWidth) return {}\n\n const min = this.width\n const max = this.contentWidth\n const ratio = easeInOutCubic(Math.min(1, this.VAppBar.scrollRatio * 1.5))\n return {\n width: convertToUnit(min + (max - min) * ratio),\n visibility: this.VAppBar.scrollRatio ? 'visible' : 'hidden',\n }\n },\n },\n\n mounted () {\n this.updateDimensions()\n },\n\n methods: {\n updateDimensions (): void {\n const dimensions = this.$refs.placeholder.getBoundingClientRect()\n this.width = dimensions.width\n this.left = dimensions.left\n this.contentWidth = this.$refs.content.scrollWidth\n },\n },\n\n render (h): VNode {\n return h('div', {\n class: 'v-toolbar__title v-app-bar-title',\n }, [\n h('div', {\n class: 'v-app-bar-title__content',\n style: this.styles,\n ref: 'content',\n }, [this.$slots.default]),\n h('div', {\n class: 'v-app-bar-title__placeholder',\n style: {\n visibility: this.VAppBar.scrollRatio ? 'hidden' : 'visible',\n },\n ref: 'placeholder',\n }, [this.$slots.default]),\n ])\n },\n})\n","var render = function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return (_vm.show)?_c('v-menu',{attrs:{\"bottom\":\"\",\"left\":\"\",\"offset-y\":\"\",\"origin\":\"top right\",\"transition\":\"scale-transition\"},scopedSlots:_vm._u([{key:\"activator\",fn:function(ref){\nvar attrs = ref.attrs;\nvar on = ref.on;\nreturn [_c('v-btn',_vm._g(_vm._b({staticClass:\"ml-2\",attrs:{\"min-width\":\"0\",\"text\":\"\"}},'v-btn',attrs,false),on),[_c('v-badge',{attrs:{\"bordered\":\"\",\"color\":\"red\",\"overlap\":\"\"},scopedSlots:_vm._u([{key:\"badge\",fn:function(){return [_c('span',[_vm._v(\"3\")])]},proxy:true}],null,true)},[_c('v-icon',[_vm._v(\"mdi-bell\")])],1)],1)]}}],null,false,3765974943)},[_c('v-list',{attrs:{\"flat\":\"\",\"nav\":\"\"}},_vm._l((_vm.notifications),function(n,i){return _c('v-app-bar-title',{key:i,attrs:{\"link\":\"\"}},[_c('v-list-item-content',[_c('v-list-item-title',[_vm._v(_vm._s(n)+\" \")])],1)],1)}),1)],1):_vm._e()}\nvar staticRenderFns = []\n\nexport { render, staticRenderFns }","\n\n\n","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!./Notifications.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!./Notifications.vue?vue&type=script&lang=js&\"","import { render, staticRenderFns } from \"./Notifications.vue?vue&type=template&id=6b4e2ad4&\"\nimport script from \"./Notifications.vue?vue&type=script&lang=js&\"\nexport * from \"./Notifications.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 { VAppBarTitle } from 'vuetify/lib/components/VAppBar';\nimport { VBadge } from 'vuetify/lib/components/VBadge';\nimport { VBtn } from 'vuetify/lib/components/VBtn';\nimport { VIcon } from 'vuetify/lib/components/VIcon';\nimport { VList } from 'vuetify/lib/components/VList';\nimport { VListItemContent } from 'vuetify/lib/components/VList';\nimport { VListItemTitle } from 'vuetify/lib/components/VList';\nimport { VMenu } from 'vuetify/lib/components/VMenu';\ninstallComponents(component, {VAppBarTitle,VBadge,VBtn,VIcon,VList,VListItemContent,VListItemTitle,VMenu})\n"],"sourceRoot":""}