zds-pickers 3.9.18 → 3.9.19
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.
- package/dist/midi/ccValues.js +6 -1
- package/package.json +1 -1
package/dist/midi/ccValues.js
CHANGED
|
@@ -127,6 +127,11 @@
|
|
|
127
127
|
'Omni Mode On',
|
|
128
128
|
'Mono Mode On',
|
|
129
129
|
'Poly Mode'].
|
|
130
|
-
map(function (label, value) {return {
|
|
130
|
+
map(function (label, value) {return {
|
|
131
|
+
label: String(label).length ? "".concat(
|
|
132
|
+
value, " - ").concat(label) :
|
|
133
|
+
value,
|
|
134
|
+
value: value
|
|
135
|
+
};});var _default =
|
|
131
136
|
|
|
132
137
|
CC_NAMES;exports["default"] = _default;
|