@viamrobotics/motion-tools 0.14.1 → 0.14.2

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.
@@ -159,7 +159,9 @@
159
159
  <Select
160
160
  aria-label={`dropdown ${ariaLabel}`}
161
161
  {value}
162
- on:input={(event) => onChange((event.target as HTMLSelectElement).value)}
162
+ onchange={(event: InputEvent) => {
163
+ onChange((event.target as HTMLSelectElement).value)
164
+ }}
163
165
  >
164
166
  {#each options as option (option)}
165
167
  <option value={option}>{option}</option>
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@viamrobotics/motion-tools",
3
- "version": "0.14.1",
3
+ "version": "0.14.2",
4
4
  "description": "Motion visualization with Viam",
5
5
  "license": "Apache-2.0",
6
6
  "type": "module",