{"version":3,"file":"js/93640.f9692790e00bc124.js","mappings":"ypBAGIA,E,MAA0B,GAA4B,KAE1DA,EAAwBC,KAAK,CAACC,EAAOC,GAAI,2CAA4C,GAAG,CAAC,QAAU,EAAE,QAAU,CAAC,sEAAsE,MAAQ,GAAG,SAAW,oBAAoB,eAAiB,CAAC,m4CAAk4C,WAAa,MAEjoD,S,qFCLA,SACEC,WAAY,CACV,mBAAoB,MAEtBC,MAAO,CACLC,cAAe,CACbC,KAAMC,OACN,QAAW,mEAGfC,KAAM,WACJ,MAAO,CACLC,YAAaC,OAAOC,WACpBC,SAAU,CACRC,QAAQ,EACRC,MAAM,EACNC,UAAU,EACVC,aAAc,EACdC,eAAgB,EAChBC,eAAgB,EAChBC,OAAO,EACPC,4BAA4B,GAGlC,EACAC,SAAU,CACRC,SAAU,WACR,OAAOC,KAAKd,YAAc,IAC5B,GAEFe,QAAS,WACPd,OAAOe,iBAAiB,SAAUF,KAAKG,kBACzC,EACAC,QAAS,CACPD,kBAAmB,WACjBH,KAAKd,YAAcC,OAAOC,UAC5B,I,mCCnCAiB,EAAU,CAEdA,OAAiB,OACjBA,WAAoB,GAEP,IAAI,IAASA,GAIX,IAAQC,OCLvB,MAEA,GAFiC,E,SAAA,GAAgB,EAAQ,CAAC,CAAC,SCNpD,SAAgBC,EAAMC,EAAQC,EAAQC,EAAQC,EAAOC,GAC1D,IAAIC,GAA8B,sBAAkB,oBACpD,OAAOD,EAASb,WAAY,kBAAc,iBAAac,GAA6B,qBAAgB,gBAAY,CAC9GC,IAAK,GACJH,EAAMtB,WAAY,CACnB,SAAW,cAAS,WAClB,MAAO,EAAC,gBAAYkB,EAAKQ,OAAQ,WACnC,IACAC,EAAG,GACF,OAAQ,kBAAc,wBAAoB,MAAO,CAClDF,IAAK,EACL,OAAS,oBAAgBL,EAAO3B,gBAC/B,EAAC,gBAAYyB,EAAKQ,OAAQ,YAAa,GAC5C,I","sources":["webpack://lawline/./resources/assets/js/vue/shared/components/Benefits.vue?5b4e","webpack://lawline/./resources/assets/js/vue/shared/components/Benefits.vue","webpack://lawline/./resources/assets/js/vue/shared/components/Benefits.vue?f151","webpack://lawline/./resources/assets/js/vue/shared/components/Benefits.vue?045e","webpack://lawline/./resources/assets/js/vue/shared/components/Benefits.vue?2c9e"],"sourcesContent":["// Imports\nimport ___CSS_LOADER_API_SOURCEMAP_IMPORT___ from \"../../../../../../node_modules/css-loader/dist/runtime/cssWithMappingToString.js\";\nimport ___CSS_LOADER_API_IMPORT___ from \"../../../../../../node_modules/css-loader/dist/runtime/api.js\";\nvar ___CSS_LOADER_EXPORT___ = ___CSS_LOADER_API_IMPORT___(___CSS_LOADER_API_SOURCEMAP_IMPORT___);\n// Module\n___CSS_LOADER_EXPORT___.push([module.id, \".v-slick-slide-group{align-items:center}\", \"\",{\"version\":3,\"sources\":[\"webpack://./resources/assets/js/vue/shared/components/Benefits.vue\"],\"names\":[],\"mappings\":\"AAuDA,qBACI,kBACJ\",\"sourcesContent\":[\"<template>\\n    <v-slick-carousel v-if=\\\"isMobile\\\" v-bind=\\\"settings\\\">\\n        <slot></slot>\\n    </v-slick-carousel>\\n\\n    <div v-else :class=\\\"carouselStyle\\\">\\n        <slot></slot>\\n    </div>\\n</template>\\n\\n<script>\\nimport { VSlickCarousel } from 'v-slick-carousel';\\nimport 'v-slick-carousel/style.css';\\n\\nexport default {\\n    components: {\\n        'v-slick-carousel': VSlickCarousel,\\n    },\\n    props: {\\n        carouselStyle: {\\n            type: String,\\n            default: 'relative sm:-ml-12 lg:flex lg:flex-row lg:flex-wrap lg:ml-auto',\\n        },\\n    },\\n    data() {\\n        return {\\n            windowWidth: window.innerWidth,\\n            settings: {\\n                arrows: false,\\n                dots: true,\\n                infinite: false,\\n                groupsToShow: 1,\\n                groupsToScroll: 1,\\n                slidesPerGroup: 1,\\n                swipe: true,\\n                ignorePrefersReducedMotion: true,\\n            },\\n        };\\n    },\\n    computed: {\\n        isMobile() {\\n            return this.windowWidth < 1024;\\n        },\\n    },\\n    mounted() {\\n        window.addEventListener('resize', this.updateWindowWidth);\\n    },\\n    methods: {\\n        updateWindowWidth() {\\n            this.windowWidth = window.innerWidth;\\n        },\\n    },\\n};\\n</script>\\n<style>\\n.v-slick-slide-group {\\n    align-items: center;\\n}\\n</style>\\n\"],\"sourceRoot\":\"\"}]);\n// Exports\nexport default ___CSS_LOADER_EXPORT___;\n","import { VSlickCarousel } from 'v-slick-carousel';\nimport 'v-slick-carousel/style.css';\nexport default {\n  components: {\n    'v-slick-carousel': VSlickCarousel\n  },\n  props: {\n    carouselStyle: {\n      type: String,\n      \"default\": 'relative sm:-ml-12 lg:flex lg:flex-row lg:flex-wrap lg:ml-auto'\n    }\n  },\n  data: function data() {\n    return {\n      windowWidth: window.innerWidth,\n      settings: {\n        arrows: false,\n        dots: true,\n        infinite: false,\n        groupsToShow: 1,\n        groupsToScroll: 1,\n        slidesPerGroup: 1,\n        swipe: true,\n        ignorePrefersReducedMotion: true\n      }\n    };\n  },\n  computed: {\n    isMobile: function isMobile() {\n      return this.windowWidth < 1024;\n    }\n  },\n  mounted: function mounted() {\n    window.addEventListener('resize', this.updateWindowWidth);\n  },\n  methods: {\n    updateWindowWidth: function updateWindowWidth() {\n      this.windowWidth = window.innerWidth;\n    }\n  }\n};","/* unplugin-vue-components disabled */import api from \"!../../../../../../node_modules/style-loader/dist/runtime/injectStylesIntoStyleTag.js\";\n            import content from \"!!../../../../../../node_modules/css-loader/dist/cjs.js??clonedRuleSet-64.use[1]!../../../../../../node_modules/vue-loader/dist/stylePostLoader.js!../../../../../../node_modules/postcss-loader/dist/cjs.js??clonedRuleSet-64.use[2]!../../../../../../node_modules/vue-loader/dist/index.js??ruleSet[0].use[0]!./Benefits.vue?vue&type=style&index=0&id=745eaf4d&lang=css\";\n\nvar options = {};\n\noptions.insert = \"head\";\noptions.singleton = false;\n\nvar update = api(content, options);\n\n\n\nexport default content.locals || {};","/* unplugin-vue-components disabled */import { render } from \"./Benefits.vue?vue&type=template&id=745eaf4d\"\nimport script from \"./Benefits.vue?vue&type=script&lang=js\"\nexport * from \"./Benefits.vue?vue&type=script&lang=js\"\n\nimport \"./Benefits.vue?vue&type=style&index=0&id=745eaf4d&lang=css\"\n\nimport exportComponent from \"../../../../../../node_modules/vue-loader/dist/exportHelper.js\"\nconst __exports__ = /*#__PURE__*/exportComponent(script, [['render',render]])\n\nexport default __exports__","import { renderSlot as _renderSlot, resolveComponent as _resolveComponent, normalizeProps as _normalizeProps, guardReactiveProps as _guardReactiveProps, withCtx as _withCtx, openBlock as _openBlock, createBlock as _createBlock, mergeProps as _mergeProps, createCommentVNode as _createCommentVNode, normalizeClass as _normalizeClass, createElementBlock as _createElementBlock } from \"vue\";\nexport function render(_ctx, _cache, $props, $setup, $data, $options) {\n  var _component_v_slick_carousel = _resolveComponent(\"v-slick-carousel\");\n  return $options.isMobile ? (_openBlock(), _createBlock(_component_v_slick_carousel, _normalizeProps(_mergeProps({\n    key: 0\n  }, $data.settings)), {\n    \"default\": _withCtx(function () {\n      return [_renderSlot(_ctx.$slots, \"default\")];\n    }),\n    _: 3\n  }, 16)) : (_openBlock(), _createElementBlock(\"div\", {\n    key: 1,\n    \"class\": _normalizeClass($props.carouselStyle)\n  }, [_renderSlot(_ctx.$slots, \"default\")], 2));\n}"],"names":["___CSS_LOADER_EXPORT___","push","module","id","components","props","carouselStyle","type","String","data","windowWidth","window","innerWidth","settings","arrows","dots","infinite","groupsToShow","groupsToScroll","slidesPerGroup","swipe","ignorePrefersReducedMotion","computed","isMobile","this","mounted","addEventListener","updateWindowWidth","methods","options","locals","_ctx","_cache","$props","$setup","$data","$options","_component_v_slick_carousel","key","$slots","_"],"sourceRoot":""}