deciphony-renderer 0.0.14

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (76) hide show
  1. package/dist/assets/assets/msSymbols/1.svg +7 -0
  2. package/dist/assets/assets/msSymbols/2.svg +7 -0
  3. package/dist/assets/assets/msSymbols/3.svg +7 -0
  4. package/dist/assets/assets/msSymbols/4.svg +7 -0
  5. package/dist/assets/assets/msSymbols/5.svg +7 -0
  6. package/dist/assets/assets/msSymbols/6.svg +7 -0
  7. package/dist/assets/assets/msSymbols/7.svg +7 -0
  8. package/dist/assets/assets/msSymbols/altoClef.svg +20 -0
  9. package/dist/assets/assets/msSymbols/bar-numberNotation.svg +5 -0
  10. package/dist/assets/assets/msSymbols/bar-standardStaff.svg +7 -0
  11. package/dist/assets/assets/msSymbols/barlineEndRepeatSign.svg +12 -0
  12. package/dist/assets/assets/msSymbols/barlineFinal.svg +10 -0
  13. package/dist/assets/assets/msSymbols/barlineReverseFinal.svg +10 -0
  14. package/dist/assets/assets/msSymbols/barlineSingle.svg +3 -0
  15. package/dist/assets/assets/msSymbols/barlineStartRepeatSign.svg +10 -0
  16. package/dist/assets/assets/msSymbols/bassClef.svg +46 -0
  17. package/dist/assets/assets/msSymbols/chronaxieIncreasingLine.svg +3 -0
  18. package/dist/assets/assets/msSymbols/chronaxieReducingLine1.svg +3 -0
  19. package/dist/assets/assets/msSymbols/chronaxieReducingLine2.svg +4 -0
  20. package/dist/assets/assets/msSymbols/chronaxieReducingLine3.svg +5 -0
  21. package/dist/assets/assets/msSymbols/chronaxieReducingLine4.svg +6 -0
  22. package/dist/assets/assets/msSymbols/defaultSymbol.svg +0 -0
  23. package/dist/assets/assets/msSymbols/flat.svg +11 -0
  24. package/dist/assets/assets/msSymbols/nature.svg +10 -0
  25. package/dist/assets/assets/msSymbols/noteDot1.svg +3 -0
  26. package/dist/assets/assets/msSymbols/noteDot2.svg +4 -0
  27. package/dist/assets/assets/msSymbols/noteDot3.svg +5 -0
  28. package/dist/assets/assets/msSymbols/noteDot4.svg +6 -0
  29. package/dist/assets/assets/msSymbols/noteHeadHalf.svg +14 -0
  30. package/dist/assets/assets/msSymbols/noteHeadQuarter.svg +14 -0
  31. package/dist/assets/assets/msSymbols/noteHeadWhole.svg +12 -0
  32. package/dist/assets/assets/msSymbols/noteStem.svg +5 -0
  33. package/dist/assets/assets/msSymbols/noteTailOneDown.svg +13 -0
  34. package/dist/assets/assets/msSymbols/noteTailOneUp.svg +10 -0
  35. package/dist/assets/assets/msSymbols/noteTailTwoDown.svg +14 -0
  36. package/dist/assets/assets/msSymbols/noteTailTwoUp.svg +14 -0
  37. package/dist/assets/assets/msSymbols/readne.md +5 -0
  38. package/dist/assets/assets/msSymbols/restEighth.svg +40 -0
  39. package/dist/assets/assets/msSymbols/restHalf.svg +36 -0
  40. package/dist/assets/assets/msSymbols/restQuarter.svg +38 -0
  41. package/dist/assets/assets/msSymbols/restSixteenth.svg +46 -0
  42. package/dist/assets/assets/msSymbols/restSixtyFourth.svg +45 -0
  43. package/dist/assets/assets/msSymbols/restThirtySecond.svg +45 -0
  44. package/dist/assets/assets/msSymbols/restWhole.svg +8 -0
  45. package/dist/assets/assets/msSymbols/sharp.svg +10 -0
  46. package/dist/assets/assets/msSymbols/trebleClef.svg +21 -0
  47. package/dist/common.d.ts +1 -0
  48. package/dist/components/clef.d.ts +22 -0
  49. package/dist/components/keySignature.d.ts +42 -0
  50. package/dist/components/measure.d.ts +91 -0
  51. package/dist/components/measureContainer.d.ts +74 -0
  52. package/dist/components/msSymbol.d.ts +152 -0
  53. package/dist/components/msSymbolContainer.d.ts +100 -0
  54. package/dist/components/msSymbolSlot.d.ts +293 -0
  55. package/dist/components/noteTail.d.ts +100 -0
  56. package/dist/components/rectDragShell.d.ts +29 -0
  57. package/dist/components/slur.d.ts +14 -0
  58. package/dist/components/spanSymbol.d.ts +48 -0
  59. package/dist/components/timeSignature.d.ts +24 -0
  60. package/dist/components/virtualSymbolContainer.d.ts +96 -0
  61. package/dist/components/volta.d.ts +14 -0
  62. package/dist/constant.d.ts +4 -0
  63. package/dist/deciphony-renderer.css +1 -0
  64. package/dist/index.cjs.js +6 -0
  65. package/dist/index.d.ts +12 -0
  66. package/dist/index.es.js +3927 -0
  67. package/dist/musicScore.d.ts +76 -0
  68. package/dist/types.d.ts +80 -0
  69. package/dist/utils/bottomUtil.d.ts +11 -0
  70. package/dist/utils/eventUtil.d.ts +33 -0
  71. package/dist/utils/geometryUtil.d.ts +10 -0
  72. package/dist/utils/heightUtil.d.ts +3 -0
  73. package/dist/utils/leftUtil.d.ts +7 -0
  74. package/dist/utils/widthConstantUtil.d.ts +5 -0
  75. package/dist/utils/widthUtil.d.ts +9 -0
  76. package/package.json +43 -0
@@ -0,0 +1,7 @@
1
+ <svg version="1.1"
2
+ xmlns="http://www.w3.org/2000/svg"
3
+ width="30" height="50"
4
+ viewBox="0 0 30 50">
5
+ <!-- y 设为 20,让文字落在可见范围 -->
6
+ <text x="-2" y="48" font-size="70" fill="black">1</text>
7
+ </svg>
@@ -0,0 +1,7 @@
1
+ <svg version="1.1"
2
+ xmlns="http://www.w3.org/2000/svg"
3
+ width="30" height="50"
4
+ viewBox="0 0 30 50">
5
+ <!-- y 设为 20,让文字落在可见范围 -->
6
+ <text x="-2" y="48" font-size="70" fill="black">2</text>
7
+ </svg>
@@ -0,0 +1,7 @@
1
+ <svg version="1.1"
2
+ xmlns="http://www.w3.org/2000/svg"
3
+ width="30" height="50"
4
+ viewBox="0 0 30 50">
5
+ <!-- y 设为 20,让文字落在可见范围 -->
6
+ <text x="-2" y="48" font-size="70" fill="black">3</text>
7
+ </svg>
@@ -0,0 +1,7 @@
1
+ <svg version="1.1"
2
+ xmlns="http://www.w3.org/2000/svg"
3
+ width="30" height="50"
4
+ viewBox="0 0 30 50">
5
+ <!-- y 设为 20,让文字落在可见范围 -->
6
+ <text x="-2" y="48" font-size="70" fill="black">4</text>
7
+ </svg>
@@ -0,0 +1,7 @@
1
+ <svg version="1.1"
2
+ xmlns="http://www.w3.org/2000/svg"
3
+ width="30" height="50"
4
+ viewBox="0 0 30 50">
5
+ <!-- y 设为 20,让文字落在可见范围 -->
6
+ <text x="-2" y="48" font-size="70" fill="black">5</text>
7
+ </svg>
@@ -0,0 +1,7 @@
1
+ <svg version="1.1"
2
+ xmlns="http://www.w3.org/2000/svg"
3
+ width="30" height="50"
4
+ viewBox="0 0 30 50">
5
+ <!-- y 设为 20,让文字落在可见范围 -->
6
+ <text x="-2" y="48" font-size="70" fill="black">6</text>
7
+ </svg>
@@ -0,0 +1,7 @@
1
+ <svg version="1.1"
2
+ xmlns="http://www.w3.org/2000/svg"
3
+ width="30" height="50"
4
+ viewBox="0 0 30 50">
5
+ <!-- y 设为 20,让文字落在可见范围 -->
6
+ <text x="-2" y="48" font-size="70" fill="black">7</text>
7
+ </svg>
@@ -0,0 +1,20 @@
1
+ <?xml version="1.0" encoding="iso-8859-1"?>
2
+ <!-- Generator: Adobe Illustrator 19.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
3
+ <svg version="1.1" id="Capa_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px"
4
+ y="0px"
5
+ width="30" height="50"
6
+ viewBox="0 0 285 285" xml:space="preserve">
7
+ <g id="XMLID_516_" transform="translate(0, 142.5) scale(1,1.8) translate(0, -142.5) ">
8
+ <rect id="XMLID_517_" y="7.5" width="60" height="270"/>
9
+ <rect id="XMLID_518_" x="90" y="7.5" width="30" height="270"/>
10
+ <path id="XMLID_519_" d="M225,157.428v-29.855c33.084,0,60-26.916,60-60c0-33.084-26.916-60-60-60
11
+ c-31.424,0-57.18,23.901-59.779,54.892c-0.02,0.158-0.173,1.825-0.173,2.515c0,0.031,0.005,0.06,0.005,0.091
12
+ c-0.001,0.024-0.004,0.047-0.005,0.071l0.009,0.001c0.088,10.97,9,19.837,19.991,19.837c11.046,0,20-8.954,20-20
13
+ c0-5.252-2.041-10.017-5.353-13.586c5.326-8.344,14.666-13.821,25.305-13.821c16.542,0,30,13.458,30,30c0,16.542-13.458,30-30,30
14
+ V82.5l-75,60l75,60v-15.072c16.542,0,30,13.458,30,29.999c0,16.542-13.458,30.001-30,30.001c-10.639,0-19.979-5.477-25.305-13.821
15
+ c3.312-3.569,5.353-8.333,5.353-13.586c0-11.046-8.954-20-20-20c-10.991,0-19.903,8.868-19.991,19.837l-0.009,0.001
16
+ c0.001,0.024,0.004,0.047,0.005,0.071c0,0.031-0.005,0.06-0.005,0.091c0,0.69,0.153,2.357,0.173,2.515
17
+ c2.6,30.991,28.355,54.892,59.779,54.892c33.084,0,60-26.916,60-60.001C285,184.343,258.084,157.428,225,157.428z"/>
18
+ </g>
19
+
20
+ </svg>
@@ -0,0 +1,5 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" width="500" height="80">
2
+ <line x1="0" y1="0" x2="500" y2="000" stroke="white" stroke-width="1"></line>
3
+
4
+ <line x1="0" y1="80" x2="500" y2="80" stroke="white" stroke-width="1"></line>
5
+ </svg>
@@ -0,0 +1,7 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" width="500" height="80">
2
+ <line x1="0" y1="0" x2="500" y2="000" stroke="black" stroke-width="1"></line>
3
+ <line x1="0" y1="20" x2="500" y2="20" stroke="black" stroke-width="1"></line>
4
+ <line x1="0" y1="40" x2="500" y2="40" stroke="black" stroke-width="1"></line>
5
+ <line x1="0" y1="60" x2="500" y2="60" stroke="black" stroke-width="1"></line>
6
+ <line x1="0" y1="80" x2="500" y2="80" stroke="black" stroke-width="1"></line>
7
+ </svg>
@@ -0,0 +1,12 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" width="300" height="500">
2
+ <style>
3
+
4
+ </style>
5
+ <g>
6
+ <circle cx="60" cy="180" r="30" fill="black"/>
7
+ <circle cx="60" cy="320" r="30" fill="black"/>
8
+ <line x1="150" x2="150" y1="0" y2="500" stroke-width="50" class="line" stroke="black"/>
9
+ <line x1="250" x2="250" y1="0" y2="500" stroke-width="100" class="line" stroke="black"/>
10
+
11
+ </g>
12
+ </svg>
@@ -0,0 +1,10 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" width="200" height="500">
2
+ <style>
3
+
4
+ </style>
5
+ <g>
6
+ <line x1="50" x2="50" y1="0" y2="500" stroke-width="50" class="line" stroke="black"/>
7
+ <line x1="150" x2="150" y1="0" y2="500" stroke-width="100" class="line" stroke="black"/>
8
+
9
+ </g>
10
+ </svg>
@@ -0,0 +1,10 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" width="200" height="500">
2
+ <style>
3
+
4
+ </style>
5
+ <g>
6
+ <line x1="150" x2="150" y1="0" y2="500" stroke-width="50" class="line" stroke="black"/>
7
+ <line x1="50" x2="50" y1="0" y2="500" stroke-width="100" class="line" stroke="black"/>
8
+
9
+ </g>
10
+ </svg>
@@ -0,0 +1,3 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" width="100" height="800">
2
+ <rect width="100" height="800"/>
3
+ </svg>
@@ -0,0 +1,10 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" width="300" height="500">
2
+
3
+ <g>
4
+ <circle cx="240" cy="180" r="30" fill="black"/>
5
+ <circle cx="240" cy="320" r="30" fill="black"/>
6
+ <line x1="150" x2="150" y1="0" y2="500" stroke-width="50" class="line" stroke="black"/>
7
+ <line x1="50" x2="50" y1="0" y2="500" stroke-width="100" class="line" stroke="black"/>
8
+
9
+ </g>
10
+ </svg>
@@ -0,0 +1,46 @@
1
+ <?xml version="1.0" encoding="iso-8859-1"?>
2
+ <!-- Generator: Adobe Illustrator 19.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
3
+ <svg version="1.1" id="Capa_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px"
4
+ y="0px"
5
+ width="30" height="50"
6
+ viewBox="0 0 270 270" style="enable-background:new 0 0 270 270;" xml:space="preserve">
7
+ <g id="XMLID_520_" transform="translate(135, 135) scale(1.2,1.7) translate(-135, -135)">
8
+ <path id="XMLID_521_" d="M95,0C46.286,0,20,35.035,20,68c0,16.393,5.134,30.499,14.848,40.794C44.851,119.396,58.736,125,75,125
9
+ c16.569,0,30-13.431,30-30S91.569,65,75,65c-9.828,0-18.551,4.726-24.023,12.028C50.234,73.834,50,70.676,50,68
10
+ c0-18.884,15.457-38,45-38c37.664,0,65,35.748,65,85c0,47.058-20.573,76.48-37.831,92.875C100.995,227.991,72.146,240,45,240v30
11
+ c35.164,0,70.822-14.716,97.831-40.375C173.248,200.729,190,160.02,190,115c0-31.97-9.544-61.113-26.874-82.062
12
+ C145.554,11.698,121.36,0,95,0z"/>
13
+ <circle id="XMLID_522_" cx="235" cy="60" r="15"/>
14
+ <circle id="XMLID_523_" cx="235" cy="120" r="15"/>
15
+ </g>
16
+ <g>
17
+ </g>
18
+ <g>
19
+ </g>
20
+ <g>
21
+ </g>
22
+ <g>
23
+ </g>
24
+ <g>
25
+ </g>
26
+ <g>
27
+ </g>
28
+ <g>
29
+ </g>
30
+ <g>
31
+ </g>
32
+ <g>
33
+ </g>
34
+ <g>
35
+ </g>
36
+ <g>
37
+ </g>
38
+ <g>
39
+ </g>
40
+ <g>
41
+ </g>
42
+ <g>
43
+ </g>
44
+ <g>
45
+ </g>
46
+ </svg>
@@ -0,0 +1,3 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" width="100" height="10">
2
+ <line x1="0" y1="5" x2="100" y2="5" stroke="black" stroke-width="10"></line>
3
+ </svg>
@@ -0,0 +1,3 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" width="100" height="10">
2
+ <line x1="0" y1="5" x2="100" y2="5" stroke="black" stroke-width="10"></line>
3
+ </svg>
@@ -0,0 +1,4 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" width="100" height="30">
2
+ <line x1="0" y1="5" x2="100" y2="5" stroke="black" stroke-width="10"></line>
3
+ <line x1="0" y1="25" x2="100" y2="25" stroke="black" stroke-width="10"></line>
4
+ </svg>
@@ -0,0 +1,5 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" width="100" height="50">
2
+ <line x1="0" y1="5" x2="100" y2="5" stroke="black" stroke-width="10"></line>
3
+ <line x1="0" y1="25" x2="100" y2="25" stroke="black" stroke-width="10"></line>
4
+ <line x1="0" y1="45" x2="100" y2="45" stroke="black" stroke-width="10"></line>
5
+ </svg>
@@ -0,0 +1,6 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" width="100" height="70">
2
+ <line x1="0" y1="5" x2="100" y2="5" stroke="black" stroke-width="10"></line>
3
+ <line x1="0" y1="25" x2="100" y2="25" stroke="black" stroke-width="10"></line>
4
+ <line x1="0" y1="45" x2="100" y2="45" stroke="black" stroke-width="10"></line>
5
+ <line x1="0" y1="65" x2="100" y2="65" stroke="black" stroke-width="10"></line>
6
+ </svg>
File without changes
@@ -0,0 +1,11 @@
1
+ <?xml version="1.0" encoding="iso-8859-1"?>
2
+ <!-- Generator: Adobe Illustrator 19.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
3
+ <svg version="1.1" id="Capa_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px"
4
+ y="0px"
5
+ viewBox="0 0 270 270" style="enable-background:new 0 0 270 270;" xml:space="preserve">
6
+ <path id="XMLID_920_" d="M174.642,156.642c-10.662-17.767-29.276-25.48-48.578-20.137c-2.379,0.659-4.681,1.507-6.901,2.507V0h-30
7
+ v270h30c5.88-4.736,21.586-18.098,35.412-34.425C172.578,214.313,190.674,183.359,174.642,156.642z M131.944,215.875
8
+ c-4.175,4.955-8.586,9.608-12.782,13.75V185c0-10.037,7.682-17.581,14.91-19.584c6.258-1.733,11.115,0.446,14.846,6.661
9
+ C151.41,176.231,154.746,188.814,131.944,215.875z"/>
10
+
11
+ </svg>
@@ -0,0 +1,10 @@
1
+ <?xml version="1.0" encoding="iso-8859-1"?>
2
+ <!-- Generator: Adobe Illustrator 19.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
3
+ <svg version="1.1" id="Capa_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px"
4
+ y="0px"
5
+ viewBox="0 0 270 270" style="enable-background:new 0 0 270 270;" xml:space="preserve">
6
+ <g id="XMLID_14_">
7
+ <path id="XMLID_906_" d="M90,60V0H60v240l120-30v60h30V30L90,60z M180,150l-90,22.5V120l90-22.5V150z"/>
8
+ </g>
9
+
10
+ </svg>
@@ -0,0 +1,3 @@
1
+ <svg viewBox="0 0 100 100" xmlns="http://www.w3.org/2000/svg">
2
+ <circle cx="50" cy="50" r="50" />
3
+ </svg>
@@ -0,0 +1,4 @@
1
+ <svg viewBox="0 0 100 300" xmlns="http://www.w3.org/2000/svg">
2
+ <circle cx="50" cy="50" r="50" />
3
+ <circle cx="50" cy="250" r="50" />
4
+ </svg>
@@ -0,0 +1,5 @@
1
+ <svg viewBox="0 0 100 500" xmlns="http://www.w3.org/2000/svg">
2
+ <circle cx="50" cy="50" r="50" />
3
+ <circle cx="50" cy="250" r="50" />
4
+ <circle cx="50" cy="450" r="50" />
5
+ </svg>
@@ -0,0 +1,6 @@
1
+ <svg viewBox="0 0 100 700" xmlns="http://www.w3.org/2000/svg">
2
+ <circle cx="50" cy="50" r="50" />
3
+ <circle cx="50" cy="250" r="50" />
4
+ <circle cx="50" cy="450" r="50" />
5
+ <circle cx="50" cy="650" r="50" />
6
+ </svg>
@@ -0,0 +1,14 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" width="100" height="100">
2
+ <defs>
3
+ <mask id="hollowSlantedEllipseMask">
4
+ <rect width="100%" height="100%" fill="black"/>
5
+ <!-- 外椭圆,稍微倾斜 -->
6
+ <ellipse cx="50" cy="50" rx="45" ry="32" fill="white" transform="rotate(-15 50 50)"/>
7
+ <!-- 内椭圆,用于挖空 -->
8
+ <ellipse cx="50" cy="50" rx="35" ry="22" fill="black" transform="rotate(-15 50 50)"/>
9
+ </mask>
10
+ </defs>
11
+
12
+ <!-- 使用蒙版绘制一个斜切空心音符头 -->
13
+ <rect width="100%" height="100%" fill="black" mask="url(#hollowSlantedEllipseMask)"/>
14
+ </svg>
@@ -0,0 +1,14 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" width="100" height="100">
2
+ <defs>
3
+ <mask id="hollowSlantedEllipseMask">
4
+ <rect width="100%" height="100%" fill="black"/>
5
+ <!-- 外椭圆,稍微倾斜 -->
6
+ <ellipse cx="50" cy="50" rx="45" ry="32" fill="white" transform="rotate(-15 50 50)"/>
7
+ <!-- 内椭圆,用于挖空 -->
8
+ <!-- <ellipse cx="50" cy="50" rx="35" ry="22" fill="black" transform="rotate(-15 50 50)"/>-->
9
+ </mask>
10
+ </defs>
11
+
12
+ <!-- 使用蒙版绘制一个斜切空心音符头 -->
13
+ <rect width="100%" height="100%" fill="black" mask="url(#hollowSlantedEllipseMask)"/>
14
+ </svg>
@@ -0,0 +1,12 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" width="100" height="100">
2
+ <defs>
3
+ <mask id="hollowEllipseMask">
4
+ <!-- 背景为黑色(不可见),要保留的区域为白色(可见) -->
5
+ <rect width="100%" height="100%" fill="black"/>
6
+ <ellipse cx="50" cy="50" rx="50" ry="37.36" fill="white"/>
7
+ <ellipse cx="50" cy="50" rx="40" ry="27.36" fill="black"/>
8
+ </mask>
9
+ </defs>
10
+
11
+ <rect width="100%" height="100%" fill="black" mask="url(#hollowEllipseMask)"/>
12
+ </svg>
@@ -0,0 +1,5 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" width="10" height="100">
2
+ <!-- 音符杆 -->
3
+ <line x1="5" y1="0" x2="5" y2="100" stroke="black" stroke-width="10"></line>
4
+
5
+ </svg>
@@ -0,0 +1,13 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" width="100" height="200">
2
+ <!-- 音符尾 -->
3
+ <g>
4
+ <path d="
5
+ M 0 200
6
+ L 0 160
7
+ L 100 0
8
+ L 100 0
9
+ Z
10
+ " fill="black"/>
11
+ </g>
12
+
13
+ </svg>
@@ -0,0 +1,10 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" width="100" height="200">
2
+ <!-- 音符尾 -->
3
+ <path d="
4
+ M 0 0
5
+ L 0 40
6
+ L 100 200
7
+ L 100 180
8
+ Z
9
+ " fill="black"/>
10
+ </svg>
@@ -0,0 +1,14 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" width="100" height="200">
2
+ <!-- 音符尾 -->
3
+ <path d="
4
+ M 0 200
5
+ L 0 160
6
+ L 100 80
7
+ L 100 100
8
+ M 0 120
9
+ L 0 80
10
+ L 100 0
11
+ L 100 20
12
+ Z
13
+ " fill="black"/>
14
+ </svg>
@@ -0,0 +1,14 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" width="100" height="200">
2
+ <!-- 音符尾 -->
3
+ <path d="
4
+ M 0 0
5
+ L 0 40
6
+ L 100 120
7
+ L 100 100
8
+ M 0 80
9
+ L 0 120
10
+ L 100 200
11
+ L 100 180
12
+ Z
13
+ " fill="black"/>
14
+ </svg>
@@ -0,0 +1,5 @@
1
+ 添加,修改符号,需同步更新
2
+ musicScoreEnum.ts MsSymbolTypeEnum
3
+ constant.ts MsSymbolInformationMap
4
+ msSymbol.vue
5
+ type.d.ts MsSymbol
@@ -0,0 +1,40 @@
1
+ <?xml version="1.0" encoding="iso-8859-1"?>
2
+ <!-- Generator: Adobe Illustrator 19.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
3
+ <svg version="1.1" id="Capa_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
4
+ viewBox="0 0 180 180" style="enable-background:new 0 0 180 180;" xml:space="preserve">
5
+ <g id="XMLID_19_">
6
+ <path id="XMLID_833_" d="M119.771,30l-7.279,16.325C107.142,54.543,97.898,60,87.381,60c-5.458,0-10.575-1.472-14.988-4.029
7
+ C81.351,50.781,87.381,41.099,87.381,30c0-16.569-13.43-30-30-30c-16.569,0-30,13.431-30,30c0,0.519,0.013,1.034,0.039,1.546
8
+ C28.246,63.917,54.815,90,87.381,90c1.945,0,3.866-0.102,5.764-0.284L52.888,180h32.847l66.884-150H119.771z"/>
9
+ </g>
10
+ <g>
11
+ </g>
12
+ <g>
13
+ </g>
14
+ <g>
15
+ </g>
16
+ <g>
17
+ </g>
18
+ <g>
19
+ </g>
20
+ <g>
21
+ </g>
22
+ <g>
23
+ </g>
24
+ <g>
25
+ </g>
26
+ <g>
27
+ </g>
28
+ <g>
29
+ </g>
30
+ <g>
31
+ </g>
32
+ <g>
33
+ </g>
34
+ <g>
35
+ </g>
36
+ <g>
37
+ </g>
38
+ <g>
39
+ </g>
40
+ </svg>
@@ -0,0 +1,36 @@
1
+ <?xml version="1.0" encoding="iso-8859-1"?>
2
+ <!-- Generator: Adobe Illustrator 19.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
3
+ <svg version="1.1" id="Capa_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
4
+ viewBox="0 0 210 210" style="enable-background:new 0 0 210 210;" xml:space="preserve">
5
+ <polygon id="XMLID_819_" points="180,120 180,60 30,60 30,120 0,120 0,150 210,150 210,120 "/>
6
+ <g>
7
+ </g>
8
+ <g>
9
+ </g>
10
+ <g>
11
+ </g>
12
+ <g>
13
+ </g>
14
+ <g>
15
+ </g>
16
+ <g>
17
+ </g>
18
+ <g>
19
+ </g>
20
+ <g>
21
+ </g>
22
+ <g>
23
+ </g>
24
+ <g>
25
+ </g>
26
+ <g>
27
+ </g>
28
+ <g>
29
+ </g>
30
+ <g>
31
+ </g>
32
+ <g>
33
+ </g>
34
+ <g>
35
+ </g>
36
+ </svg>
@@ -0,0 +1,38 @@
1
+ <?xml version="1.0" encoding="iso-8859-1"?>
2
+ <!-- Generator: Adobe Illustrator 19.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
3
+ <svg version="1.1" id="Capa_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
4
+ viewBox="0 0 275.734 275.734" style="enable-background:new 0 0 275.734 275.734;" xml:space="preserve">
5
+ <path id="XMLID_831_" d="M149.83,130.355l42.148-41.852L103.474,0L82.261,21.213l42.143,42.143l-42.143,41.857l52.543,52.543
6
+ c-25.63,6.826-44.571,30.229-44.571,57.979c0,33.084,26.916,60,60,60v-30c-16.542,0-30-13.457-30-30c0-16.541,13.458-30,30-30
7
+ c7.948,0,15.438,3.078,21.089,8.664l0.063-0.063l0.877,0.877L193.474,174L149.83,130.355z"/>
8
+ <g>
9
+ </g>
10
+ <g>
11
+ </g>
12
+ <g>
13
+ </g>
14
+ <g>
15
+ </g>
16
+ <g>
17
+ </g>
18
+ <g>
19
+ </g>
20
+ <g>
21
+ </g>
22
+ <g>
23
+ </g>
24
+ <g>
25
+ </g>
26
+ <g>
27
+ </g>
28
+ <g>
29
+ </g>
30
+ <g>
31
+ </g>
32
+ <g>
33
+ </g>
34
+ <g>
35
+ </g>
36
+ <g>
37
+ </g>
38
+ </svg>
@@ -0,0 +1,46 @@
1
+ <?xml version="1.0" encoding="iso-8859-1"?>
2
+ <!-- Generator: Adobe Illustrator 19.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
3
+ <svg version="1.1" id="Capa_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px"
4
+ y="0px"
5
+ viewBox="0 0 360 360" style="enable-background:new 0 0 360 360;" xml:space="preserve">
6
+ <g id="XMLID_18_">
7
+ <path id="XMLID_835_" d="M249.901,30l-6.545,14.678C238.211,53.806,228.456,60,217.251,60c-5.457,0-10.574-1.472-14.988-4.029
8
+ c8.958-5.189,14.988-14.872,14.988-25.971c0-16.569-13.43-30-30-30c-16.569,0-30,13.431-30,30c0,0.519,0.014,1.034,0.039,1.546
9
+ C158.116,63.917,184.686,90,217.251,90c2.038,0,4.05-0.112,6.036-0.312l-20.467,45.9c-5.27,8.626-14.741,14.411-25.569,14.411
10
+ c-5.457,0-10.574-1.472-14.988-4.029c8.958-5.189,14.988-14.872,14.988-25.971c0-16.569-13.43-30-30-30c-16.569,0-30,13.431-30,30
11
+ c0,0.519,0.014,1.034,0.039,1.546c0.826,32.37,27.395,58.454,59.961,58.454c1.989,0,3.956-0.099,5.896-0.29l-20.787,46.617
12
+ C157.01,234.544,147.768,240,137.251,240c-5.457,0-10.574-1.472-14.988-4.029c8.958-5.189,14.988-14.872,14.988-25.971
13
+ c0-16.569-13.43-30-30-30c-16.569,0-30,13.431-30,30c0,0.519,0.014,1.034,0.039,1.546C78.116,243.917,104.686,270,137.251,270
14
+ c1.943,0,3.865-0.098,5.762-0.28L102.758,360h32.848L282.749,30H249.901z"/>
15
+ </g>
16
+ <g>
17
+ </g>
18
+ <g>
19
+ </g>
20
+ <g>
21
+ </g>
22
+ <g>
23
+ </g>
24
+ <g>
25
+ </g>
26
+ <g>
27
+ </g>
28
+ <g>
29
+ </g>
30
+ <g>
31
+ </g>
32
+ <g>
33
+ </g>
34
+ <g>
35
+ </g>
36
+ <g>
37
+ </g>
38
+ <g>
39
+ </g>
40
+ <g>
41
+ </g>
42
+ <g>
43
+ </g>
44
+ <g>
45
+ </g>
46
+ </svg>
@@ -0,0 +1,45 @@
1
+ <?xml version="1.0" encoding="iso-8859-1"?>
2
+ <!-- Generator: Adobe Illustrator 19.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
3
+ <svg version="1.1" id="Capa_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
4
+ viewBox="0 0 360 360" style="enable-background:new 0 0 360 360;" xml:space="preserve">
5
+ <g id="XMLID_18_">
6
+ <path id="XMLID_835_" d="M249.901,30l-6.545,14.678C238.211,53.806,228.456,60,217.251,60c-5.457,0-10.574-1.472-14.988-4.029
7
+ c8.958-5.189,14.988-14.872,14.988-25.971c0-16.569-13.43-30-30-30c-16.569,0-30,13.431-30,30c0,0.519,0.014,1.034,0.039,1.546
8
+ C158.116,63.917,184.686,90,217.251,90c2.038,0,4.05-0.112,6.036-0.312l-20.467,45.9c-5.27,8.626-14.741,14.411-25.569,14.411
9
+ c-5.457,0-10.574-1.472-14.988-4.029c8.958-5.189,14.988-14.872,14.988-25.971c0-16.569-13.43-30-30-30c-16.569,0-30,13.431-30,30
10
+ c0,0.519,0.014,1.034,0.039,1.546c0.826,32.37,27.395,58.454,59.961,58.454c1.989,0,3.956-0.099,5.896-0.29l-20.787,46.617
11
+ C157.01,234.544,147.768,240,137.251,240c-5.457,0-10.574-1.472-14.988-4.029c8.958-5.189,14.988-14.872,14.988-25.971
12
+ c0-16.569-13.43-30-30-30c-16.569,0-30,13.431-30,30c0,0.519,0.014,1.034,0.039,1.546C78.116,243.917,104.686,270,137.251,270
13
+ c1.943,0,3.865-0.098,5.762-0.28L102.758,360h32.848L282.749,30H249.901z"/>
14
+ </g>
15
+ <g>
16
+ </g>
17
+ <g>
18
+ </g>
19
+ <g>
20
+ </g>
21
+ <g>
22
+ </g>
23
+ <g>
24
+ </g>
25
+ <g>
26
+ </g>
27
+ <g>
28
+ </g>
29
+ <g>
30
+ </g>
31
+ <g>
32
+ </g>
33
+ <g>
34
+ </g>
35
+ <g>
36
+ </g>
37
+ <g>
38
+ </g>
39
+ <g>
40
+ </g>
41
+ <g>
42
+ </g>
43
+ <g>
44
+ </g>
45
+ </svg>