UNPKG

@ritttzy/vue-brand

Version:

## Project setup ``` npm install ```

599 lines (496 loc) 24.6 kB
/******/ (function() { // webpackBootstrap /******/ var __webpack_modules__ = ({ /***/ 693: /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; __webpack_require__.r(__webpack_exports__); /* harmony import */ var _node_modules_css_loader_dist_runtime_noSourceMaps_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(81); /* harmony import */ var _node_modules_css_loader_dist_runtime_noSourceMaps_js__WEBPACK_IMPORTED_MODULE_0___default = /*#__PURE__*/__webpack_require__.n(_node_modules_css_loader_dist_runtime_noSourceMaps_js__WEBPACK_IMPORTED_MODULE_0__); /* harmony import */ var _node_modules_css_loader_dist_runtime_api_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(645); /* harmony import */ var _node_modules_css_loader_dist_runtime_api_js__WEBPACK_IMPORTED_MODULE_1___default = /*#__PURE__*/__webpack_require__.n(_node_modules_css_loader_dist_runtime_api_js__WEBPACK_IMPORTED_MODULE_1__); // Imports var ___CSS_LOADER_EXPORT___ = _node_modules_css_loader_dist_runtime_api_js__WEBPACK_IMPORTED_MODULE_1___default()((_node_modules_css_loader_dist_runtime_noSourceMaps_js__WEBPACK_IMPORTED_MODULE_0___default())); // Module ___CSS_LOADER_EXPORT___.push([module.id, "#ritttzy-footer{height:25px;width:100%}#ritttzy-footer svg{display:block;padding:0;margin:auto;height:25px}#ritttzy_footer:after{content:\"\";display:table;clear:both}.ritttzy-footer-fixed{position:fixed;bottom:0;left:0}.ritttzy-footer-default>div{background-color:#d64644}.ritttzy-footer-default .ritttzy-footer-color{fill:#fff}", ""]); // Exports /* harmony default export */ __webpack_exports__["default"] = (___CSS_LOADER_EXPORT___); /***/ }), /***/ 645: /***/ (function(module) { "use strict"; /* MIT License http://www.opensource.org/licenses/mit-license.php Author Tobias Koppers @sokra */ module.exports = function (cssWithMappingToString) { var list = []; // return the list of modules as css string list.toString = function toString() { return this.map(function (item) { var content = ""; var needLayer = typeof item[5] !== "undefined"; if (item[4]) { content += "@supports (".concat(item[4], ") {"); } if (item[2]) { content += "@media ".concat(item[2], " {"); } if (needLayer) { content += "@layer".concat(item[5].length > 0 ? " ".concat(item[5]) : "", " {"); } content += cssWithMappingToString(item); if (needLayer) { content += "}"; } if (item[2]) { content += "}"; } if (item[4]) { content += "}"; } return content; }).join(""); }; // import a list of modules into the list list.i = function i(modules, media, dedupe, supports, layer) { if (typeof modules === "string") { modules = [[null, modules, undefined]]; } var alreadyImportedModules = {}; if (dedupe) { for (var k = 0; k < this.length; k++) { var id = this[k][0]; if (id != null) { alreadyImportedModules[id] = true; } } } for (var _k = 0; _k < modules.length; _k++) { var item = [].concat(modules[_k]); if (dedupe && alreadyImportedModules[item[0]]) { continue; } if (typeof layer !== "undefined") { if (typeof item[5] === "undefined") { item[5] = layer; } else { item[1] = "@layer".concat(item[5].length > 0 ? " ".concat(item[5]) : "", " {").concat(item[1], "}"); item[5] = layer; } } if (media) { if (!item[2]) { item[2] = media; } else { item[1] = "@media ".concat(item[2], " {").concat(item[1], "}"); item[2] = media; } } if (supports) { if (!item[4]) { item[4] = "".concat(supports); } else { item[1] = "@supports (".concat(item[4], ") {").concat(item[1], "}"); item[4] = supports; } } list.push(item); } }; return list; }; /***/ }), /***/ 81: /***/ (function(module) { "use strict"; module.exports = function (i) { return i[1]; }; /***/ }), /***/ 742: /***/ (function(module, __unused_webpack_exports, __webpack_require__) { // style-loader: Adds some css to the DOM by adding a <style> tag // load the styles var content = __webpack_require__(693); if(content.__esModule) content = content.default; if(typeof content === 'string') content = [[module.id, content, '']]; if(content.locals) module.exports = content.locals; // add the styles to the DOM var add = (__webpack_require__(37)/* ["default"] */ .Z) var update = add("055dc94a", content, true, {"sourceMap":false,"shadowMode":false}); /***/ }), /***/ 37: /***/ (function(__unused_webpack_module, __webpack_exports__, __webpack_require__) { "use strict"; // EXPORTS __webpack_require__.d(__webpack_exports__, { "Z": function() { return /* binding */ addStylesClient; } }); ;// CONCATENATED MODULE: ./node_modules/vue-style-loader/lib/listToStyles.js /** * Translates the list format produced by css-loader into something * easier to manipulate. */ function listToStyles(parentId, list) { var styles = []; var newStyles = {}; for (var i = 0; i < list.length; i++) { var item = list[i]; var id = item[0]; var css = item[1]; var media = item[2]; var sourceMap = item[3]; var part = { id: parentId + ':' + i, css: css, media: media, sourceMap: sourceMap }; if (!newStyles[id]) { styles.push(newStyles[id] = { id: id, parts: [part] }); } else { newStyles[id].parts.push(part); } } return styles; } ;// CONCATENATED MODULE: ./node_modules/vue-style-loader/lib/addStylesClient.js /* MIT License http://www.opensource.org/licenses/mit-license.php Author Tobias Koppers @sokra Modified by Evan You @yyx990803 */ var hasDocument = typeof document !== 'undefined' if (typeof DEBUG !== 'undefined' && DEBUG) { if (!hasDocument) { throw new Error( 'vue-style-loader cannot be used in a non-browser environment. ' + "Use { target: 'node' } in your Webpack config to indicate a server-rendering environment." ) } } /* type StyleObject = { id: number; parts: Array<StyleObjectPart> } type StyleObjectPart = { css: string; media: string; sourceMap: ?string } */ var stylesInDom = {/* [id: number]: { id: number, refs: number, parts: Array<(obj?: StyleObjectPart) => void> } */} var head = hasDocument && (document.head || document.getElementsByTagName('head')[0]) var singletonElement = null var singletonCounter = 0 var isProduction = false var noop = function () {} var options = null var ssrIdKey = 'data-vue-ssr-id' // Force single-tag solution on IE6-9, which has a hard limit on the # of <style> // tags it will allow on a page var isOldIE = typeof navigator !== 'undefined' && /msie [6-9]\b/.test(navigator.userAgent.toLowerCase()) function addStylesClient (parentId, list, _isProduction, _options) { isProduction = _isProduction options = _options || {} var styles = listToStyles(parentId, list) addStylesToDom(styles) return function update (newList) { var mayRemove = [] for (var i = 0; i < styles.length; i++) { var item = styles[i] var domStyle = stylesInDom[item.id] domStyle.refs-- mayRemove.push(domStyle) } if (newList) { styles = listToStyles(parentId, newList) addStylesToDom(styles) } else { styles = [] } for (var i = 0; i < mayRemove.length; i++) { var domStyle = mayRemove[i] if (domStyle.refs === 0) { for (var j = 0; j < domStyle.parts.length; j++) { domStyle.parts[j]() } delete stylesInDom[domStyle.id] } } } } function addStylesToDom (styles /* Array<StyleObject> */) { for (var i = 0; i < styles.length; i++) { var item = styles[i] var domStyle = stylesInDom[item.id] if (domStyle) { domStyle.refs++ for (var j = 0; j < domStyle.parts.length; j++) { domStyle.parts[j](item.parts[j]) } for (; j < item.parts.length; j++) { domStyle.parts.push(addStyle(item.parts[j])) } if (domStyle.parts.length > item.parts.length) { domStyle.parts.length = item.parts.length } } else { var parts = [] for (var j = 0; j < item.parts.length; j++) { parts.push(addStyle(item.parts[j])) } stylesInDom[item.id] = { id: item.id, refs: 1, parts: parts } } } } function createStyleElement () { var styleElement = document.createElement('style') styleElement.type = 'text/css' head.appendChild(styleElement) return styleElement } function addStyle (obj /* StyleObjectPart */) { var update, remove var styleElement = document.querySelector('style[' + ssrIdKey + '~="' + obj.id + '"]') if (styleElement) { if (isProduction) { // has SSR styles and in production mode. // simply do nothing. return noop } else { // has SSR styles but in dev mode. // for some reason Chrome can't handle source map in server-rendered // style tags - source maps in <style> only works if the style tag is // created and inserted dynamically. So we remove the server rendered // styles and inject new ones. styleElement.parentNode.removeChild(styleElement) } } if (isOldIE) { // use singleton mode for IE9. var styleIndex = singletonCounter++ styleElement = singletonElement || (singletonElement = createStyleElement()) update = applyToSingletonTag.bind(null, styleElement, styleIndex, false) remove = applyToSingletonTag.bind(null, styleElement, styleIndex, true) } else { // use multi-style-tag mode in all other cases styleElement = createStyleElement() update = applyToTag.bind(null, styleElement) remove = function () { styleElement.parentNode.removeChild(styleElement) } } update(obj) return function updateStyle (newObj /* StyleObjectPart */) { if (newObj) { if (newObj.css === obj.css && newObj.media === obj.media && newObj.sourceMap === obj.sourceMap) { return } update(obj = newObj) } else { remove() } } } var replaceText = (function () { var textStore = [] return function (index, replacement) { textStore[index] = replacement return textStore.filter(Boolean).join('\n') } })() function applyToSingletonTag (styleElement, index, remove, obj) { var css = remove ? '' : obj.css if (styleElement.styleSheet) { styleElement.styleSheet.cssText = replaceText(index, css) } else { var cssNode = document.createTextNode(css) var childNodes = styleElement.childNodes if (childNodes[index]) styleElement.removeChild(childNodes[index]) if (childNodes.length) { styleElement.insertBefore(cssNode, childNodes[index]) } else { styleElement.appendChild(cssNode) } } } function applyToTag (styleElement, obj) { var css = obj.css var media = obj.media var sourceMap = obj.sourceMap if (media) { styleElement.setAttribute('media', media) } if (options.ssrId) { styleElement.setAttribute(ssrIdKey, obj.id) } if (sourceMap) { // https://developer.chrome.com/devtools/docs/javascript-debugging // this makes source maps inside style tags work properly in Chrome css += '\n/*# sourceURL=' + sourceMap.sources[0] + ' */' // http://stackoverflow.com/a/26603875 css += '\n/*# sourceMappingURL=data:application/json;base64,' + btoa(unescape(encodeURIComponent(JSON.stringify(sourceMap)))) + ' */' } if (styleElement.styleSheet) { styleElement.styleSheet.cssText = css } else { while (styleElement.firstChild) { styleElement.removeChild(styleElement.firstChild) } styleElement.appendChild(document.createTextNode(css)) } } /***/ }) /******/ }); /************************************************************************/ /******/ // The module cache /******/ var __webpack_module_cache__ = {}; /******/ /******/ // The require function /******/ function __webpack_require__(moduleId) { /******/ // Check if module is in cache /******/ var cachedModule = __webpack_module_cache__[moduleId]; /******/ if (cachedModule !== undefined) { /******/ return cachedModule.exports; /******/ } /******/ // Create a new module (and put it into the cache) /******/ var module = __webpack_module_cache__[moduleId] = { /******/ id: moduleId, /******/ // no module.loaded needed /******/ exports: {} /******/ }; /******/ /******/ // Execute the module function /******/ __webpack_modules__[moduleId](module, module.exports, __webpack_require__); /******/ /******/ // Return the exports of the module /******/ return module.exports; /******/ } /******/ /************************************************************************/ /******/ /* webpack/runtime/compat get default export */ /******/ !function() { /******/ // getDefaultExport function for compatibility with non-harmony modules /******/ __webpack_require__.n = function(module) { /******/ var getter = module && module.__esModule ? /******/ function() { return module['default']; } : /******/ function() { return module; }; /******/ __webpack_require__.d(getter, { a: getter }); /******/ return getter; /******/ }; /******/ }(); /******/ /******/ /* webpack/runtime/define property getters */ /******/ !function() { /******/ // define getter functions for harmony exports /******/ __webpack_require__.d = function(exports, definition) { /******/ for(var key in definition) { /******/ if(__webpack_require__.o(definition, key) && !__webpack_require__.o(exports, key)) { /******/ Object.defineProperty(exports, key, { enumerable: true, get: definition[key] }); /******/ } /******/ } /******/ }; /******/ }(); /******/ /******/ /* webpack/runtime/hasOwnProperty shorthand */ /******/ !function() { /******/ __webpack_require__.o = function(obj, prop) { return Object.prototype.hasOwnProperty.call(obj, prop); } /******/ }(); /******/ /******/ /* webpack/runtime/make namespace object */ /******/ !function() { /******/ // define __esModule on exports /******/ __webpack_require__.r = function(exports) { /******/ if(typeof Symbol !== 'undefined' && Symbol.toStringTag) { /******/ Object.defineProperty(exports, Symbol.toStringTag, { value: 'Module' }); /******/ } /******/ Object.defineProperty(exports, '__esModule', { value: true }); /******/ }; /******/ }(); /******/ /******/ /* webpack/runtime/publicPath */ /******/ !function() { /******/ __webpack_require__.p = ""; /******/ }(); /******/ /************************************************************************/ var __webpack_exports__ = {}; // This entry need to be wrapped in an IIFE because it need to be in strict mode. !function() { "use strict"; // ESM COMPAT FLAG __webpack_require__.r(__webpack_exports__); // EXPORTS __webpack_require__.d(__webpack_exports__, { "RitttzyFooter": function() { return /* reexport */ RitttzyFooter; } }); ;// CONCATENATED MODULE: ./node_modules/@vue/cli-service/lib/commands/build/setPublicPath.js /* eslint-disable no-var */ // This file is imported into lib/wc client bundles. if (typeof window !== 'undefined') { var currentScript = window.document.currentScript if (false) { var getCurrentScript; } var src = currentScript && currentScript.src.match(/(.+\/)[^/]+\.js(\?.*)?$/) if (src) { __webpack_require__.p = src[1] // eslint-disable-line } } // Indicate to webpack that this file can be concatenated /* harmony default export */ var setPublicPath = (null); ;// CONCATENATED MODULE: external {"commonjs":"vue","commonjs2":"vue","root":"Vue"} var external_commonjs_vue_commonjs2_vue_root_Vue_namespaceObject = require("vue"); ;// CONCATENATED MODULE: ./node_modules/thread-loader/dist/cjs.js!./node_modules/babel-loader/lib/index.js!./node_modules/ts-loader/index.js??clonedRuleSet-41.use[2]!./node_modules/vue-loader/dist/index.js??ruleSet[0].use[0]!./src/components/RitttzyFooter.vue?vue&type=script&setup=true&lang=ts const _hoisted_1 = /*#__PURE__*/(0,external_commonjs_vue_commonjs2_vue_root_Vue_namespaceObject.createStaticVNode)("<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 499.53 68.49\"><path class=\"ritttzy-footer-color\" d=\"M0,14.45H5.81v15H12v-15h5.81v37H12V34.77H5.81V51.4H0Z\"></path><path class=\"ritttzy-footer-color\" d=\"M22.17,14.45H38v5.28H28v9.76h8v5.28H28V46.12H38V51.4H22.17Z\"></path><path class=\"ritttzy-footer-color\" d=\"M43.15,49.55A9.52,9.52,0,0,1,41,42.85V23a9.52,9.52,0,0,1,2.19-6.7,8.24,8.24,0,0,1,6.36-2.38,8.24,8.24,0,0,1,6.36,2.38A9.52,9.52,0,0,1,58.06,23v3.91H52.57V22.63c0-2.28-1-3.43-2.9-3.43s-2.91,1.15-2.91,3.43V43.27q0,3.38,2.91,3.38t2.9-3.38V37.62h5.49v5.23a9.52,9.52,0,0,1-2.19,6.7,8.2,8.2,0,0,1-6.36,2.38A8.2,8.2,0,0,1,43.15,49.55Z\"></path><path class=\"ritttzy-footer-color\" d=\"M61.54,14.45h5.81v15h6.23v-15h5.8v37h-5.8V34.77H67.35V51.4H61.54Z\"></path><path class=\"ritttzy-footer-color\" d=\"M85.56,49.5c-1.52-1.62-2.27-3.91-2.27-6.86V23.21c0-2.95.75-5.24,2.27-6.86a8.5,8.5,0,0,1,6.54-2.43,8.54,8.54,0,0,1,6.55,2.43,9.69,9.69,0,0,1,2.27,6.86V42.64a9.69,9.69,0,0,1-2.27,6.86,8.54,8.54,0,0,1-6.55,2.43A8.5,8.5,0,0,1,85.56,49.5ZM95.11,43V22.84c0-2.42-1-3.64-3-3.64s-3,1.22-3,3.64V43c0,2.43,1,3.64,3,3.64S95.11,45.44,95.11,43Z\"></path><path class=\"ritttzy-footer-color\" d=\"M115.09,49.55a9.52,9.52,0,0,1-2.19-6.7V23a9.52,9.52,0,0,1,2.19-6.7,9.69,9.69,0,0,1,12.72,0A9.52,9.52,0,0,1,130,23v3.91h-5.49V22.63c0-2.28-1-3.43-2.9-3.43s-2.91,1.15-2.91,3.43V43.27q0,3.38,2.91,3.38t2.9-3.38V37.62H130v5.23a9.52,9.52,0,0,1-2.19,6.7,9.69,9.69,0,0,1-12.72,0Z\"></path><path class=\"ritttzy-footer-color\" d=\"M135.43,49.5a9.69,9.69,0,0,1-2.27-6.86V23.21a9.69,9.69,0,0,1,2.27-6.86,10,10,0,0,1,13.09,0c1.52,1.62,2.27,3.91,2.27,6.86V42.64c0,3-.75,5.24-2.27,6.86a10,10,0,0,1-13.09,0ZM145,43V22.84c0-2.42-1-3.64-3-3.64s-3,1.22-3,3.64V43q0,3.65,3,3.64C144,46.65,145,45.44,145,43Z\"></path><path class=\"ritttzy-footer-color\" d=\"M154.7,14.45H162l5.65,22.12h.11V14.45h5.17v37h-6l-7-27h-.11v27H154.7Z\"></path><path class=\"ritttzy-footer-color\" d=\"M231.76,14.45h8.55q4.33,0,6.49,2.33t2.17,6.8v3.65q0,4.48-2.17,6.8t-6.49,2.33h-2.74v15h-5.81Zm8.55,16.63a2.76,2.76,0,0,0,2.14-.79,4,4,0,0,0,.71-2.7V23.21a4,4,0,0,0-.71-2.69,2.72,2.72,0,0,0-2.14-.79h-2.74V31.08Z\"></path><path class=\"ritttzy-footer-color\" d=\"M254,49.5a9.69,9.69,0,0,1-2.27-6.86V23.21A9.69,9.69,0,0,1,254,16.35a10,10,0,0,1,13.09,0,9.69,9.69,0,0,1,2.27,6.86V42.64a9.69,9.69,0,0,1-2.27,6.86,10,10,0,0,1-13.09,0ZM263.54,43V22.84c0-2.42-1-3.64-3-3.64s-3,1.22-3,3.64V43q0,3.65,3,3.64C262.53,46.65,263.54,45.44,263.54,43Z\"></path><path class=\"ritttzy-footer-color\" d=\"M273.25,14.45h8.6q4.48,0,6.55,2.09T290.45,23v2.27c0,3.84-1.26,6.26-3.8,7.28v.11a4.52,4.52,0,0,1,3,2.59,13,13,0,0,1,.87,5.22v6.49a25.11,25.11,0,0,0,.1,2.56,6.46,6.46,0,0,0,.53,1.93h-5.91a8.5,8.5,0,0,1-.42-1.69,25.23,25.23,0,0,1-.11-2.85V40.1a5.68,5.68,0,0,0-.82-3.53,3.44,3.44,0,0,0-2.82-1h-2V51.4h-5.8Zm7.91,15.84a3.48,3.48,0,0,0,2.62-.9,4.25,4.25,0,0,0,.87-3V23.53a4.71,4.71,0,0,0-.71-2.9,2.71,2.71,0,0,0-2.25-.9h-2.64V30.29Z\"></path><path id=\"corazon\" class=\"ritttzy-footer-color\" d=\"M225.28,21.57c-4-12.71-16.59-11.76-21.15-2.1C199.57,9.81,187,8.86,183,21.57c-5.13,16.27,19.19,33,21.15,34.28C206.09,54.53,230.4,37.84,225.28,21.57Z\"></path><path class=\"ritttzy-footer-color\" d=\"M306.82,38.87v-5c0-5.2-.1-7.61-.28-11.39l-6.67-.85V18.11l15.81-6,1.52,1,1,11.71v14c0,5.86.09,15.6.28,19.85H306.54C306.72,54.47,306.82,44.73,306.82,38.87Zm-6.19,16L310.34,53h6L326,54.86v3.86h-25.4Zm12.16-28.61H319l-1.8,1.63c2.33-10.22,8.51-15.75,14.12-15.75,3.44,0,6.52,1.81,7.48,5.12-.1,4.69-2.33,7.32-6.11,7.32-2.52,0-4.52-1.13-6.5-3.35l-2.66-2.9,4.21.23c-4.61,2.75-8,7.62-9.7,14.06l-5.29-.34Z\"></path><path class=\"ritttzy-footer-color\" d=\"M334.54,68.49c.18-4.14.28-13.62.28-19.33V44.8c0-5.06-.1-7.91-.28-11.59l-6.6-.83V29l6.58-2.3,10.05-3.52,1.48.95L345.78,37V49.16c0,5.71.09,15.19.27,19.33Z\"></path><polygon class=\"ritttzy-footer-color\" points=\"351.49 64.73 351.49 68.49 328.66 68.49 328.66 64.73 337.97 62.89 342.42 62.89 351.49 64.73\"></polygon><path class=\"ritttzy-footer-color\" d=\"M334.62,6.58c0-3.91,3.07-6.58,6.95-6.58s6.95,2.67,6.95,6.58-3.07,6.57-6.95,6.57S334.62,10.42,334.62,6.58Z\"></path><path class=\"ritttzy-footer-color\" d=\"M483.29,57.32a3.49,3.49,0,1,1,3.48,3.29A3.3,3.3,0,0,1,483.29,57.32Z\"></path><path class=\"ritttzy-footer-color\" d=\"M366.37,53.93c1.86,0,3.53-.76,5.62-2.3L374.17,54c-2.37,3.82-6.41,6-12.09,6-7.37,0-11.8-3.52-11.8-11.62,0-2.71.09-4.91.09-8.5V20.22h-6.82V15.48L354.7,14l-4.5,3.38,4.32-15.49h7.4l-.47,16.35V47.39C361.45,51.94,363.44,53.93,366.37,53.93Zm6.23-39.27v5.56H356V14.66Z\"></path><path class=\"ritttzy-footer-color\" d=\"M392.1,53.93c1.85,0,3.52-.76,5.61-2.3L399.9,54c-2.37,3.82-6.42,6-12.1,6C380.44,60,376,56.5,376,48.4c0-2.71.09-4.91.09-8.5V20.22h-6.82l3.1-5.56,8-.62-4.49,3.38,4.31-15.49h7.4l-.46,16.35V47.39C387.18,51.94,389.17,53.93,392.1,53.93Zm6.23-39.27v5.56H381.67V14.66Z\"></path><path class=\"ritttzy-footer-color\" d=\"M462.87,14.69v3.39l-27,40.68V54.69h23.85l-5.47,4.07L458,43.55l5.13,0V58.76H425.71V55.34l27.47-40.65v4H431l4.73-4-3.55,13.8-5.2,0V14.69Z\"></path><path class=\"ritttzy-footer-color\" d=\"M461.73,62c.56-2.62,2.88-3.88,5.41-3.88,1.91,0,3.82.62,5.78,3l2.25,2.78-2.78,1.41-2.09-1.41c4.14-2.23,7.07-6.71,8.84-11.69l3.05-8.69,10.33-28.86h4.34l-13.8,36.06c-4.25,11.15-7.91,16.38-14.27,16.38C465.08,67.13,461.87,65,461.73,62Zm6.88-43.32-6.85-1.12V14.69h19v2.88l-7.59,1.1Zm11.46,35L464,14.69h9.68L484.27,43.6Zm12.37-35-6.87-1.09V14.69h14v2.86l-5.67,1.09Z\"></path><path class=\"ritttzy-footer-color\" d=\"M417.82,53.93c1.86,0,3.53-.76,5.62-2.3L425.62,54c-2.37,3.82-6.41,6-12.09,6-7.37,0-11.8-3.52-11.8-11.62,0-2.71.09-4.91.09-8.5V20.22H395l3.1-5.56,8-.62-4.5,3.38L406,1.93h7.4l-.47,16.35V47.39C412.9,51.94,414.89,53.93,417.82,53.93Zm6.23-39.27v5.56H407.4V14.66Z\"></path></svg>", 1); const _hoisted_2 = [_hoisted_1]; /* harmony default export */ var RitttzyFootervue_type_script_setup_true_lang_ts = (/*#__PURE__*/(0,external_commonjs_vue_commonjs2_vue_root_Vue_namespaceObject.defineComponent)({ props: { fixed: { type: Boolean, default: false }, custom: { type: Boolean, default: false } }, setup(__props) { return (_ctx, _cache) => { return (0,external_commonjs_vue_commonjs2_vue_root_Vue_namespaceObject.openBlock)(), (0,external_commonjs_vue_commonjs2_vue_root_Vue_namespaceObject.createElementBlock)("a", { href: "https://ritttzy.com", class: (0,external_commonjs_vue_commonjs2_vue_root_Vue_namespaceObject.normalizeClass)({ 'ritttzy-footer-default': !__props.custom }) }, [(0,external_commonjs_vue_commonjs2_vue_root_Vue_namespaceObject.createElementVNode)("div", { id: "ritttzy-footer", class: (0,external_commonjs_vue_commonjs2_vue_root_Vue_namespaceObject.normalizeClass)({ 'ritttzy-footer-fixed': __props.fixed }) }, _hoisted_2, 2)], 2); }; } })); ;// CONCATENATED MODULE: ./src/components/RitttzyFooter.vue?vue&type=script&setup=true&lang=ts // EXTERNAL MODULE: ./node_modules/vue-style-loader/index.js??clonedRuleSet-22.use[0]!./node_modules/css-loader/dist/cjs.js??clonedRuleSet-22.use[1]!./node_modules/vue-loader/dist/stylePostLoader.js!./node_modules/postcss-loader/dist/cjs.js??clonedRuleSet-22.use[2]!./node_modules/postcss-loader/dist/cjs.js??clonedRuleSet-22.use[3]!./node_modules/sass-loader/dist/cjs.js??clonedRuleSet-22.use[4]!./node_modules/vue-loader/dist/index.js??ruleSet[0].use[0]!./src/components/RitttzyFooter.vue?vue&type=style&index=0&id=d114f0ce&lang=scss var RitttzyFootervue_type_style_index_0_id_d114f0ce_lang_scss = __webpack_require__(742); ;// CONCATENATED MODULE: ./src/components/RitttzyFooter.vue?vue&type=style&index=0&id=d114f0ce&lang=scss ;// CONCATENATED MODULE: ./src/components/RitttzyFooter.vue ; const __exports__ = RitttzyFootervue_type_script_setup_true_lang_ts; /* harmony default export */ var RitttzyFooter = (__exports__); ;// CONCATENATED MODULE: ./src/index.ts ;// CONCATENATED MODULE: ./node_modules/@vue/cli-service/lib/commands/build/entry-lib-no-default.js }(); module.exports = __webpack_exports__; /******/ })() ; //# sourceMappingURL=ritttzy-vue-brand.common.js.map