@danielgindi/selectbox 1.0.118 → 1.0.119

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/lib.cjs.js CHANGED
@@ -1,5 +1,5 @@
1
1
  /*!
2
- * @danielgindi/selectbox 1.0.118
2
+ * @danielgindi/selectbox 1.0.119
3
3
  * git://github.com/danielgindi/selectbox.git
4
4
  */
5
5
  'use strict';
@@ -219,7 +219,7 @@ class DropList {
219
219
  onItemRender: (itemEl, index) => {
220
220
  let item;
221
221
 
222
- if ( /**@type any*/index === GhostSymbol) {
222
+ if (( /**@type any*/index) === GhostSymbol) {
223
223
  item = {
224
224
  label: p.lastMeasureLongestLabelText,
225
225
  value: 'Measure',
@@ -4266,7 +4266,7 @@ class SelectBox {
4266
4266
 
4267
4267
  p.sink.
4268
4268
  add(keyEventsTarget, 'keydown.dropdown', (evt) => {
4269
- if ( /**@type HTMLInputElement*/evt.currentTarget.readOnly)
4269
+ if (( /**@type HTMLInputElement*/evt.currentTarget).readOnly)
4270
4270
  return;
4271
4271
 
4272
4272
  let suppressEnterSpaceToggle = false;