\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n 0 && network && network.online\"\r\n large\r\n block\r\n color=\"red\"\r\n :dark=\"!syncing\"\r\n :disabled=\"syncing\"\r\n @click.stop=\"sincronizar\"\r\n >\r\n \r\n {{ $vuetify.icons.values.sync }}\r\n \r\n Sincronizar {{ syncPendientes }} {{ 'cambio'|pluralize(syncPendientes, 's') }}\r\n \r\n \r\n \r\n \r\n\r\n \r\n 0\"\r\n class=\"mt-2\"\r\n :items=\"partesDescargados\"\r\n :max-items=\"3\"\r\n @click-ver-todos=\"clickVerTodosParte\"\r\n @click-item-list=\"clickItemListParte\"\r\n />\r\n \r\n \r\n \r\n
\r\n\r\n\r\n\r\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!./Index.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!./Index.vue?vue&type=script&lang=js&\"","// Components\nimport VIcon from '../VIcon';\nimport VBtn from '../VBtn/VBtn'; // Types\n\nimport Vue from 'vue';\n/* @vue/component */\n\nexport default Vue.extend({\n name: 'v-app-bar-nav-icon',\n functional: true,\n\n render(h, {\n slots,\n listeners,\n props,\n data\n }) {\n const d = Object.assign(data, {\n staticClass: `v-app-bar__nav-icon ${data.staticClass || ''}`.trim(),\n props: { ...props,\n icon: true\n },\n on: listeners\n });\n const defaultSlot = slots().default;\n return h(VBtn, d, defaultSlot || [h(VIcon, '$menu')]);\n }\n\n});\n//# sourceMappingURL=VAppBarNavIcon.js.map","// Styles\nimport \"../../../src/components/VNavigationDrawer/VNavigationDrawer.sass\"; // Components\n\nimport VImg from '../VImg/VImg'; // Mixins\n\nimport Applicationable from '../../mixins/applicationable';\nimport Colorable from '../../mixins/colorable';\nimport Dependent from '../../mixins/dependent';\nimport Mobile from '../../mixins/mobile';\nimport Overlayable from '../../mixins/overlayable';\nimport SSRBootable from '../../mixins/ssr-bootable';\nimport Themeable from '../../mixins/themeable'; // Directives\n\nimport ClickOutside from '../../directives/click-outside';\nimport Resize from '../../directives/resize';\nimport Touch from '../../directives/touch'; // Utilities\n\nimport { convertToUnit, getSlot } from '../../util/helpers';\nimport mixins from '../../util/mixins';\nconst baseMixins = mixins(Applicationable('left', ['isActive', 'isMobile', 'miniVariant', 'expandOnHover', 'permanent', 'right', 'temporary', 'width']), Colorable, Dependent, Mobile, Overlayable, SSRBootable, Themeable);\n/* @vue/component */\n\nexport default baseMixins.extend({\n name: 'v-navigation-drawer',\n directives: {\n ClickOutside,\n Resize,\n Touch\n },\n\n provide() {\n return {\n isInNav: this.tag === 'nav'\n };\n },\n\n props: {\n bottom: Boolean,\n clipped: Boolean,\n disableResizeWatcher: Boolean,\n disableRouteWatcher: Boolean,\n expandOnHover: Boolean,\n floating: Boolean,\n height: {\n type: [Number, String],\n\n default() {\n return this.app ? '100vh' : '100%';\n }\n\n },\n miniVariant: Boolean,\n miniVariantWidth: {\n type: [Number, String],\n default: 56\n },\n permanent: Boolean,\n right: Boolean,\n src: {\n type: [String, Object],\n default: ''\n },\n stateless: Boolean,\n tag: {\n type: String,\n\n default() {\n return this.app ? 'nav' : 'aside';\n }\n\n },\n temporary: Boolean,\n touchless: Boolean,\n width: {\n type: [Number, String],\n default: 256\n },\n value: null\n },\n data: () => ({\n isMouseover: false,\n touchArea: {\n left: 0,\n right: 0\n },\n stackMinZIndex: 6\n }),\n computed: {\n /**\n * Used for setting an app value from a dynamic\n * property. Called from applicationable.js\n */\n applicationProperty() {\n return this.right ? 'right' : 'left';\n },\n\n classes() {\n return {\n 'v-navigation-drawer': true,\n 'v-navigation-drawer--absolute': this.absolute,\n 'v-navigation-drawer--bottom': this.bottom,\n 'v-navigation-drawer--clipped': this.clipped,\n 'v-navigation-drawer--close': !this.isActive,\n 'v-navigation-drawer--fixed': !this.absolute && (this.app || this.fixed),\n 'v-navigation-drawer--floating': this.floating,\n 'v-navigation-drawer--is-mobile': this.isMobile,\n 'v-navigation-drawer--is-mouseover': this.isMouseover,\n 'v-navigation-drawer--mini-variant': this.isMiniVariant,\n 'v-navigation-drawer--custom-mini-variant': Number(this.miniVariantWidth) !== 56,\n 'v-navigation-drawer--open': this.isActive,\n 'v-navigation-drawer--open-on-hover': this.expandOnHover,\n 'v-navigation-drawer--right': this.right,\n 'v-navigation-drawer--temporary': this.temporary,\n ...this.themeClasses\n };\n },\n\n computedMaxHeight() {\n if (!this.hasApp) return null;\n const computedMaxHeight = this.$vuetify.application.bottom + this.$vuetify.application.footer + this.$vuetify.application.bar;\n if (!this.clipped) return computedMaxHeight;\n return computedMaxHeight + this.$vuetify.application.top;\n },\n\n computedTop() {\n if (!this.hasApp) return 0;\n let computedTop = this.$vuetify.application.bar;\n computedTop += this.clipped ? this.$vuetify.application.top : 0;\n return computedTop;\n },\n\n computedTransform() {\n if (this.isActive) return 0;\n if (this.isBottom) return 100;\n return this.right ? 100 : -100;\n },\n\n computedWidth() {\n return this.isMiniVariant ? this.miniVariantWidth : this.width;\n },\n\n hasApp() {\n return this.app && !this.isMobile && !this.temporary;\n },\n\n isBottom() {\n return this.bottom && this.isMobile;\n },\n\n isMiniVariant() {\n return !this.expandOnHover && this.miniVariant || this.expandOnHover && !this.isMouseover;\n },\n\n isMobile() {\n return !this.stateless && !this.permanent && Mobile.options.computed.isMobile.call(this);\n },\n\n reactsToClick() {\n return !this.stateless && !this.permanent && (this.isMobile || this.temporary);\n },\n\n reactsToMobile() {\n return this.app && !this.disableResizeWatcher && !this.permanent && !this.stateless && !this.temporary;\n },\n\n reactsToResize() {\n return !this.disableResizeWatcher && !this.stateless;\n },\n\n reactsToRoute() {\n return !this.disableRouteWatcher && !this.stateless && (this.temporary || this.isMobile);\n },\n\n showOverlay() {\n return !this.hideOverlay && this.isActive && (this.isMobile || this.temporary);\n },\n\n styles() {\n const translate = this.isBottom ? 'translateY' : 'translateX';\n return {\n height: convertToUnit(this.height),\n top: !this.isBottom ? convertToUnit(this.computedTop) : 'auto',\n maxHeight: this.computedMaxHeight != null ? `calc(100% - ${convertToUnit(this.computedMaxHeight)})` : undefined,\n transform: `${translate}(${convertToUnit(this.computedTransform, '%')})`,\n width: convertToUnit(this.computedWidth)\n };\n }\n\n },\n watch: {\n $route: 'onRouteChange',\n\n isActive(val) {\n this.$emit('input', val);\n },\n\n /**\n * When mobile changes, adjust the active state\n * only when there has been a previous value\n */\n isMobile(val, prev) {\n !val && this.isActive && !this.temporary && this.removeOverlay();\n if (prev == null || !this.reactsToResize || !this.reactsToMobile) return;\n this.isActive = !val;\n },\n\n permanent(val) {\n // If enabling prop enable the drawer\n if (val) this.isActive = true;\n },\n\n showOverlay(val) {\n if (val) this.genOverlay();else this.removeOverlay();\n },\n\n value(val) {\n if (this.permanent) return;\n\n if (val == null) {\n this.init();\n return;\n }\n\n if (val !== this.isActive) this.isActive = val;\n },\n\n expandOnHover: 'updateMiniVariant',\n\n isMouseover(val) {\n this.updateMiniVariant(!val);\n }\n\n },\n\n beforeMount() {\n this.init();\n },\n\n methods: {\n calculateTouchArea() {\n const parent = this.$el.parentNode;\n if (!parent) return;\n const parentRect = parent.getBoundingClientRect();\n this.touchArea = {\n left: parentRect.left + 50,\n right: parentRect.right - 50\n };\n },\n\n closeConditional() {\n return this.isActive && !this._isDestroyed && this.reactsToClick;\n },\n\n genAppend() {\n return this.genPosition('append');\n },\n\n genBackground() {\n const props = {\n height: '100%',\n width: '100%',\n src: this.src\n };\n const image = this.$scopedSlots.img ? this.$scopedSlots.img(props) : this.$createElement(VImg, {\n props\n });\n return this.$createElement('div', {\n staticClass: 'v-navigation-drawer__image'\n }, [image]);\n },\n\n genDirectives() {\n const directives = [{\n name: 'click-outside',\n value: {\n handler: () => {\n this.isActive = false;\n },\n closeConditional: this.closeConditional,\n include: this.getOpenDependentElements\n }\n }];\n\n if (!this.touchless && !this.stateless) {\n directives.push({\n name: 'touch',\n value: {\n parent: true,\n left: this.swipeLeft,\n right: this.swipeRight\n }\n });\n }\n\n return directives;\n },\n\n genListeners() {\n const on = {\n mouseenter: () => this.isMouseover = true,\n mouseleave: () => this.isMouseover = false,\n transitionend: e => {\n if (e.target !== e.currentTarget) return;\n this.$emit('transitionend', e); // IE11 does not support new Event('resize')\n\n const resizeEvent = document.createEvent('UIEvents');\n resizeEvent.initUIEvent('resize', true, false, window, 0);\n window.dispatchEvent(resizeEvent);\n }\n };\n\n if (this.miniVariant) {\n on.click = () => this.$emit('update:mini-variant', false);\n }\n\n return on;\n },\n\n genPosition(name) {\n const slot = getSlot(this, name);\n if (!slot) return slot;\n return this.$createElement('div', {\n staticClass: `v-navigation-drawer__${name}`\n }, slot);\n },\n\n genPrepend() {\n return this.genPosition('prepend');\n },\n\n genContent() {\n return this.$createElement('div', {\n staticClass: 'v-navigation-drawer__content'\n }, this.$slots.default);\n },\n\n genBorder() {\n return this.$createElement('div', {\n staticClass: 'v-navigation-drawer__border'\n });\n },\n\n init() {\n if (this.permanent) {\n this.isActive = true;\n } else if (this.stateless || this.value != null) {\n this.isActive = this.value;\n } else if (!this.temporary) {\n this.isActive = !this.isMobile;\n }\n },\n\n onRouteChange() {\n if (this.reactsToRoute && this.closeConditional()) {\n this.isActive = false;\n }\n },\n\n swipeLeft(e) {\n if (this.isActive && this.right) return;\n this.calculateTouchArea();\n if (Math.abs(e.touchendX - e.touchstartX) < 100) return;\n if (this.right && e.touchstartX >= this.touchArea.right) this.isActive = true;else if (!this.right && this.isActive) this.isActive = false;\n },\n\n swipeRight(e) {\n if (this.isActive && !this.right) return;\n this.calculateTouchArea();\n if (Math.abs(e.touchendX - e.touchstartX) < 100) return;\n if (!this.right && e.touchstartX <= this.touchArea.left) this.isActive = true;else if (this.right && this.isActive) this.isActive = false;\n },\n\n /**\n * Update the application layout\n */\n updateApplication() {\n if (!this.isActive || this.isMobile || this.temporary || !this.$el) return 0;\n const width = Number(this.miniVariant ? this.miniVariantWidth : this.width);\n return isNaN(width) ? this.$el.clientWidth : width;\n },\n\n updateMiniVariant(val) {\n if (this.expandOnHover && this.miniVariant !== val) this.$emit('update:mini-variant', val);\n }\n\n },\n\n render(h) {\n const children = [this.genPrepend(), this.genContent(), this.genAppend(), this.genBorder()];\n if (this.src || getSlot(this, 'img')) children.unshift(this.genBackground());\n return h(this.tag, this.setBackgroundColor(this.color, {\n class: this.classes,\n style: this.styles,\n directives: this.genDirectives(),\n on: this.genListeners()\n }), children);\n }\n\n});\n//# sourceMappingURL=VNavigationDrawer.js.map","import { render, staticRenderFns } from \"./Index.vue?vue&type=template&id=1e761bd3&\"\nimport script from \"./Index.vue?vue&type=script&lang=js&\"\nexport * from \"./Index.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 { VAppBarNavIcon } from 'vuetify/lib/components/VAppBar';\nimport { VBtn } from 'vuetify/lib/components/VBtn';\nimport { VIcon } from 'vuetify/lib/components/VIcon';\nimport { VNavigationDrawer } from 'vuetify/lib/components/VNavigationDrawer';\ninstallComponents(component, {VAppBarNavIcon,VBtn,VIcon,VNavigationDrawer})\n","var render = function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('v-card',[_c('v-card-title',{staticClass:\"title primary white--text\"},[_c('v-icon',{attrs:{\"dark\":\"\",\"left\":\"\"}},[_vm._v(\" \"+_vm._s(_vm.$vuetify.icons.values.cronometro)+\" \")]),(_vm.idparte)?_c('div',[_vm._v(\" Cronómetro parte Nº\"+_vm._s(_vm.idparte)+\" \")]):_c('div',[_vm._v(\" Cronómetro iniciado \")])],1),_c('v-card-text',{staticClass:\"pa-2\"},[_c('p',[_vm._v(_vm._s(_vm.para)+\" trabajado \"),_c('strong',[_vm._v(_vm._s(_vm.cuenta))])])]),_c('v-card-actions',[_c('v-spacer'),_c('v-btn',{attrs:{\"color\":\"primary\",\"text\":\"\",\"small\":\"\"},on:{\"click\":function($event){$event.stopPropagation();return _vm.clickCronometroDetener.apply(null, arguments)}}},[_vm._v(\" Detener el cronómetro \")])],1)],1)}\nvar staticRenderFns = []\n\nexport { render, staticRenderFns }","