Files
WrenchBoardIonic2023/.angular/cache/14.2.0/babel-webpack/a317a2731b0779fcb3d1c5e73a63cd78.json
T
CHIEFSOFT\ameye cea49e295a first commit
2023-05-12 22:30:08 -04:00

1 line
17 KiB
JSON

{"ast":null,"code":"/*!\n * (C) Ionic http://ionicframework.com - MIT License\n */\nimport { r as registerInstance, h, H as Host } from './index-1a99aeb7.js';\nimport { c as config, b as getIonMode } from './ionic-global-04e268e7.js';\nimport { c as createColorClasses } from './theme-7670341c.js';\nimport { S as SPINNERS } from './spinner-configs-5d6b6fe7.js';\nconst spinnerCss = \":host{display:inline-block;position:relative;width:28px;height:28px;color:var(--color);-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}:host(.ion-color){color:var(--ion-color-base)}svg{-webkit-transform-origin:center;transform-origin:center;position:absolute;top:0;left:0;width:100%;height:100%;-webkit-transform:translateZ(0);transform:translateZ(0)}[dir=rtl] svg,:host-context([dir=rtl]) svg{-webkit-transform-origin:calc(100% - center);transform-origin:calc(100% - center)}:host(.spinner-lines) line,:host(.spinner-lines-small) line{stroke-width:7px}:host(.spinner-lines-sharp) line,:host(.spinner-lines-sharp-small) line{stroke-width:4px}:host(.spinner-lines) line,:host(.spinner-lines-small) line,:host(.spinner-lines-sharp) line,:host(.spinner-lines-sharp-small) line{stroke-linecap:round;stroke:currentColor}:host(.spinner-lines) svg,:host(.spinner-lines-small) svg,:host(.spinner-lines-sharp) svg,:host(.spinner-lines-sharp-small) svg{-webkit-animation:spinner-fade-out 1s linear infinite;animation:spinner-fade-out 1s linear infinite}:host(.spinner-bubbles) svg{-webkit-animation:spinner-scale-out 1s linear infinite;animation:spinner-scale-out 1s linear infinite;fill:currentColor}:host(.spinner-circles) svg{-webkit-animation:spinner-fade-out 1s linear infinite;animation:spinner-fade-out 1s linear infinite;fill:currentColor}:host(.spinner-crescent) circle{fill:transparent;stroke-width:4px;stroke-dasharray:128px;stroke-dashoffset:82px;stroke:currentColor}:host(.spinner-crescent) svg{-webkit-animation:spinner-rotate 1s linear infinite;animation:spinner-rotate 1s linear infinite}:host(.spinner-dots) circle{stroke-width:0;fill:currentColor}:host(.spinner-dots) svg{-webkit-animation:spinner-dots 1s linear infinite;animation:spinner-dots 1s linear infinite}:host(.spinner-circular) svg{-webkit-animation:spinner-circular linear infinite;animation:spinner-circular linear infinite}:host(.spinner-circular) circle{-webkit-animation:spinner-circular-inner ease-in-out infinite;animation:spinner-circular-inner ease-in-out infinite;stroke:currentColor;stroke-dasharray:80px, 200px;stroke-dashoffset:0px;stroke-width:5.6;fill:none}:host(.spinner-paused),:host(.spinner-paused) svg,:host(.spinner-paused) circle{-webkit-animation-play-state:paused;animation-play-state:paused}@-webkit-keyframes spinner-fade-out{0%{opacity:1}100%{opacity:0}}@keyframes spinner-fade-out{0%{opacity:1}100%{opacity:0}}@-webkit-keyframes spinner-scale-out{0%{-webkit-transform:scale(1, 1);transform:scale(1, 1)}100%{-webkit-transform:scale(0, 0);transform:scale(0, 0)}}@keyframes spinner-scale-out{0%{-webkit-transform:scale(1, 1);transform:scale(1, 1)}100%{-webkit-transform:scale(0, 0);transform:scale(0, 0)}}@-webkit-keyframes spinner-rotate{0%{-webkit-transform:rotate(0deg);transform:rotate(0deg)}100%{-webkit-transform:rotate(360deg);transform:rotate(360deg)}}@keyframes spinner-rotate{0%{-webkit-transform:rotate(0deg);transform:rotate(0deg)}100%{-webkit-transform:rotate(360deg);transform:rotate(360deg)}}@-webkit-keyframes spinner-dots{0%{-webkit-transform:scale(1, 1);transform:scale(1, 1);opacity:0.9}50%{-webkit-transform:scale(0.4, 0.4);transform:scale(0.4, 0.4);opacity:0.3}100%{-webkit-transform:scale(1, 1);transform:scale(1, 1);opacity:0.9}}@keyframes spinner-dots{0%{-webkit-transform:scale(1, 1);transform:scale(1, 1);opacity:0.9}50%{-webkit-transform:scale(0.4, 0.4);transform:scale(0.4, 0.4);opacity:0.3}100%{-webkit-transform:scale(1, 1);transform:scale(1, 1);opacity:0.9}}@-webkit-keyframes spinner-circular{100%{-webkit-transform:rotate(360deg);transform:rotate(360deg)}}@keyframes spinner-circular{100%{-webkit-transform:rotate(360deg);transform:rotate(360deg)}}@-webkit-keyframes spinner-circular-inner{0%{stroke-dasharray:1px, 200px;stroke-dashoffset:0px}50%{stroke-dasharray:100px, 200px;stroke-dashoffset:-15px}100%{stroke-dasharray:100px, 200px;stroke-dashoffset:-125px}}@keyframes spinner-circular-inner{0%{stroke-dasharray:1px, 200px;stroke-dashoffset:0px}50%{stroke-dasharray:100px, 200px;stroke-dashoffset:-15px}100%{stroke-dasharray:100px, 200px;stroke-dashoffset:-125px}}\";\nconst Spinner = class {\n constructor(hostRef) {\n registerInstance(this, hostRef);\n /**\n * If `true`, the spinner's animation will be paused.\n */\n\n this.paused = false;\n }\n\n getName() {\n const spinnerName = this.name || config.get('spinner');\n const mode = getIonMode(this);\n\n if (spinnerName) {\n return spinnerName;\n }\n\n return mode === 'ios' ? 'lines' : 'circular';\n }\n\n render() {\n const self = this;\n const mode = getIonMode(self);\n const spinnerName = self.getName();\n const spinner = SPINNERS[spinnerName] || SPINNERS['lines'];\n const duration = typeof self.duration === 'number' && self.duration > 10 ? self.duration : spinner.dur;\n const svgs = [];\n\n if (spinner.circles !== undefined) {\n for (let i = 0; i < spinner.circles; i++) {\n svgs.push(buildCircle(spinner, duration, i, spinner.circles));\n }\n } else if (spinner.lines !== undefined) {\n for (let i = 0; i < spinner.lines; i++) {\n svgs.push(buildLine(spinner, duration, i, spinner.lines));\n }\n }\n\n return h(Host, {\n class: createColorClasses(self.color, {\n [mode]: true,\n [`spinner-${spinnerName}`]: true,\n 'spinner-paused': self.paused || config.getBoolean('_testing')\n }),\n role: \"progressbar\",\n style: spinner.elmDuration ? {\n animationDuration: duration + 'ms'\n } : {}\n }, svgs);\n }\n\n};\n\nconst buildCircle = (spinner, duration, index, total) => {\n const data = spinner.fn(duration, index, total);\n data.style['animation-duration'] = duration + 'ms';\n return h(\"svg\", {\n viewBox: data.viewBox || '0 0 64 64',\n style: data.style\n }, h(\"circle\", {\n transform: data.transform || 'translate(32,32)',\n cx: data.cx,\n cy: data.cy,\n r: data.r,\n style: spinner.elmDuration ? {\n animationDuration: duration + 'ms'\n } : {}\n }));\n};\n\nconst buildLine = (spinner, duration, index, total) => {\n const data = spinner.fn(duration, index, total);\n data.style['animation-duration'] = duration + 'ms';\n return h(\"svg\", {\n viewBox: data.viewBox || '0 0 64 64',\n style: data.style\n }, h(\"line\", {\n transform: \"translate(32,32)\",\n y1: data.y1,\n y2: data.y2\n }));\n};\n\nSpinner.style = spinnerCss;\nexport { Spinner as ion_spinner };","map":{"version":3,"names":["r","registerInstance","h","H","Host","c","config","b","getIonMode","createColorClasses","S","SPINNERS","spinnerCss","Spinner","constructor","hostRef","paused","getName","spinnerName","name","get","mode","render","self","spinner","duration","dur","svgs","circles","undefined","i","push","buildCircle","lines","buildLine","class","color","getBoolean","role","style","elmDuration","animationDuration","index","total","data","fn","viewBox","transform","cx","cy","y1","y2","ion_spinner"],"sources":["D:/MobileDev/WRB/WrenchBoard2023a/node_modules/@ionic/core/dist/esm/ion-spinner.entry.js"],"sourcesContent":["/*!\n * (C) Ionic http://ionicframework.com - MIT License\n */\nimport { r as registerInstance, h, H as Host } from './index-1a99aeb7.js';\nimport { c as config, b as getIonMode } from './ionic-global-04e268e7.js';\nimport { c as createColorClasses } from './theme-7670341c.js';\nimport { S as SPINNERS } from './spinner-configs-5d6b6fe7.js';\n\nconst spinnerCss = \":host{display:inline-block;position:relative;width:28px;height:28px;color:var(--color);-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}:host(.ion-color){color:var(--ion-color-base)}svg{-webkit-transform-origin:center;transform-origin:center;position:absolute;top:0;left:0;width:100%;height:100%;-webkit-transform:translateZ(0);transform:translateZ(0)}[dir=rtl] svg,:host-context([dir=rtl]) svg{-webkit-transform-origin:calc(100% - center);transform-origin:calc(100% - center)}:host(.spinner-lines) line,:host(.spinner-lines-small) line{stroke-width:7px}:host(.spinner-lines-sharp) line,:host(.spinner-lines-sharp-small) line{stroke-width:4px}:host(.spinner-lines) line,:host(.spinner-lines-small) line,:host(.spinner-lines-sharp) line,:host(.spinner-lines-sharp-small) line{stroke-linecap:round;stroke:currentColor}:host(.spinner-lines) svg,:host(.spinner-lines-small) svg,:host(.spinner-lines-sharp) svg,:host(.spinner-lines-sharp-small) svg{-webkit-animation:spinner-fade-out 1s linear infinite;animation:spinner-fade-out 1s linear infinite}:host(.spinner-bubbles) svg{-webkit-animation:spinner-scale-out 1s linear infinite;animation:spinner-scale-out 1s linear infinite;fill:currentColor}:host(.spinner-circles) svg{-webkit-animation:spinner-fade-out 1s linear infinite;animation:spinner-fade-out 1s linear infinite;fill:currentColor}:host(.spinner-crescent) circle{fill:transparent;stroke-width:4px;stroke-dasharray:128px;stroke-dashoffset:82px;stroke:currentColor}:host(.spinner-crescent) svg{-webkit-animation:spinner-rotate 1s linear infinite;animation:spinner-rotate 1s linear infinite}:host(.spinner-dots) circle{stroke-width:0;fill:currentColor}:host(.spinner-dots) svg{-webkit-animation:spinner-dots 1s linear infinite;animation:spinner-dots 1s linear infinite}:host(.spinner-circular) svg{-webkit-animation:spinner-circular linear infinite;animation:spinner-circular linear infinite}:host(.spinner-circular) circle{-webkit-animation:spinner-circular-inner ease-in-out infinite;animation:spinner-circular-inner ease-in-out infinite;stroke:currentColor;stroke-dasharray:80px, 200px;stroke-dashoffset:0px;stroke-width:5.6;fill:none}:host(.spinner-paused),:host(.spinner-paused) svg,:host(.spinner-paused) circle{-webkit-animation-play-state:paused;animation-play-state:paused}@-webkit-keyframes spinner-fade-out{0%{opacity:1}100%{opacity:0}}@keyframes spinner-fade-out{0%{opacity:1}100%{opacity:0}}@-webkit-keyframes spinner-scale-out{0%{-webkit-transform:scale(1, 1);transform:scale(1, 1)}100%{-webkit-transform:scale(0, 0);transform:scale(0, 0)}}@keyframes spinner-scale-out{0%{-webkit-transform:scale(1, 1);transform:scale(1, 1)}100%{-webkit-transform:scale(0, 0);transform:scale(0, 0)}}@-webkit-keyframes spinner-rotate{0%{-webkit-transform:rotate(0deg);transform:rotate(0deg)}100%{-webkit-transform:rotate(360deg);transform:rotate(360deg)}}@keyframes spinner-rotate{0%{-webkit-transform:rotate(0deg);transform:rotate(0deg)}100%{-webkit-transform:rotate(360deg);transform:rotate(360deg)}}@-webkit-keyframes spinner-dots{0%{-webkit-transform:scale(1, 1);transform:scale(1, 1);opacity:0.9}50%{-webkit-transform:scale(0.4, 0.4);transform:scale(0.4, 0.4);opacity:0.3}100%{-webkit-transform:scale(1, 1);transform:scale(1, 1);opacity:0.9}}@keyframes spinner-dots{0%{-webkit-transform:scale(1, 1);transform:scale(1, 1);opacity:0.9}50%{-webkit-transform:scale(0.4, 0.4);transform:scale(0.4, 0.4);opacity:0.3}100%{-webkit-transform:scale(1, 1);transform:scale(1, 1);opacity:0.9}}@-webkit-keyframes spinner-circular{100%{-webkit-transform:rotate(360deg);transform:rotate(360deg)}}@keyframes spinner-circular{100%{-webkit-transform:rotate(360deg);transform:rotate(360deg)}}@-webkit-keyframes spinner-circular-inner{0%{stroke-dasharray:1px, 200px;stroke-dashoffset:0px}50%{stroke-dasharray:100px, 200px;stroke-dashoffset:-15px}100%{stroke-dasharray:100px, 200px;stroke-dashoffset:-125px}}@keyframes spinner-circular-inner{0%{stroke-dasharray:1px, 200px;stroke-dashoffset:0px}50%{stroke-dasharray:100px, 200px;stroke-dashoffset:-15px}100%{stroke-dasharray:100px, 200px;stroke-dashoffset:-125px}}\";\n\nconst Spinner = class {\n constructor(hostRef) {\n registerInstance(this, hostRef);\n /**\n * If `true`, the spinner's animation will be paused.\n */\n this.paused = false;\n }\n getName() {\n const spinnerName = this.name || config.get('spinner');\n const mode = getIonMode(this);\n if (spinnerName) {\n return spinnerName;\n }\n return mode === 'ios' ? 'lines' : 'circular';\n }\n render() {\n const self = this;\n const mode = getIonMode(self);\n const spinnerName = self.getName();\n const spinner = SPINNERS[spinnerName] || SPINNERS['lines'];\n const duration = typeof self.duration === 'number' && self.duration > 10 ? self.duration : spinner.dur;\n const svgs = [];\n if (spinner.circles !== undefined) {\n for (let i = 0; i < spinner.circles; i++) {\n svgs.push(buildCircle(spinner, duration, i, spinner.circles));\n }\n }\n else if (spinner.lines !== undefined) {\n for (let i = 0; i < spinner.lines; i++) {\n svgs.push(buildLine(spinner, duration, i, spinner.lines));\n }\n }\n return (h(Host, { class: createColorClasses(self.color, {\n [mode]: true,\n [`spinner-${spinnerName}`]: true,\n 'spinner-paused': self.paused || config.getBoolean('_testing'),\n }), role: \"progressbar\", style: spinner.elmDuration ? { animationDuration: duration + 'ms' } : {} }, svgs));\n }\n};\nconst buildCircle = (spinner, duration, index, total) => {\n const data = spinner.fn(duration, index, total);\n data.style['animation-duration'] = duration + 'ms';\n return (h(\"svg\", { viewBox: data.viewBox || '0 0 64 64', style: data.style }, h(\"circle\", { transform: data.transform || 'translate(32,32)', cx: data.cx, cy: data.cy, r: data.r, style: spinner.elmDuration ? { animationDuration: duration + 'ms' } : {} })));\n};\nconst buildLine = (spinner, duration, index, total) => {\n const data = spinner.fn(duration, index, total);\n data.style['animation-duration'] = duration + 'ms';\n return (h(\"svg\", { viewBox: data.viewBox || '0 0 64 64', style: data.style }, h(\"line\", { transform: \"translate(32,32)\", y1: data.y1, y2: data.y2 })));\n};\nSpinner.style = spinnerCss;\n\nexport { Spinner as ion_spinner };\n"],"mappings":"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"},"metadata":{},"sourceType":"module"}