@sudobility/music_types 0.13.18 → 0.13.20

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 (37) hide show
  1. package/CLAUDE.md +11 -3
  2. package/dist/domain/commands/clipboard-commands.d.ts +41 -0
  3. package/dist/domain/commands/clipboard-commands.d.ts.map +1 -0
  4. package/dist/domain/commands/clipboard-commands.js +246 -0
  5. package/dist/domain/commands/clipboard-commands.js.map +1 -0
  6. package/dist/domain/generation/option-order.d.ts +20 -0
  7. package/dist/domain/generation/option-order.d.ts.map +1 -0
  8. package/dist/domain/generation/option-order.js +24 -0
  9. package/dist/domain/generation/option-order.js.map +1 -0
  10. package/dist/domain/generation/replacement-region.d.ts.map +1 -1
  11. package/dist/domain/generation/replacement-region.js +3 -0
  12. package/dist/domain/generation/replacement-region.js.map +1 -1
  13. package/dist/domain/generation/style-presets.d.ts +34 -0
  14. package/dist/domain/generation/style-presets.d.ts.map +1 -0
  15. package/dist/domain/generation/style-presets.js +274 -0
  16. package/dist/domain/generation/style-presets.js.map +1 -0
  17. package/dist/domain/instruments/arrangement-order.d.ts +17 -0
  18. package/dist/domain/instruments/arrangement-order.d.ts.map +1 -1
  19. package/dist/domain/instruments/arrangement-order.js +23 -7
  20. package/dist/domain/instruments/arrangement-order.js.map +1 -1
  21. package/dist/domain/instruments/instrument-options.d.ts +42 -1
  22. package/dist/domain/instruments/instrument-options.d.ts.map +1 -1
  23. package/dist/domain/instruments/instrument-options.js +54 -2
  24. package/dist/domain/instruments/instrument-options.js.map +1 -1
  25. package/dist/domain/notation/notation-icon-art.d.ts +10 -10
  26. package/dist/domain/notation/notation-icon-art.d.ts.map +1 -1
  27. package/dist/domain/notation/notation-icon-art.js +850 -817
  28. package/dist/domain/notation/notation-icon-art.js.map +1 -1
  29. package/dist/index.d.ts +3 -0
  30. package/dist/index.d.ts.map +1 -1
  31. package/dist/index.js +3 -0
  32. package/dist/index.js.map +1 -1
  33. package/dist/model/generation.d.ts +29 -1
  34. package/dist/model/generation.d.ts.map +1 -1
  35. package/dist/model/generation.js +33 -1
  36. package/dist/model/generation.js.map +1 -1
  37. package/package.json +1 -1
@@ -25,1025 +25,1058 @@ export const NOTATION_ICON_VIEWBOX = 24;
25
25
  * otherwise write the list out again.
26
26
  */
27
27
  export const NOTATION_ICON_NAMES = [
28
- "AddMeasureIcon",
29
- "ArpeggioIcon",
30
- "ArticulationIcon",
31
- "BeamBreakIcon",
32
- "BeamNoneIcon",
33
- "ChordIcon",
34
- "ContinuousLayoutIcon",
35
- "CrescendoIcon",
36
- "DeleteMeasureIcon",
37
- "DiminuendoIcon",
38
- "DottedIcon",
39
- "DoubleFlatIcon",
40
- "DoubleSharpIcon",
41
- "EighthNoteIcon",
42
- "FermataIcon",
43
- "FlatIcon",
44
- "GoToStartIcon",
45
- "HalfNoteIcon",
46
- "InsertModeIcon",
47
- "InsertNoteIcon",
48
- "InsertRestIcon",
49
- "MetronomeIcon",
50
- "NaturalIcon",
51
- "NextMeasureIcon",
52
- "OrnamentIcon",
53
- "PageLayoutIcon",
54
- "PreviousMeasureIcon",
55
- "QuantizeIcon",
56
- "QuarterNoteIcon",
57
- "ReplaceModeIcon",
58
- "SelectAllIcon",
59
- "SharpIcon",
60
- "SixteenthNoteIcon",
61
- "SlurIcon",
62
- "SoloIcon",
63
- "SunMoonIcon",
64
- "ThirtySecondNoteIcon",
65
- "TieIcon",
66
- "TripletIcon",
67
- "WholeNoteIcon",
28
+ 'AddMeasureIcon',
29
+ 'ArpeggioIcon',
30
+ 'ArticulationIcon',
31
+ 'BeamBreakIcon',
32
+ 'BeamNoneIcon',
33
+ 'ChordIcon',
34
+ 'ContinuousLayoutIcon',
35
+ 'CrescendoIcon',
36
+ 'DeleteMeasureIcon',
37
+ 'DiminuendoIcon',
38
+ 'DottedIcon',
39
+ 'DoubleFlatIcon',
40
+ 'DoubleSharpIcon',
41
+ 'EighthNoteIcon',
42
+ 'FermataIcon',
43
+ 'FlatIcon',
44
+ 'GoToStartIcon',
45
+ 'HalfNoteIcon',
46
+ 'InsertModeIcon',
47
+ 'InsertNoteIcon',
48
+ 'InsertRestIcon',
49
+ 'MetronomeIcon',
50
+ 'NaturalIcon',
51
+ 'NextMeasureIcon',
52
+ 'OrnamentIcon',
53
+ 'PageLayoutIcon',
54
+ 'PianoKeysIcon',
55
+ 'PreviousMeasureIcon',
56
+ 'QuantizeIcon',
57
+ 'QuarterNoteIcon',
58
+ 'ReplaceModeIcon',
59
+ 'SelectAllIcon',
60
+ 'SharpIcon',
61
+ 'SixteenthNoteIcon',
62
+ 'SlurIcon',
63
+ 'SoloIcon',
64
+ 'SunMoonIcon',
65
+ 'ThirtySecondNoteIcon',
66
+ 'TieIcon',
67
+ 'TripletIcon',
68
+ 'WholeNoteIcon',
68
69
  ];
69
70
  /**
70
71
  * A record, never a parallel array: adding a name above fails to compile until
71
72
  * its shapes are supplied here, where an array would silently offer the old set.
72
73
  */
73
74
  export const NOTATION_ICONS = {
74
- AddMeasureIcon: [
75
+ "AddMeasureIcon": [
75
76
  {
76
- kind: "rect",
77
- x: 3,
78
- y: 7,
79
- width: 1.4,
80
- height: 10,
77
+ "kind": "rect",
78
+ "x": 3,
79
+ "y": 7,
80
+ "width": 1.4,
81
+ "height": 10
81
82
  },
82
83
  {
83
- kind: "rect",
84
- x: 14,
85
- y: 7,
86
- width: 1.4,
87
- height: 10,
84
+ "kind": "rect",
85
+ "x": 14,
86
+ "y": 7,
87
+ "width": 1.4,
88
+ "height": 10
88
89
  },
89
90
  {
90
- kind: "rect",
91
- x: 3,
92
- y: 11.3,
93
- width: 12.4,
94
- height: 1.2,
91
+ "kind": "rect",
92
+ "x": 3,
93
+ "y": 11.3,
94
+ "width": 12.4,
95
+ "height": 1.2
95
96
  },
96
97
  {
97
- kind: "rect",
98
- x: 16.4,
99
- y: 3.2,
100
- width: 6.4,
101
- height: 1.9,
102
- rx: 0.6,
98
+ "kind": "rect",
99
+ "x": 16.4,
100
+ "y": 3.2,
101
+ "width": 6.4,
102
+ "height": 1.9,
103
+ "rx": 0.6
103
104
  },
104
105
  {
105
- kind: "rect",
106
- x: 18.65,
107
- y: 0.95,
108
- width: 1.9,
109
- height: 6.4,
110
- rx: 0.6,
111
- },
106
+ "kind": "rect",
107
+ "x": 18.65,
108
+ "y": 0.95,
109
+ "width": 1.9,
110
+ "height": 6.4,
111
+ "rx": 0.6
112
+ }
112
113
  ],
113
- ArpeggioIcon: [
114
+ "ArpeggioIcon": [
114
115
  {
115
- kind: "path",
116
- d: "M7 20c-2-2 2-4 0-6s2-4 0-6",
117
- stroke: "currentColor",
118
- strokeWidth: 1.6,
119
- strokeLinecap: "round",
120
- strokeLinejoin: "round",
116
+ "kind": "path",
117
+ "d": "M7 20c-2-2 2-4 0-6s2-4 0-6",
118
+ "stroke": "currentColor",
119
+ "strokeWidth": 1.6,
120
+ "strokeLinecap": "round",
121
+ "strokeLinejoin": "round"
121
122
  },
122
123
  {
123
- kind: "circle",
124
- cx: 15,
125
- cy: 7,
126
- r: 2.1,
127
- fill: "currentColor",
124
+ "kind": "circle",
125
+ "cx": 15,
126
+ "cy": 7,
127
+ "r": 2.1,
128
+ "fill": "currentColor"
128
129
  },
129
130
  {
130
- kind: "circle",
131
- cx: 15,
132
- cy: 13,
133
- r: 2.1,
134
- fill: "currentColor",
131
+ "kind": "circle",
132
+ "cx": 15,
133
+ "cy": 13,
134
+ "r": 2.1,
135
+ "fill": "currentColor"
135
136
  },
136
137
  {
137
- kind: "circle",
138
- cx: 15,
139
- cy: 19,
140
- r: 2.1,
141
- fill: "currentColor",
142
- },
138
+ "kind": "circle",
139
+ "cx": 15,
140
+ "cy": 19,
141
+ "r": 2.1,
142
+ "fill": "currentColor"
143
+ }
143
144
  ],
144
- ArticulationIcon: [
145
+ "ArticulationIcon": [
145
146
  {
146
- kind: "ellipse",
147
- cx: 12,
148
- cy: 17.2,
149
- rx: 3.6,
150
- ry: 2.55,
151
- transform: "rotate(-20 12 17.2)",
147
+ "kind": "ellipse",
148
+ "cx": 12,
149
+ "cy": 17.2,
150
+ "rx": 3.6,
151
+ "ry": 2.55,
152
+ "transform": "rotate(-20 12 17.2)"
152
153
  },
153
154
  {
154
- kind: "path",
155
- d: "M5.4 6 L18.6 9.6 L18.6 11.8 L5.4 8.2 Z",
155
+ "kind": "path",
156
+ "d": "M5.4 6 L18.6 9.6 L18.6 11.8 L5.4 8.2 Z"
156
157
  },
157
158
  {
158
- kind: "path",
159
- d: "M18.6 9.6 L5.4 13.2 L5.4 11 L18.6 7.4 Z",
160
- },
159
+ "kind": "path",
160
+ "d": "M18.6 9.6 L5.4 13.2 L5.4 11 L18.6 7.4 Z"
161
+ }
161
162
  ],
162
- BeamBreakIcon: [
163
+ "BeamBreakIcon": [
163
164
  {
164
- kind: "path",
165
- d: "M4 18V7M9 18V7M15 18V7M20 18V7",
166
- stroke: "currentColor",
167
- strokeWidth: 1.6,
168
- strokeLinecap: "round",
165
+ "kind": "path",
166
+ "d": "M4 18V7M9 18V7M15 18V7M20 18V7",
167
+ "stroke": "currentColor",
168
+ "strokeWidth": 1.6,
169
+ "strokeLinecap": "round"
169
170
  },
170
171
  {
171
- kind: "path",
172
- d: "M4 7h5",
173
- stroke: "currentColor",
174
- strokeWidth: 2.6,
175
- strokeLinecap: "round",
172
+ "kind": "path",
173
+ "d": "M4 7h5",
174
+ "stroke": "currentColor",
175
+ "strokeWidth": 2.6,
176
+ "strokeLinecap": "round"
176
177
  },
177
178
  {
178
- kind: "path",
179
- d: "M15 7h5",
180
- stroke: "currentColor",
181
- strokeWidth: 2.6,
182
- strokeLinecap: "round",
179
+ "kind": "path",
180
+ "d": "M15 7h5",
181
+ "stroke": "currentColor",
182
+ "strokeWidth": 2.6,
183
+ "strokeLinecap": "round"
183
184
  },
184
185
  {
185
- kind: "path",
186
- d: "M12 4v5",
187
- stroke: "currentColor",
188
- strokeWidth: 1.4,
189
- strokeLinecap: "round",
190
- strokeDasharray: "1.5 1.8",
191
- },
186
+ "kind": "path",
187
+ "d": "M12 4v5",
188
+ "stroke": "currentColor",
189
+ "strokeWidth": 1.4,
190
+ "strokeLinecap": "round",
191
+ "strokeDasharray": "1.5 1.8"
192
+ }
192
193
  ],
193
- BeamNoneIcon: [
194
+ "BeamNoneIcon": [
194
195
  {
195
- kind: "path",
196
- d: "M7 19V6M17 19V6",
197
- stroke: "currentColor",
198
- strokeWidth: 1.6,
199
- strokeLinecap: "round",
196
+ "kind": "path",
197
+ "d": "M7 19V6M17 19V6",
198
+ "stroke": "currentColor",
199
+ "strokeWidth": 1.6,
200
+ "strokeLinecap": "round"
200
201
  },
201
202
  {
202
- kind: "path",
203
- d: "M7 6c3 1 4 3 3 5M17 6c3 1 4 3 3 5",
204
- stroke: "currentColor",
205
- strokeWidth: 1.6,
206
- strokeLinecap: "round",
207
- strokeLinejoin: "round",
203
+ "kind": "path",
204
+ "d": "M7 6c3 1 4 3 3 5M17 6c3 1 4 3 3 5",
205
+ "stroke": "currentColor",
206
+ "strokeWidth": 1.6,
207
+ "strokeLinecap": "round",
208
+ "strokeLinejoin": "round"
208
209
  },
209
210
  {
210
- kind: "circle",
211
- cx: 5,
212
- cy: 19,
213
- r: 1.9,
214
- fill: "currentColor",
211
+ "kind": "circle",
212
+ "cx": 5,
213
+ "cy": 19,
214
+ "r": 1.9,
215
+ "fill": "currentColor"
215
216
  },
216
217
  {
217
- kind: "circle",
218
- cx: 15,
219
- cy: 19,
220
- r: 1.9,
221
- fill: "currentColor",
222
- },
218
+ "kind": "circle",
219
+ "cx": 15,
220
+ "cy": 19,
221
+ "r": 1.9,
222
+ "fill": "currentColor"
223
+ }
223
224
  ],
224
- ChordIcon: [
225
- {
226
- kind: "ellipse",
227
- cx: 8.6,
228
- cy: 17.4,
229
- rx: 3.4,
230
- ry: 2.4,
231
- transform: "rotate(-20 8.6 17.4)",
232
- },
233
- {
234
- kind: "ellipse",
235
- cx: 8.6,
236
- cy: 14,
237
- rx: 3.4,
238
- ry: 2.4,
239
- transform: "rotate(-20 8.6 13.999999999999998)",
240
- },
241
- {
242
- kind: "ellipse",
243
- cx: 8.6,
244
- cy: 10.6,
245
- rx: 3.4,
246
- ry: 2.4,
247
- transform: "rotate(-20 8.6 10.599999999999998)",
248
- },
249
- {
250
- kind: "rect",
251
- x: 10.75,
252
- y: 3,
253
- width: 1.25,
254
- height: 7.6,
255
- },
225
+ "ChordIcon": [
226
+ {
227
+ "kind": "ellipse",
228
+ "cx": 8.6,
229
+ "cy": 17.4,
230
+ "rx": 3.4,
231
+ "ry": 2.4,
232
+ "transform": "rotate(-20 8.6 17.4)"
233
+ },
234
+ {
235
+ "kind": "ellipse",
236
+ "cx": 8.6,
237
+ "cy": 14,
238
+ "rx": 3.4,
239
+ "ry": 2.4,
240
+ "transform": "rotate(-20 8.6 13.999999999999998)"
241
+ },
242
+ {
243
+ "kind": "ellipse",
244
+ "cx": 8.6,
245
+ "cy": 10.6,
246
+ "rx": 3.4,
247
+ "ry": 2.4,
248
+ "transform": "rotate(-20 8.6 10.599999999999998)"
249
+ },
250
+ {
251
+ "kind": "rect",
252
+ "x": 10.75,
253
+ "y": 3,
254
+ "width": 1.25,
255
+ "height": 7.6
256
+ }
256
257
  ],
257
- ContinuousLayoutIcon: [
258
+ "ContinuousLayoutIcon": [
258
259
  {
259
- kind: "rect",
260
- x: 2.4,
261
- y: 11.2,
262
- width: 19.2,
263
- height: 1.7,
264
- rx: 0.6,
260
+ "kind": "rect",
261
+ "x": 2.4,
262
+ "y": 11.2,
263
+ "width": 19.2,
264
+ "height": 1.7,
265
+ "rx": 0.6
265
266
  },
266
267
  {
267
- kind: "path",
268
- d: "M6.6 6.6 L2 12 L6.6 17.4 Z",
268
+ "kind": "path",
269
+ "d": "M6.6 6.6 L2 12 L6.6 17.4 Z"
269
270
  },
270
271
  {
271
- kind: "path",
272
- d: "M17.4 6.6 L22 12 L17.4 17.4 Z",
273
- },
272
+ "kind": "path",
273
+ "d": "M17.4 6.6 L22 12 L17.4 17.4 Z"
274
+ }
274
275
  ],
275
- CrescendoIcon: [
276
- {
277
- kind: "path",
278
- d: "M4 12L20 6M4 12l16 6",
279
- stroke: "currentColor",
280
- strokeWidth: 1.6,
281
- strokeLinecap: "round",
282
- },
276
+ "CrescendoIcon": [
277
+ {
278
+ "kind": "path",
279
+ "d": "M4 12L20 6M4 12l16 6",
280
+ "stroke": "currentColor",
281
+ "strokeWidth": 1.6,
282
+ "strokeLinecap": "round"
283
+ }
283
284
  ],
284
- DeleteMeasureIcon: [
285
+ "DeleteMeasureIcon": [
285
286
  {
286
- kind: "rect",
287
- x: 3,
288
- y: 7,
289
- width: 1.4,
290
- height: 10,
287
+ "kind": "rect",
288
+ "x": 3,
289
+ "y": 7,
290
+ "width": 1.4,
291
+ "height": 10
291
292
  },
292
293
  {
293
- kind: "rect",
294
- x: 14,
295
- y: 7,
296
- width: 1.4,
297
- height: 10,
294
+ "kind": "rect",
295
+ "x": 14,
296
+ "y": 7,
297
+ "width": 1.4,
298
+ "height": 10
298
299
  },
299
300
  {
300
- kind: "rect",
301
- x: 3,
302
- y: 11.3,
303
- width: 12.4,
304
- height: 1.2,
301
+ "kind": "rect",
302
+ "x": 3,
303
+ "y": 11.3,
304
+ "width": 12.4,
305
+ "height": 1.2
305
306
  },
306
307
  {
307
- kind: "path",
308
- d: "M15 19 L22 12",
309
- fill: "none",
310
- stroke: "currentColor",
311
- strokeWidth: 1.8,
312
- strokeLinecap: "round",
313
- },
308
+ "kind": "path",
309
+ "d": "M15 19 L22 12",
310
+ "fill": "none",
311
+ "stroke": "currentColor",
312
+ "strokeWidth": 1.8,
313
+ "strokeLinecap": "round"
314
+ }
314
315
  ],
315
- DiminuendoIcon: [
316
- {
317
- kind: "path",
318
- d: "M20 12L4 6M20 12L4 18",
319
- stroke: "currentColor",
320
- strokeWidth: 1.6,
321
- strokeLinecap: "round",
322
- },
316
+ "DiminuendoIcon": [
317
+ {
318
+ "kind": "path",
319
+ "d": "M20 12L4 6M20 12L4 18",
320
+ "stroke": "currentColor",
321
+ "strokeWidth": 1.6,
322
+ "strokeLinecap": "round"
323
+ }
323
324
  ],
324
- DottedIcon: [
325
+ "DottedIcon": [
325
326
  {
326
- kind: "ellipse",
327
- cx: 9,
328
- cy: 17.4,
329
- rx: 3.4,
330
- ry: 2.4,
331
- transform: "rotate(-20 9 17.4)",
327
+ "kind": "ellipse",
328
+ "cx": 9,
329
+ "cy": 17.4,
330
+ "rx": 3.4,
331
+ "ry": 2.4,
332
+ "transform": "rotate(-20 9 17.4)"
332
333
  },
333
334
  {
334
- kind: "rect",
335
- x: 11.4,
336
- y: 4,
337
- width: 1.25,
338
- height: 13.4,
335
+ "kind": "rect",
336
+ "x": 11.4,
337
+ "y": 4,
338
+ "width": 1.25,
339
+ "height": 13.4
339
340
  },
340
341
  {
341
- kind: "circle",
342
- cx: 16.6,
343
- cy: 17.4,
344
- r: 1.7,
345
- },
342
+ "kind": "circle",
343
+ "cx": 16.6,
344
+ "cy": 17.4,
345
+ "r": 1.7
346
+ }
346
347
  ],
347
- DoubleFlatIcon: [
348
+ "DoubleFlatIcon": [
348
349
  {
349
- kind: "rect",
350
- x: 3.9,
351
- y: 3.6,
352
- width: 1.25,
353
- height: 16,
354
- rx: 0.4,
350
+ "kind": "rect",
351
+ "x": 3.9,
352
+ "y": 3.6,
353
+ "width": 1.25,
354
+ "height": 16,
355
+ "rx": 0.4
355
356
  },
356
357
  {
357
- kind: "path",
358
- d: "M5.15 11.6\n C8.387 10.2 9.791 13.4 7.529 16.1\n C6.671 17.1 5.735 18.1 5.15 18.8\n Z",
358
+ "kind": "path",
359
+ "d": "M5.15 11.6\n C8.387 10.2 9.791 13.4 7.529 16.1\n C6.671 17.1 5.735 18.1 5.15 18.8\n Z"
359
360
  },
360
361
  {
361
- kind: "rect",
362
- x: 11.6,
363
- y: 3.6,
364
- width: 1.25,
365
- height: 16,
366
- rx: 0.4,
362
+ "kind": "rect",
363
+ "x": 11.6,
364
+ "y": 3.6,
365
+ "width": 1.25,
366
+ "height": 16,
367
+ "rx": 0.4
367
368
  },
368
369
  {
369
- kind: "path",
370
- d: "M12.85 11.6\n C16.087 10.2 17.491 13.4 15.229 16.1\n C14.370999999999999 17.1 13.434999999999999 18.1 12.85 18.8\n Z",
371
- },
370
+ "kind": "path",
371
+ "d": "M12.85 11.6\n C16.087 10.2 17.491 13.4 15.229 16.1\n C14.370999999999999 17.1 13.434999999999999 18.1 12.85 18.8\n Z"
372
+ }
372
373
  ],
373
- DoubleSharpIcon: [
374
+ "DoubleSharpIcon": [
374
375
  {
375
- kind: "path",
376
- d: "M4.8 4.8 L12 9.6 L19.2 4.8 L14.4 12 L19.2 19.2 L12 14.4 L4.8 19.2 L9.6 12 Z",
377
- },
376
+ "kind": "path",
377
+ "d": "M4.8 4.8 L12 9.6 L19.2 4.8 L14.4 12 L19.2 19.2 L12 14.4 L4.8 19.2 L9.6 12 Z"
378
+ }
378
379
  ],
379
- EighthNoteIcon: [
380
+ "EighthNoteIcon": [
380
381
  {
381
- kind: "ellipse",
382
- cx: 8.6,
383
- cy: 17.4,
384
- rx: 3.6,
385
- ry: 2.55,
386
- transform: "rotate(-20 8.6 17.4)",
382
+ "kind": "ellipse",
383
+ "cx": 8.6,
384
+ "cy": 17.4,
385
+ "rx": 3.6,
386
+ "ry": 2.55,
387
+ "transform": "rotate(-20 8.6 17.4)"
387
388
  },
388
389
  {
389
- kind: "rect",
390
- x: 10.75,
391
- y: 3,
392
- width: 1.25,
393
- height: 14.4,
390
+ "kind": "rect",
391
+ "x": 10.75,
392
+ "y": 3,
393
+ "width": 1.25,
394
+ "height": 14.4
394
395
  },
395
396
  {
396
- kind: "path",
397
- d: "M12 3\n C16.2 4.5 17.7 6.6 16.6 8.4\n C17.1 6.9 15.2 5.3 12 5.7\n Z",
398
- },
397
+ "kind": "path",
398
+ "d": "M12 3\n C16.2 4.5 17.7 6.6 16.6 8.4\n C17.1 6.9 15.2 5.3 12 5.7\n Z"
399
+ }
399
400
  ],
400
- FermataIcon: [
401
+ "FermataIcon": [
401
402
  {
402
- kind: "path",
403
- d: "M4 12c2.5-6 13.5-6 16 0",
404
- stroke: "currentColor",
405
- strokeWidth: 1.6,
406
- strokeLinecap: "round",
403
+ "kind": "path",
404
+ "d": "M4 12c2.5-6 13.5-6 16 0",
405
+ "stroke": "currentColor",
406
+ "strokeWidth": 1.6,
407
+ "strokeLinecap": "round"
407
408
  },
408
409
  {
409
- kind: "circle",
410
- cx: 12,
411
- cy: 8.5,
412
- r: 1.5,
413
- fill: "currentColor",
410
+ "kind": "circle",
411
+ "cx": 12,
412
+ "cy": 8.5,
413
+ "r": 1.5,
414
+ "fill": "currentColor"
414
415
  },
415
416
  {
416
- kind: "circle",
417
- cx: 12,
418
- cy: 17.5,
419
- r: 2.6,
420
- fill: "currentColor",
421
- },
417
+ "kind": "circle",
418
+ "cx": 12,
419
+ "cy": 17.5,
420
+ "r": 2.6,
421
+ "fill": "currentColor"
422
+ }
422
423
  ],
423
- FlatIcon: [
424
+ "FlatIcon": [
424
425
  {
425
- kind: "rect",
426
- x: 9,
427
- y: 3.6,
428
- width: 1.25,
429
- height: 16,
430
- rx: 0.4,
426
+ "kind": "rect",
427
+ "x": 9,
428
+ "y": 3.6,
429
+ "width": 1.25,
430
+ "height": 16,
431
+ "rx": 0.4
431
432
  },
432
433
  {
433
- kind: "path",
434
- d: "M10.25 11.6\n C14.4 10.2 16.2 13.4 13.3 16.1\n C12.2 17.1 11 18.1 10.25 18.8\n Z",
435
- },
434
+ "kind": "path",
435
+ "d": "M10.25 11.6\n C14.4 10.2 16.2 13.4 13.3 16.1\n C12.2 17.1 11 18.1 10.25 18.8\n Z"
436
+ }
436
437
  ],
437
- GoToStartIcon: [
438
+ "GoToStartIcon": [
438
439
  {
439
- kind: "rect",
440
- x: 3.4,
441
- y: 5.4,
442
- width: 2.2,
443
- height: 13.2,
444
- rx: 0.6,
440
+ "kind": "rect",
441
+ "x": 3.4,
442
+ "y": 5.4,
443
+ "width": 2.2,
444
+ "height": 13.2,
445
+ "rx": 0.6
445
446
  },
446
447
  {
447
- kind: "path",
448
- d: "M13.4 5.4 L6.8 12 L13.4 18.6 Z",
448
+ "kind": "path",
449
+ "d": "M13.4 5.4 L6.8 12 L13.4 18.6 Z"
449
450
  },
450
451
  {
451
- kind: "path",
452
- d: "M20.5 5.4 L13.9 12 L20.5 18.6 Z",
453
- },
452
+ "kind": "path",
453
+ "d": "M20.5 5.4 L13.9 12 L20.5 18.6 Z"
454
+ }
454
455
  ],
455
- HalfNoteIcon: [
456
+ "HalfNoteIcon": [
456
457
  {
457
- kind: "path",
458
- fillRule: "evenodd",
459
- d: "M5.22 18.63A3.6 2.55 -20 1 0 11.98 16.17A3.6 2.55 -20 1 0 5.22 18.63ZM6.25 18.26A2.5 1 -20 1 0 10.95 16.54A2.5 1 -20 1 0 6.25 18.26Z",
458
+ "kind": "path",
459
+ "fillRule": "evenodd",
460
+ "d": "M5.22 18.63A3.6 2.55 -20 1 0 11.98 16.17A3.6 2.55 -20 1 0 5.22 18.63ZM6.25 18.26A2.5 1 -20 1 0 10.95 16.54A2.5 1 -20 1 0 6.25 18.26Z"
460
461
  },
461
462
  {
462
- kind: "rect",
463
- x: 10.75,
464
- y: 3,
465
- width: 1.25,
466
- height: 14.4,
467
- },
463
+ "kind": "rect",
464
+ "x": 10.75,
465
+ "y": 3,
466
+ "width": 1.25,
467
+ "height": 14.4
468
+ }
468
469
  ],
469
- InsertModeIcon: [
470
- {
471
- kind: "ellipse",
472
- cx: 4.6,
473
- cy: 17.4,
474
- rx: 2.6,
475
- ry: 1.9,
476
- },
477
- {
478
- kind: "ellipse",
479
- cx: 19.4,
480
- cy: 17.4,
481
- rx: 2.6,
482
- ry: 1.9,
483
- },
484
- {
485
- kind: "path",
486
- d: "M12 19 L12 6 M8.6 9.4 L12 6 L15.4 9.4",
487
- fill: "none",
488
- stroke: "currentColor",
489
- strokeWidth: 1.6,
490
- strokeLinecap: "round",
491
- strokeLinejoin: "round",
492
- },
470
+ "InsertModeIcon": [
471
+ {
472
+ "kind": "ellipse",
473
+ "cx": 4.6,
474
+ "cy": 17.4,
475
+ "rx": 2.6,
476
+ "ry": 1.9
477
+ },
478
+ {
479
+ "kind": "ellipse",
480
+ "cx": 19.4,
481
+ "cy": 17.4,
482
+ "rx": 2.6,
483
+ "ry": 1.9
484
+ },
485
+ {
486
+ "kind": "path",
487
+ "d": "M12 19 L12 6 M8.6 9.4 L12 6 L15.4 9.4",
488
+ "fill": "none",
489
+ "stroke": "currentColor",
490
+ "strokeWidth": 1.6,
491
+ "strokeLinecap": "round",
492
+ "strokeLinejoin": "round"
493
+ }
493
494
  ],
494
- InsertNoteIcon: [
495
+ "InsertNoteIcon": [
495
496
  {
496
- kind: "group",
497
- transform: "translate(-0.6 2) scale(0.86)",
498
- shapes: [
497
+ "kind": "group",
498
+ "transform": "translate(-0.6 2) scale(0.86)",
499
+ "shapes": [
499
500
  {
500
- kind: "ellipse",
501
- cx: 8.6,
502
- cy: 17.4,
503
- rx: 3.6,
504
- ry: 2.55,
505
- transform: "rotate(-20 8.6 17.4)",
501
+ "kind": "ellipse",
502
+ "cx": 8.6,
503
+ "cy": 17.4,
504
+ "rx": 3.6,
505
+ "ry": 2.55,
506
+ "transform": "rotate(-20 8.6 17.4)"
506
507
  },
507
508
  {
508
- kind: "rect",
509
- x: 10.75,
510
- y: 3,
511
- width: 1.25,
512
- height: 14.4,
513
- },
514
- ],
515
- },
516
- {
517
- kind: "rect",
518
- x: 16.4,
519
- y: 3.2,
520
- width: 6.4,
521
- height: 1.9,
522
- rx: 0.6,
523
- },
524
- {
525
- kind: "rect",
526
- x: 18.65,
527
- y: 0.95,
528
- width: 1.9,
529
- height: 6.4,
530
- rx: 0.6,
531
- },
509
+ "kind": "rect",
510
+ "x": 10.75,
511
+ "y": 3,
512
+ "width": 1.25,
513
+ "height": 14.4
514
+ }
515
+ ]
516
+ },
517
+ {
518
+ "kind": "rect",
519
+ "x": 16.4,
520
+ "y": 3.2,
521
+ "width": 6.4,
522
+ "height": 1.9,
523
+ "rx": 0.6
524
+ },
525
+ {
526
+ "kind": "rect",
527
+ "x": 18.65,
528
+ "y": 0.95,
529
+ "width": 1.9,
530
+ "height": 6.4,
531
+ "rx": 0.6
532
+ }
532
533
  ],
533
- InsertRestIcon: [
534
+ "InsertRestIcon": [
534
535
  {
535
- kind: "group",
536
- transform: "translate(-1.2 1.4) scale(0.88)",
537
- shapes: [
536
+ "kind": "group",
537
+ "transform": "translate(-1.2 1.4) scale(0.88)",
538
+ "shapes": [
538
539
  {
539
- kind: "path",
540
- fill: "none",
541
- stroke: "currentColor",
542
- strokeWidth: 2.3,
543
- strokeLinecap: "round",
544
- strokeLinejoin: "round",
545
- d: "M8.6 5.6 L14.4 11.2 L9.4 14.2 L13.6 18.2",
540
+ "kind": "path",
541
+ "fill": "none",
542
+ "stroke": "currentColor",
543
+ "strokeWidth": 2.3,
544
+ "strokeLinecap": "round",
545
+ "strokeLinejoin": "round",
546
+ "d": "M8.6 5.6 L14.4 11.2 L9.4 14.2 L13.6 18.2"
546
547
  },
547
548
  {
548
- kind: "path",
549
- d: "M13.9 17.7 C10.6 16.1 8.8 17.7 9.8 20.4 C7.4 18.2 7.6 14.4 11.6 15.3 Z",
550
- },
551
- ],
552
- },
553
- {
554
- kind: "rect",
555
- x: 16.4,
556
- y: 3.2,
557
- width: 6.4,
558
- height: 1.9,
559
- rx: 0.6,
560
- },
561
- {
562
- kind: "rect",
563
- x: 18.65,
564
- y: 0.95,
565
- width: 1.9,
566
- height: 6.4,
567
- rx: 0.6,
568
- },
549
+ "kind": "path",
550
+ "d": "M13.9 17.7 C10.6 16.1 8.8 17.7 9.8 20.4 C7.4 18.2 7.6 14.4 11.6 15.3 Z"
551
+ }
552
+ ]
553
+ },
554
+ {
555
+ "kind": "rect",
556
+ "x": 16.4,
557
+ "y": 3.2,
558
+ "width": 6.4,
559
+ "height": 1.9,
560
+ "rx": 0.6
561
+ },
562
+ {
563
+ "kind": "rect",
564
+ "x": 18.65,
565
+ "y": 0.95,
566
+ "width": 1.9,
567
+ "height": 6.4,
568
+ "rx": 0.6
569
+ }
569
570
  ],
570
- MetronomeIcon: [
571
+ "MetronomeIcon": [
571
572
  {
572
- kind: "path",
573
- d: "M9.2 3.4 L14.8 3.4 L18.6 20.6 L5.4 20.6 Z",
574
- fill: "none",
575
- stroke: "currentColor",
576
- strokeWidth: 1.8,
577
- strokeLinejoin: "round",
573
+ "kind": "path",
574
+ "d": "M9.2 3.4 L14.8 3.4 L18.6 20.6 L5.4 20.6 Z",
575
+ "fill": "none",
576
+ "stroke": "currentColor",
577
+ "strokeWidth": 1.8,
578
+ "strokeLinejoin": "round"
578
579
  },
579
580
  {
580
- kind: "rect",
581
- x: 6.6,
582
- y: 16.4,
583
- width: 10.8,
584
- height: 1.6,
581
+ "kind": "rect",
582
+ "x": 6.6,
583
+ "y": 16.4,
584
+ "width": 10.8,
585
+ "height": 1.6
585
586
  },
586
587
  {
587
- kind: "path",
588
- d: "M15.8 6.6 L10.6 17 L9.1 16.3 L14.3 5.9 Z",
588
+ "kind": "path",
589
+ "d": "M15.8 6.6 L10.6 17 L9.1 16.3 L14.3 5.9 Z"
589
590
  },
590
591
  {
591
- kind: "rect",
592
- x: 11.9,
593
- y: 9.6,
594
- width: 3.4,
595
- height: 2.4,
596
- rx: 0.5,
597
- transform: "rotate(-24 13.6 10.8)",
598
- },
592
+ "kind": "rect",
593
+ "x": 11.9,
594
+ "y": 9.6,
595
+ "width": 3.4,
596
+ "height": 2.4,
597
+ "rx": 0.5,
598
+ "transform": "rotate(-24 13.6 10.8)"
599
+ }
599
600
  ],
600
- NaturalIcon: [
601
+ "NaturalIcon": [
601
602
  {
602
- kind: "rect",
603
- x: 8.2,
604
- y: 3,
605
- width: 1.2,
606
- height: 13.8,
603
+ "kind": "rect",
604
+ "x": 8.2,
605
+ "y": 3,
606
+ "width": 1.2,
607
+ "height": 13.8
607
608
  },
608
609
  {
609
- kind: "rect",
610
- x: 14.6,
611
- y: 7.2,
612
- width: 1.2,
613
- height: 13.8,
610
+ "kind": "rect",
611
+ "x": 14.6,
612
+ "y": 7.2,
613
+ "width": 1.2,
614
+ "height": 13.8
614
615
  },
615
616
  {
616
- kind: "path",
617
- d: "M8.2 9.9 L15.8 8.5 L15.8 10.4 L8.2 11.8 Z",
617
+ "kind": "path",
618
+ "d": "M8.2 9.9 L15.8 8.5 L15.8 10.4 L8.2 11.8 Z"
618
619
  },
619
620
  {
620
- kind: "path",
621
- d: "M8.2 14.5 L15.8 13.1 L15.8 15 L8.2 16.4 Z",
622
- },
621
+ "kind": "path",
622
+ "d": "M8.2 14.5 L15.8 13.1 L15.8 15 L8.2 16.4 Z"
623
+ }
623
624
  ],
624
- NextMeasureIcon: [
625
+ "NextMeasureIcon": [
625
626
  {
626
- kind: "path",
627
- d: "M5.6 5.4 L15.4 12 L5.6 18.6 Z",
627
+ "kind": "path",
628
+ "d": "M5.6 5.4 L15.4 12 L5.6 18.6 Z"
628
629
  },
629
630
  {
630
- kind: "rect",
631
- x: 17.2,
632
- y: 5.4,
633
- width: 2.2,
634
- height: 13.2,
635
- rx: 0.6,
636
- },
631
+ "kind": "rect",
632
+ "x": 17.2,
633
+ "y": 5.4,
634
+ "width": 2.2,
635
+ "height": 13.2,
636
+ "rx": 0.6
637
+ }
637
638
  ],
638
- OrnamentIcon: [
639
- {
640
- kind: "path",
641
- d: "M4 15c1.6-4 3.4-4 5 0s3.4 4 5 0 3.4-4 5 0",
642
- stroke: "currentColor",
643
- strokeWidth: 1.6,
644
- strokeLinecap: "round",
645
- strokeLinejoin: "round",
646
- },
647
- {
648
- kind: "path",
649
- d: "M5 9h5M7.5 9V6",
650
- stroke: "currentColor",
651
- strokeWidth: 1.6,
652
- strokeLinecap: "round",
653
- },
639
+ "OrnamentIcon": [
640
+ {
641
+ "kind": "path",
642
+ "d": "M4 15c1.6-4 3.4-4 5 0s3.4 4 5 0 3.4-4 5 0",
643
+ "stroke": "currentColor",
644
+ "strokeWidth": 1.6,
645
+ "strokeLinecap": "round",
646
+ "strokeLinejoin": "round"
647
+ },
648
+ {
649
+ "kind": "path",
650
+ "d": "M5 9h5M7.5 9V6",
651
+ "stroke": "currentColor",
652
+ "strokeWidth": 1.6,
653
+ "strokeLinecap": "round"
654
+ }
654
655
  ],
655
- PageLayoutIcon: [
656
- {
657
- kind: "rect",
658
- x: 4,
659
- y: 3,
660
- width: 16,
661
- height: 18,
662
- rx: 1.8,
663
- fill: "none",
664
- stroke: "currentColor",
665
- strokeWidth: 1.8,
666
- },
667
- {
668
- kind: "rect",
669
- x: 7,
670
- y: 7.4,
671
- width: 10,
672
- height: 1.6,
673
- rx: 0.6,
674
- },
675
- {
676
- kind: "rect",
677
- x: 7,
678
- y: 11.2,
679
- width: 10,
680
- height: 1.6,
681
- rx: 0.6,
682
- },
683
- {
684
- kind: "rect",
685
- x: 7,
686
- y: 15,
687
- width: 6.4,
688
- height: 1.6,
689
- rx: 0.6,
690
- },
656
+ "PageLayoutIcon": [
657
+ {
658
+ "kind": "rect",
659
+ "x": 4,
660
+ "y": 3,
661
+ "width": 16,
662
+ "height": 18,
663
+ "rx": 1.8,
664
+ "fill": "none",
665
+ "stroke": "currentColor",
666
+ "strokeWidth": 1.8
667
+ },
668
+ {
669
+ "kind": "rect",
670
+ "x": 7,
671
+ "y": 7.4,
672
+ "width": 10,
673
+ "height": 1.6,
674
+ "rx": 0.6
675
+ },
676
+ {
677
+ "kind": "rect",
678
+ "x": 7,
679
+ "y": 11.2,
680
+ "width": 10,
681
+ "height": 1.6,
682
+ "rx": 0.6
683
+ },
684
+ {
685
+ "kind": "rect",
686
+ "x": 7,
687
+ "y": 15,
688
+ "width": 6.4,
689
+ "height": 1.6,
690
+ "rx": 0.6
691
+ }
692
+ ],
693
+ "PianoKeysIcon": [
694
+ {
695
+ "kind": "rect",
696
+ "x": 3.6,
697
+ "y": 5,
698
+ "width": 5.2,
699
+ "height": 14,
700
+ "rx": 0.9,
701
+ "fill": "none",
702
+ "stroke": "currentColor",
703
+ "strokeWidth": 1.6
704
+ },
705
+ {
706
+ "kind": "rect",
707
+ "x": 9.4,
708
+ "y": 5,
709
+ "width": 5.2,
710
+ "height": 14,
711
+ "rx": 0.9
712
+ },
713
+ {
714
+ "kind": "rect",
715
+ "x": 15.2,
716
+ "y": 5,
717
+ "width": 5.2,
718
+ "height": 14,
719
+ "rx": 0.9,
720
+ "fill": "none",
721
+ "stroke": "currentColor",
722
+ "strokeWidth": 1.6
723
+ }
691
724
  ],
692
- PreviousMeasureIcon: [
725
+ "PreviousMeasureIcon": [
693
726
  {
694
- kind: "rect",
695
- x: 4.6,
696
- y: 5.4,
697
- width: 2.2,
698
- height: 13.2,
699
- rx: 0.6,
727
+ "kind": "rect",
728
+ "x": 4.6,
729
+ "y": 5.4,
730
+ "width": 2.2,
731
+ "height": 13.2,
732
+ "rx": 0.6
700
733
  },
701
734
  {
702
- kind: "path",
703
- d: "M18.4 5.4 L8.6 12 L18.4 18.6 Z",
704
- },
735
+ "kind": "path",
736
+ "d": "M18.4 5.4 L8.6 12 L18.4 18.6 Z"
737
+ }
705
738
  ],
706
- QuantizeIcon: [
739
+ "QuantizeIcon": [
707
740
  {
708
- kind: "rect",
709
- x: 4.2,
710
- y: 3,
711
- width: 1.1,
712
- height: 18,
713
- rx: 0.4,
714
- opacity: 0.45,
741
+ "kind": "rect",
742
+ "x": 4.2,
743
+ "y": 3,
744
+ "width": 1.1,
745
+ "height": 18,
746
+ "rx": 0.4,
747
+ "opacity": 0.45
715
748
  },
716
749
  {
717
- kind: "rect",
718
- x: 11.45,
719
- y: 3,
720
- width: 1.1,
721
- height: 18,
722
- rx: 0.4,
750
+ "kind": "rect",
751
+ "x": 11.45,
752
+ "y": 3,
753
+ "width": 1.1,
754
+ "height": 18,
755
+ "rx": 0.4
723
756
  },
724
757
  {
725
- kind: "rect",
726
- x: 18.7,
727
- y: 3,
728
- width: 1.1,
729
- height: 18,
730
- rx: 0.4,
731
- opacity: 0.45,
758
+ "kind": "rect",
759
+ "x": 18.7,
760
+ "y": 3,
761
+ "width": 1.1,
762
+ "height": 18,
763
+ "rx": 0.4,
764
+ "opacity": 0.45
732
765
  },
733
766
  {
734
- kind: "ellipse",
735
- cx: 12,
736
- cy: 12,
737
- rx: 3.4,
738
- ry: 2.4,
739
- transform: "rotate(-20 12 12)",
767
+ "kind": "ellipse",
768
+ "cx": 12,
769
+ "cy": 12,
770
+ "rx": 3.4,
771
+ "ry": 2.4,
772
+ "transform": "rotate(-20 12 12)"
740
773
  },
741
774
  {
742
- kind: "path",
743
- d: "M7.4 12 L10.1 9.9 L10.1 14.1 Z",
744
- },
775
+ "kind": "path",
776
+ "d": "M7.4 12 L10.1 9.9 L10.1 14.1 Z"
777
+ }
745
778
  ],
746
- QuarterNoteIcon: [
747
- {
748
- kind: "ellipse",
749
- cx: 8.6,
750
- cy: 17.4,
751
- rx: 3.6,
752
- ry: 2.55,
753
- transform: "rotate(-20 8.6 17.4)",
754
- },
755
- {
756
- kind: "rect",
757
- x: 10.75,
758
- y: 3,
759
- width: 1.25,
760
- height: 14.4,
761
- },
779
+ "QuarterNoteIcon": [
780
+ {
781
+ "kind": "ellipse",
782
+ "cx": 8.6,
783
+ "cy": 17.4,
784
+ "rx": 3.6,
785
+ "ry": 2.55,
786
+ "transform": "rotate(-20 8.6 17.4)"
787
+ },
788
+ {
789
+ "kind": "rect",
790
+ "x": 10.75,
791
+ "y": 3,
792
+ "width": 1.25,
793
+ "height": 14.4
794
+ }
762
795
  ],
763
- ReplaceModeIcon: [
764
- {
765
- kind: "ellipse",
766
- cx: 12,
767
- cy: 17.4,
768
- rx: 3.4,
769
- ry: 2.4,
770
- },
771
- {
772
- kind: "path",
773
- d: "M12 12.4 L12 4.5 M8.6 7.9 L12 4.5 L15.4 7.9",
774
- fill: "none",
775
- stroke: "currentColor",
776
- strokeWidth: 1.6,
777
- strokeLinecap: "round",
778
- strokeLinejoin: "round",
779
- },
796
+ "ReplaceModeIcon": [
797
+ {
798
+ "kind": "ellipse",
799
+ "cx": 12,
800
+ "cy": 17.4,
801
+ "rx": 3.4,
802
+ "ry": 2.4
803
+ },
804
+ {
805
+ "kind": "path",
806
+ "d": "M12 12.4 L12 4.5 M8.6 7.9 L12 4.5 L15.4 7.9",
807
+ "fill": "none",
808
+ "stroke": "currentColor",
809
+ "strokeWidth": 1.6,
810
+ "strokeLinecap": "round",
811
+ "strokeLinejoin": "round"
812
+ }
780
813
  ],
781
- SelectAllIcon: [
782
- {
783
- kind: "rect",
784
- x: 3,
785
- y: 5,
786
- width: 18,
787
- height: 14,
788
- rx: 1.6,
789
- fill: "none",
790
- stroke: "currentColor",
791
- strokeWidth: 1.8,
792
- strokeDasharray: "3.4 2.6",
793
- },
794
- {
795
- kind: "ellipse",
796
- cx: 9,
797
- cy: 14.2,
798
- rx: 2.2,
799
- ry: 1.6,
800
- transform: "rotate(-20 9 14.2)",
801
- },
802
- {
803
- kind: "rect",
804
- x: 10.8,
805
- y: 8.4,
806
- width: 0.9,
807
- height: 5.8,
808
- },
809
- {
810
- kind: "ellipse",
811
- cx: 15.4,
812
- cy: 14.2,
813
- rx: 2.2,
814
- ry: 1.6,
815
- transform: "rotate(-20 15.4 14.2)",
816
- },
817
- {
818
- kind: "rect",
819
- x: 17.2,
820
- y: 8.4,
821
- width: 0.9,
822
- height: 5.8,
823
- },
814
+ "SelectAllIcon": [
815
+ {
816
+ "kind": "rect",
817
+ "x": 3,
818
+ "y": 5,
819
+ "width": 18,
820
+ "height": 14,
821
+ "rx": 1.6,
822
+ "fill": "none",
823
+ "stroke": "currentColor",
824
+ "strokeWidth": 1.8,
825
+ "strokeDasharray": "3.4 2.6"
826
+ },
827
+ {
828
+ "kind": "ellipse",
829
+ "cx": 9,
830
+ "cy": 14.2,
831
+ "rx": 2.2,
832
+ "ry": 1.6,
833
+ "transform": "rotate(-20 9 14.2)"
834
+ },
835
+ {
836
+ "kind": "rect",
837
+ "x": 10.8,
838
+ "y": 8.4,
839
+ "width": 0.9,
840
+ "height": 5.8
841
+ },
842
+ {
843
+ "kind": "ellipse",
844
+ "cx": 15.4,
845
+ "cy": 14.2,
846
+ "rx": 2.2,
847
+ "ry": 1.6,
848
+ "transform": "rotate(-20 15.4 14.2)"
849
+ },
850
+ {
851
+ "kind": "rect",
852
+ "x": 17.2,
853
+ "y": 8.4,
854
+ "width": 0.9,
855
+ "height": 5.8
856
+ }
824
857
  ],
825
- SharpIcon: [
858
+ "SharpIcon": [
826
859
  {
827
- kind: "rect",
828
- x: 9,
829
- y: 4.2,
830
- width: 1.3,
831
- height: 15.6,
860
+ "kind": "rect",
861
+ "x": 9,
862
+ "y": 4.2,
863
+ "width": 1.3,
864
+ "height": 15.6
832
865
  },
833
866
  {
834
- kind: "rect",
835
- x: 13.7,
836
- y: 4.2,
837
- width: 1.3,
838
- height: 15.6,
867
+ "kind": "rect",
868
+ "x": 13.7,
869
+ "y": 4.2,
870
+ "width": 1.3,
871
+ "height": 15.6
839
872
  },
840
873
  {
841
- kind: "path",
842
- d: "M6.8 10.6 L17.2 8.9 L17.2 11.3 L6.8 13 Z",
874
+ "kind": "path",
875
+ "d": "M6.8 10.6 L17.2 8.9 L17.2 11.3 L6.8 13 Z"
843
876
  },
844
877
  {
845
- kind: "path",
846
- d: "M6.8 15 L17.2 13.3 L17.2 15.7 L6.8 17.4 Z",
847
- },
878
+ "kind": "path",
879
+ "d": "M6.8 15 L17.2 13.3 L17.2 15.7 L6.8 17.4 Z"
880
+ }
848
881
  ],
849
- SixteenthNoteIcon: [
882
+ "SixteenthNoteIcon": [
850
883
  {
851
- kind: "ellipse",
852
- cx: 8.6,
853
- cy: 17.4,
854
- rx: 3.6,
855
- ry: 2.55,
856
- transform: "rotate(-20 8.6 17.4)",
884
+ "kind": "ellipse",
885
+ "cx": 8.6,
886
+ "cy": 17.4,
887
+ "rx": 3.6,
888
+ "ry": 2.55,
889
+ "transform": "rotate(-20 8.6 17.4)"
857
890
  },
858
891
  {
859
- kind: "rect",
860
- x: 10.75,
861
- y: 3,
862
- width: 1.25,
863
- height: 14.4,
892
+ "kind": "rect",
893
+ "x": 10.75,
894
+ "y": 3,
895
+ "width": 1.25,
896
+ "height": 14.4
864
897
  },
865
898
  {
866
- kind: "path",
867
- d: "M12 3\n C16.2 4.5 17.7 6.6 16.6 8.4\n C17.1 6.9 15.2 5.3 12 5.7\n Z",
899
+ "kind": "path",
900
+ "d": "M12 3\n C16.2 4.5 17.7 6.6 16.6 8.4\n C17.1 6.9 15.2 5.3 12 5.7\n Z"
868
901
  },
869
902
  {
870
- kind: "path",
871
- d: "M12 6\n C16.2 7.5 17.7 9.6 16.6 11.4\n C17.1 9.9 15.2 8.3 12 8.7\n Z",
872
- },
903
+ "kind": "path",
904
+ "d": "M12 6\n C16.2 7.5 17.7 9.6 16.6 11.4\n C17.1 9.9 15.2 8.3 12 8.7\n Z"
905
+ }
873
906
  ],
874
- SlurIcon: [
907
+ "SlurIcon": [
875
908
  {
876
- kind: "path",
877
- d: "M6 15c2.5-5 9.5-5 12 0",
878
- stroke: "currentColor",
879
- strokeWidth: 1.6,
880
- strokeLinecap: "round",
909
+ "kind": "path",
910
+ "d": "M6 15c2.5-5 9.5-5 12 0",
911
+ "stroke": "currentColor",
912
+ "strokeWidth": 1.6,
913
+ "strokeLinecap": "round"
881
914
  },
882
915
  {
883
- kind: "circle",
884
- cx: 6,
885
- cy: 17.5,
886
- r: 2.2,
887
- fill: "currentColor",
916
+ "kind": "circle",
917
+ "cx": 6,
918
+ "cy": 17.5,
919
+ "r": 2.2,
920
+ "fill": "currentColor"
888
921
  },
889
922
  {
890
- kind: "circle",
891
- cx: 18,
892
- cy: 17.5,
893
- r: 2.2,
894
- fill: "currentColor",
895
- },
923
+ "kind": "circle",
924
+ "cx": 18,
925
+ "cy": 17.5,
926
+ "r": 2.2,
927
+ "fill": "currentColor"
928
+ }
896
929
  ],
897
- SoloIcon: [
898
- {
899
- kind: "path",
900
- d: "M4.4 15.4 V12.6 a7.6 7.6 0 0 1 15.2 0 V15.4",
901
- fill: "none",
902
- stroke: "currentColor",
903
- strokeWidth: 2,
904
- strokeLinecap: "round",
905
- },
906
- {
907
- kind: "rect",
908
- x: 2.8,
909
- y: 13.6,
910
- width: 4.4,
911
- height: 7,
912
- rx: 2.2,
913
- },
914
- {
915
- kind: "rect",
916
- x: 16.8,
917
- y: 13.6,
918
- width: 4.4,
919
- height: 7,
920
- rx: 2.2,
921
- },
930
+ "SoloIcon": [
931
+ {
932
+ "kind": "path",
933
+ "d": "M4.4 15.4 V12.6 a7.6 7.6 0 0 1 15.2 0 V15.4",
934
+ "fill": "none",
935
+ "stroke": "currentColor",
936
+ "strokeWidth": 2,
937
+ "strokeLinecap": "round"
938
+ },
939
+ {
940
+ "kind": "rect",
941
+ "x": 2.8,
942
+ "y": 13.6,
943
+ "width": 4.4,
944
+ "height": 7,
945
+ "rx": 2.2
946
+ },
947
+ {
948
+ "kind": "rect",
949
+ "x": 16.8,
950
+ "y": 13.6,
951
+ "width": 4.4,
952
+ "height": 7,
953
+ "rx": 2.2
954
+ }
922
955
  ],
923
- SunMoonIcon: [
956
+ "SunMoonIcon": [
924
957
  {
925
- kind: "path",
926
- d: "M12 3.6 a8.4 8.4 0 0 0 0 16.8 Z",
958
+ "kind": "path",
959
+ "d": "M12 3.6 a8.4 8.4 0 0 0 0 16.8 Z"
927
960
  },
928
961
  {
929
- kind: "path",
930
- d: "M12 3.6 a8.4 8.4 0 0 1 0 16.8",
931
- fill: "none",
932
- stroke: "currentColor",
933
- strokeWidth: 1.8,
934
- strokeLinecap: "round",
962
+ "kind": "path",
963
+ "d": "M12 3.6 a8.4 8.4 0 0 1 0 16.8",
964
+ "fill": "none",
965
+ "stroke": "currentColor",
966
+ "strokeWidth": 1.8,
967
+ "strokeLinecap": "round"
935
968
  },
936
969
  {
937
- kind: "group",
938
- stroke: "currentColor",
939
- strokeWidth: 1.7,
940
- strokeLinecap: "round",
941
- shapes: [
970
+ "kind": "group",
971
+ "stroke": "currentColor",
972
+ "strokeWidth": 1.7,
973
+ "strokeLinecap": "round",
974
+ "shapes": [
942
975
  {
943
- kind: "path",
944
- d: "M12 1.4 V0.2 M12 23.8 V22.6 M4.1 4.1 L3.2 3.2 M4.1 19.9 L3.2 20.8 M1.4 12 H0.2",
945
- },
946
- ],
947
- },
976
+ "kind": "path",
977
+ "d": "M12 1.4 V0.2 M12 23.8 V22.6 M4.1 4.1 L3.2 3.2 M4.1 19.9 L3.2 20.8 M1.4 12 H0.2"
978
+ }
979
+ ]
980
+ }
948
981
  ],
949
- ThirtySecondNoteIcon: [
982
+ "ThirtySecondNoteIcon": [
950
983
  {
951
- kind: "ellipse",
952
- cx: 8.6,
953
- cy: 17.4,
954
- rx: 3.6,
955
- ry: 2.55,
956
- transform: "rotate(-20 8.6 17.4)",
984
+ "kind": "ellipse",
985
+ "cx": 8.6,
986
+ "cy": 17.4,
987
+ "rx": 3.6,
988
+ "ry": 2.55,
989
+ "transform": "rotate(-20 8.6 17.4)"
957
990
  },
958
991
  {
959
- kind: "rect",
960
- x: 10.75,
961
- y: 3,
962
- width: 1.25,
963
- height: 14.4,
992
+ "kind": "rect",
993
+ "x": 10.75,
994
+ "y": 3,
995
+ "width": 1.25,
996
+ "height": 14.4
964
997
  },
965
998
  {
966
- kind: "path",
967
- d: "M12 3\n C16.2 4.5 17.7 6.6 16.6 8.4\n C17.1 6.9 15.2 5.3 12 5.7\n Z",
999
+ "kind": "path",
1000
+ "d": "M12 3\n C16.2 4.5 17.7 6.6 16.6 8.4\n C17.1 6.9 15.2 5.3 12 5.7\n Z"
968
1001
  },
969
1002
  {
970
- kind: "path",
971
- d: "M12 6\n C16.2 7.5 17.7 9.6 16.6 11.4\n C17.1 9.9 15.2 8.3 12 8.7\n Z",
1003
+ "kind": "path",
1004
+ "d": "M12 6\n C16.2 7.5 17.7 9.6 16.6 11.4\n C17.1 9.9 15.2 8.3 12 8.7\n Z"
972
1005
  },
973
1006
  {
974
- kind: "path",
975
- d: "M12 9\n C16.2 10.5 17.7 12.6 16.6 14.4\n C17.1 12.9 15.2 11.3 12 11.7\n Z",
976
- },
1007
+ "kind": "path",
1008
+ "d": "M12 9\n C16.2 10.5 17.7 12.6 16.6 14.4\n C17.1 12.9 15.2 11.3 12 11.7\n Z"
1009
+ }
977
1010
  ],
978
- TieIcon: [
1011
+ "TieIcon": [
979
1012
  {
980
- kind: "ellipse",
981
- cx: 6.4,
982
- cy: 16.4,
983
- rx: 2.9,
984
- ry: 2.1,
985
- transform: "rotate(-20 6.4 16.4)",
1013
+ "kind": "ellipse",
1014
+ "cx": 6.4,
1015
+ "cy": 16.4,
1016
+ "rx": 2.9,
1017
+ "ry": 2.1,
1018
+ "transform": "rotate(-20 6.4 16.4)"
986
1019
  },
987
1020
  {
988
- kind: "ellipse",
989
- cx: 17.6,
990
- cy: 16.4,
991
- rx: 2.9,
992
- ry: 2.1,
993
- transform: "rotate(-20 17.6 16.4)",
1021
+ "kind": "ellipse",
1022
+ "cx": 17.6,
1023
+ "cy": 16.4,
1024
+ "rx": 2.9,
1025
+ "ry": 2.1,
1026
+ "transform": "rotate(-20 17.6 16.4)"
994
1027
  },
995
1028
  {
996
- kind: "path",
997
- d: "M5.2 12.2 C8.2 4.9 15.8 4.9 18.8 12.2 C15.8 7.6 8.2 7.6 5.2 12.2 Z",
998
- },
1029
+ "kind": "path",
1030
+ "d": "M5.2 12.2 C8.2 4.9 15.8 4.9 18.8 12.2 C15.8 7.6 8.2 7.6 5.2 12.2 Z"
1031
+ }
999
1032
  ],
1000
- TripletIcon: [
1001
- {
1002
- kind: "text",
1003
- x: 12,
1004
- y: 9,
1005
- textAnchor: "middle",
1006
- fontSize: 9,
1007
- fontStyle: "italic",
1008
- fill: "currentColor",
1009
- stroke: "none",
1010
- content: "3",
1011
- },
1012
- {
1013
- kind: "ellipse",
1014
- cx: 5.5,
1015
- cy: 19,
1016
- rx: 2.3,
1017
- ry: 1.7,
1018
- },
1019
- {
1020
- kind: "ellipse",
1021
- cx: 12,
1022
- cy: 19,
1023
- rx: 2.3,
1024
- ry: 1.7,
1025
- },
1026
- {
1027
- kind: "ellipse",
1028
- cx: 18.5,
1029
- cy: 19,
1030
- rx: 2.3,
1031
- ry: 1.7,
1032
- },
1033
- {
1034
- kind: "rect",
1035
- x: 4.5,
1036
- y: 12.5,
1037
- width: 15,
1038
- height: 1.4,
1039
- },
1033
+ "TripletIcon": [
1034
+ {
1035
+ "kind": "text",
1036
+ "x": 12,
1037
+ "y": 9,
1038
+ "textAnchor": "middle",
1039
+ "fontSize": 9,
1040
+ "fontStyle": "italic",
1041
+ "fill": "currentColor",
1042
+ "stroke": "none",
1043
+ "content": "3"
1044
+ },
1045
+ {
1046
+ "kind": "ellipse",
1047
+ "cx": 5.5,
1048
+ "cy": 19,
1049
+ "rx": 2.3,
1050
+ "ry": 1.7
1051
+ },
1052
+ {
1053
+ "kind": "ellipse",
1054
+ "cx": 12,
1055
+ "cy": 19,
1056
+ "rx": 2.3,
1057
+ "ry": 1.7
1058
+ },
1059
+ {
1060
+ "kind": "ellipse",
1061
+ "cx": 18.5,
1062
+ "cy": 19,
1063
+ "rx": 2.3,
1064
+ "ry": 1.7
1065
+ },
1066
+ {
1067
+ "kind": "rect",
1068
+ "x": 4.5,
1069
+ "y": 12.5,
1070
+ "width": 15,
1071
+ "height": 1.4
1072
+ }
1040
1073
  ],
1041
- WholeNoteIcon: [
1074
+ "WholeNoteIcon": [
1042
1075
  {
1043
- kind: "path",
1044
- fillRule: "evenodd",
1045
- d: "M7.1 17.4A4.5 2.8 0 1 0 16.1 17.4A4.5 2.8 0 1 0 7.1 17.4ZM9.31 18.83A2.7 1.25 -32 1 0 13.89 15.97A2.7 1.25 -32 1 0 9.31 18.83Z",
1046
- },
1047
- ],
1076
+ "kind": "path",
1077
+ "fillRule": "evenodd",
1078
+ "d": "M7.1 17.4A4.5 2.8 0 1 0 16.1 17.4A4.5 2.8 0 1 0 7.1 17.4ZM9.31 18.83A2.7 1.25 -32 1 0 13.89 15.97A2.7 1.25 -32 1 0 9.31 18.83Z"
1079
+ }
1080
+ ]
1048
1081
  };
1049
1082
  //# sourceMappingURL=notation-icon-art.js.map