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

1 line
11 KiB
JSON

{"ast":null,"code":"/*!\n * (C) Ionic http://ionicframework.com - MIT License\n */\nconst spinners = {\n bubbles: {\n dur: 1000,\n circles: 9,\n fn: (dur, index, total) => {\n const animationDelay = `${dur * index / total - dur}ms`;\n const angle = 2 * Math.PI * index / total;\n return {\n r: 5,\n style: {\n top: `${9 * Math.sin(angle)}px`,\n left: `${9 * Math.cos(angle)}px`,\n 'animation-delay': animationDelay\n }\n };\n }\n },\n circles: {\n dur: 1000,\n circles: 8,\n fn: (dur, index, total) => {\n const step = index / total;\n const animationDelay = `${dur * step - dur}ms`;\n const angle = 2 * Math.PI * step;\n return {\n r: 5,\n style: {\n top: `${9 * Math.sin(angle)}px`,\n left: `${9 * Math.cos(angle)}px`,\n 'animation-delay': animationDelay\n }\n };\n }\n },\n circular: {\n dur: 1400,\n elmDuration: true,\n circles: 1,\n fn: () => {\n return {\n r: 20,\n cx: 48,\n cy: 48,\n fill: 'none',\n viewBox: '24 24 48 48',\n transform: 'translate(0,0)',\n style: {}\n };\n }\n },\n crescent: {\n dur: 750,\n circles: 1,\n fn: () => {\n return {\n r: 26,\n style: {}\n };\n }\n },\n dots: {\n dur: 750,\n circles: 3,\n fn: (_, index) => {\n const animationDelay = -(110 * index) + 'ms';\n return {\n r: 6,\n style: {\n left: `${9 - 9 * index}px`,\n 'animation-delay': animationDelay\n }\n };\n }\n },\n lines: {\n dur: 1000,\n lines: 8,\n fn: (dur, index, total) => {\n const transform = `rotate(${360 / total * index + (index < total / 2 ? 180 : -180)}deg)`;\n const animationDelay = `${dur * index / total - dur}ms`;\n return {\n y1: 14,\n y2: 26,\n style: {\n transform: transform,\n 'animation-delay': animationDelay\n }\n };\n }\n },\n 'lines-small': {\n dur: 1000,\n lines: 8,\n fn: (dur, index, total) => {\n const transform = `rotate(${360 / total * index + (index < total / 2 ? 180 : -180)}deg)`;\n const animationDelay = `${dur * index / total - dur}ms`;\n return {\n y1: 12,\n y2: 20,\n style: {\n transform: transform,\n 'animation-delay': animationDelay\n }\n };\n }\n },\n 'lines-sharp': {\n dur: 1000,\n lines: 12,\n fn: (dur, index, total) => {\n const transform = `rotate(${30 * index + (index < 6 ? 180 : -180)}deg)`;\n const animationDelay = `${dur * index / total - dur}ms`;\n return {\n y1: 17,\n y2: 29,\n style: {\n transform: transform,\n 'animation-delay': animationDelay\n }\n };\n }\n },\n 'lines-sharp-small': {\n dur: 1000,\n lines: 12,\n fn: (dur, index, total) => {\n const transform = `rotate(${30 * index + (index < 6 ? 180 : -180)}deg)`;\n const animationDelay = `${dur * index / total - dur}ms`;\n return {\n y1: 12,\n y2: 20,\n style: {\n transform: transform,\n 'animation-delay': animationDelay\n }\n };\n }\n }\n};\nconst SPINNERS = spinners;\nexport { SPINNERS as S };","map":{"version":3,"names":["spinners","bubbles","dur","circles","fn","index","total","animationDelay","angle","Math","PI","r","style","top","sin","left","cos","step","circular","elmDuration","cx","cy","fill","viewBox","transform","crescent","dots","_","lines","y1","y2","SPINNERS","S"],"sources":["D:/MobileDev/WRB/WrenchBoard2023a/node_modules/@ionic/core/dist/esm/spinner-configs-5d6b6fe7.js"],"sourcesContent":["/*!\n * (C) Ionic http://ionicframework.com - MIT License\n */\nconst spinners = {\n bubbles: {\n dur: 1000,\n circles: 9,\n fn: (dur, index, total) => {\n const animationDelay = `${(dur * index) / total - dur}ms`;\n const angle = (2 * Math.PI * index) / total;\n return {\n r: 5,\n style: {\n top: `${9 * Math.sin(angle)}px`,\n left: `${9 * Math.cos(angle)}px`,\n 'animation-delay': animationDelay,\n },\n };\n },\n },\n circles: {\n dur: 1000,\n circles: 8,\n fn: (dur, index, total) => {\n const step = index / total;\n const animationDelay = `${dur * step - dur}ms`;\n const angle = 2 * Math.PI * step;\n return {\n r: 5,\n style: {\n top: `${9 * Math.sin(angle)}px`,\n left: `${9 * Math.cos(angle)}px`,\n 'animation-delay': animationDelay,\n },\n };\n },\n },\n circular: {\n dur: 1400,\n elmDuration: true,\n circles: 1,\n fn: () => {\n return {\n r: 20,\n cx: 48,\n cy: 48,\n fill: 'none',\n viewBox: '24 24 48 48',\n transform: 'translate(0,0)',\n style: {},\n };\n },\n },\n crescent: {\n dur: 750,\n circles: 1,\n fn: () => {\n return {\n r: 26,\n style: {},\n };\n },\n },\n dots: {\n dur: 750,\n circles: 3,\n fn: (_, index) => {\n const animationDelay = -(110 * index) + 'ms';\n return {\n r: 6,\n style: {\n left: `${9 - 9 * index}px`,\n 'animation-delay': animationDelay,\n },\n };\n },\n },\n lines: {\n dur: 1000,\n lines: 8,\n fn: (dur, index, total) => {\n const transform = `rotate(${(360 / total) * index + (index < total / 2 ? 180 : -180)}deg)`;\n const animationDelay = `${(dur * index) / total - dur}ms`;\n return {\n y1: 14,\n y2: 26,\n style: {\n transform: transform,\n 'animation-delay': animationDelay,\n },\n };\n },\n },\n 'lines-small': {\n dur: 1000,\n lines: 8,\n fn: (dur, index, total) => {\n const transform = `rotate(${(360 / total) * index + (index < total / 2 ? 180 : -180)}deg)`;\n const animationDelay = `${(dur * index) / total - dur}ms`;\n return {\n y1: 12,\n y2: 20,\n style: {\n transform: transform,\n 'animation-delay': animationDelay,\n },\n };\n },\n },\n 'lines-sharp': {\n dur: 1000,\n lines: 12,\n fn: (dur, index, total) => {\n const transform = `rotate(${30 * index + (index < 6 ? 180 : -180)}deg)`;\n const animationDelay = `${(dur * index) / total - dur}ms`;\n return {\n y1: 17,\n y2: 29,\n style: {\n transform: transform,\n 'animation-delay': animationDelay,\n },\n };\n },\n },\n 'lines-sharp-small': {\n dur: 1000,\n lines: 12,\n fn: (dur, index, total) => {\n const transform = `rotate(${30 * index + (index < 6 ? 180 : -180)}deg)`;\n const animationDelay = `${(dur * index) / total - dur}ms`;\n return {\n y1: 12,\n y2: 20,\n style: {\n transform: transform,\n 'animation-delay': animationDelay,\n },\n };\n },\n },\n};\nconst SPINNERS = spinners;\n\nexport { SPINNERS as S };\n"],"mappings":"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"},"metadata":{},"sourceType":"module"}