@opendaw/studio-adapters 0.0.60 → 0.0.62

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.
@@ -86,7 +86,9 @@ export class AutomatableParameterFieldAdapter {
86
86
  and I am too lazy to implement this in the mappings itself.
87
87
  */
88
88
  if (field.getValue() !== valueMapping.clamp(field.getValue())) {
89
- console.warn(`${name} (${field.getValue()}) is out of bounds`, "constraints" in field ? field["constraints"] : "no constraints", valueMapping, field.address.fieldKeys.join(", "), field.box.name);
89
+ /*console.warn(`${name} (${field.getValue()}) is out of bounds`,
90
+ "constraints" in field ? field["constraints"] : "no constraints",
91
+ valueMapping, field.address.fieldKeys.join(", "), field.box.name)*/
90
92
  }
91
93
  }
92
94
  registerMidiControl() {
@@ -33,7 +33,7 @@ export class FieldAdapter {
33
33
  and I am too lazy to implement this in the mappings itself.
34
34
  */
35
35
  if (field.getValue() !== valueMapping.clamp(field.getValue())) {
36
- console.warn(`${name} (${field.getValue()}) is out of bounds`, valueMapping);
36
+ // console.warn(`${name} (${field.getValue()}) is out of bounds`, valueMapping)
37
37
  }
38
38
  }
39
39
  get field() { return __classPrivateFieldGet(this, _FieldAdapter_field, "f"); }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@opendaw/studio-adapters",
3
- "version": "0.0.60",
3
+ "version": "0.0.62",
4
4
  "license": "LGPL-3.0-or-later",
5
5
  "publishConfig": {
6
6
  "access": "public"
@@ -35,5 +35,5 @@
35
35
  "@opendaw/eslint-config": "^0.0.22",
36
36
  "@opendaw/typescript-config": "^0.0.22"
37
37
  },
38
- "gitHead": "99f8c7e3c6aadfea5e9fef05027b6817ab5bdf31"
38
+ "gitHead": "6b4c77bff99703f59b320a846b5336369a3e6604"
39
39
  }