lotus / node_modules /.cache /babel-loader /1f6e781a030a735abf1cd713bf874195.json
k-l-lambda's picture
updated node_modules
4cadbaf
{"remainingRequest":"/home/camus/work/lotus/node_modules/babel-loader/lib/index.js!/home/camus/work/lotus/node_modules/cache-loader/dist/cjs.js??ref--1-0!/home/camus/work/lotus/node_modules/vue-loader/lib/index.js??vue-loader-options!/home/camus/work/lotus/app/components/sheet-signs.vue?vue&type=script&lang=js","dependencies":[{"path":"/home/camus/work/lotus/app/components/sheet-signs.vue","mtime":1732184473651},{"path":"/home/camus/work/lotus/node_modules/cache-loader/dist/cjs.js","mtime":1719800821084},{"path":"/home/camus/work/lotus/node_modules/babel-loader/lib/index.js","mtime":1727163989637},{"path":"/home/camus/work/lotus/node_modules/cache-loader/dist/cjs.js","mtime":1719800821084},{"path":"/home/camus/work/lotus/node_modules/vue-loader/lib/index.js","mtime":1719800840033}],"contextDependencies":[],"result":[{"type":"Buffer","data":"base64:aW1wb3J0IHsgZ2x5cGggfSBmcm9tICIuLi8uLi9pbmMvc3RhZmZTdmciOwpleHBvcnQgZGVmYXVsdCB7CiAgbmFtZTogInNoZWV0LXNpZ25zIiwKICBwcm9wczogewogICAgaGFzaFRhYmxlOiBPYmplY3QsCiAgICBlbmFibGVkRm9udDogQm9vbGVhbgogIH0sCiAgY29tcHV0ZWQ6IHsKICAgIHNpZ25zKCkgewogICAgICBpZiAoIXRoaXMuaGFzaFRhYmxlKSByZXR1cm4gW107CiAgICAgIHJldHVybiBPYmplY3QuZW50cmllcyh0aGlzLmhhc2hUYWJsZSkubWFwKChbaWQsIGRlZl0pID0+ICh7CiAgICAgICAgaWQsCiAgICAgICAgZGVmLAogICAgICAgIGdseXBoOiB0aGlzLmVuYWJsZWRGb250ID8gZ2x5cGguZ2x5cGhIYXNoW2lkXSAmJiBnbHlwaC5HbHlwaFVuaWNvZGVbZ2x5cGguZ2x5cGhIYXNoW2lkXV0gOiBudWxsCiAgICAgIH0pKTsKICAgIH0KICB9Cn07"},{"version":3,"names":["glyph","name","props","hashTable","Object","enabledFont","Boolean","computed","signs","entries","map","id","def","glyphHash","GlyphUnicode"],"sources":["app/components/sheet-signs.vue"],"sourcesContent":["<template>\n\t<svg class=\"sheet-signs\"\n\t\txmlns=\"http://www.w3.org/2000/svg\"\n\t>\n\t\t<defs>\n\t\t\t<g class=\"sign\" v-for=\"sign of signs\" :key=\"sign.id\" :id=\"`sign-${sign.id}`\"\n\t\t\t\t:transform=\"sign.def.scale && !sign.glyph && `scale(${sign.def.scale.x}, ${sign.def.scale.y})`\"\n\t\t\t>\n\t\t\t\t<text v-if=\"sign.glyph\" class=\"font-char\" text-anchor=\"start\" v-html=\"sign.glyph\"></text>\n\t\t\t\t<path v-if=\"sign.def.type === 'path' && !sign.glyph\" :d=\"sign.def.d\" :stroke-width=\"sign.def['stroke-width']\" />\n\t\t\t\t<rect v-if=\"sign.def.type === 'rect'\"\n\t\t\t\t\t:x=\"sign.def.width >= 0 ? 0 : sign.def.width\"\n\t\t\t\t\t:y=\"sign.def.height >= 0 ? 0 : sign.def.height\"\n\t\t\t\t\t:width=\"Math.abs(sign.def.width)\"\n\t\t\t\t\t:height=\"Math.abs(sign.def.height)\"\n\t\t\t\t/>\n\t\t\t\t<line v-if=\"sign.def.type === 'line'\"\n\t\t\t\t\tx1=\"0\" y1=\"0\"\n\t\t\t\t\t:x2=\"sign.def.width\"\n\t\t\t\t\t:y2=\"sign.def.height\"\n\t\t\t\t\t:stroke-width=\"sign.def['stroke-width']\"\n\t\t\t\t\t:stroke-dasharray=\"sign.def['stroke-dasharray']\"\n\t\t\t\t/>\n\t\t\t\t<polygon v-if=\"sign.def.type === 'polygon'\"\n\t\t\t\t\t:points=\"sign.def.points\"\n\t\t\t\t\t:stroke-width=\"sign.def['stroke-width']\"\n\t\t\t\t/>\n\t\t\t\t<text v-if=\"sign.def.type === 'text'\"\n\t\t\t\t\t:font-size=\"sign.def['font-size']\"\n\t\t\t\t\t:font-weight=\"sign.def['font-weight']\"\n\t\t\t\t\t:font-style=\"sign.def['font-style']\"\n\t\t\t\t\t:text-anchor=\"sign.def['text-anchor']\"\n\t\t\t\t\t:fill=\"sign.def.color\"\n\t\t\t\t>\n\t\t\t\t\t<tspan>{{sign.def.text}}</tspan>\n\t\t\t\t</text>\n\t\t\t</g>\n\t\t</defs>\n\t</svg>\n</template>\n\n<script>\n\timport {glyph} from \"../../inc/staffSvg\";\n\n\n\n\texport default {\n\t\tname: \"sheet-signs\",\n\n\n\t\tprops: {\n\t\t\thashTable: Object,\n\t\t\tenabledFont: Boolean,\n\t\t},\n\n\n\t\tcomputed: {\n\t\t\tsigns () {\n\t\t\t\tif (!this.hashTable)\n\t\t\t\t\treturn [];\n\n\t\t\t\treturn Object.entries(this.hashTable).map(([id, def]) => ({\n\t\t\t\t\tid, def,\n\t\t\t\t\tglyph: this.enabledFont ? (glyph.glyphHash[id] && glyph.GlyphUnicode[glyph.glyphHash[id]]) : null,\n\t\t\t\t}));\n\t\t\t},\n\t\t},\n\t};\n</script>\n\n<style lang=\"scss\" scoped>\n\t.sign \n\t{\n\t\tline, polygon\n\t\t{\n\t\t\tstroke: inherit;\n\t\t}\n\n\t\tpolygon, rect\n\t\t{\n\t\t\tfill: inherit;\n\t\t}\n\n\t\tpath\n\t\t{\n\t\t\tstroke: inherit;\n\t\t\tfill: inherit;\n\t\t}\n\n\t\t.font-char\n\t\t{\n\t\t\tfont-family: var(--music-font-family);\n\t\t\tfont-size: var(--music-font-size);\n\t\t}\n\t}\n</style>\n"],"mappings":"AA0CA,SAAAA,KAAA;AAIA;EACAC,IAAA;EAGAC,KAAA;IACAC,SAAA,EAAAC,MAAA;IACAC,WAAA,EAAAC;EACA;EAGAC,QAAA;IACAC,MAAA;MACA,UAAAL,SAAA,EACA;MAEA,OAAAC,MAAA,CAAAK,OAAA,MAAAN,SAAA,EAAAO,GAAA,GAAAC,EAAA,EAAAC,GAAA;QACAD,EAAA;QAAAC,GAAA;QACAZ,KAAA,OAAAK,WAAA,GAAAL,KAAA,CAAAa,SAAA,CAAAF,EAAA,KAAAX,KAAA,CAAAc,YAAA,CAAAd,KAAA,CAAAa,SAAA,CAAAF,EAAA;MACA;IACA;EACA;AACA","ignoreList":[]}]}