cx 26.3.9 → 26.3.10

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.
@@ -169,7 +169,7 @@ class MenuItemComponent extends VDOM.Component {
169
169
  children = _jsx("span", { className: CSS.element(baseClass, "baseline"), children: "\u00A0" });
170
170
  return (_jsxs("div", { className: classNames, style: data.style, tabIndex: !data.disabled && (widget.dropdown || widget.onClick || widget.checked) ? 0 : undefined, ref: (el) => {
171
171
  this.el = el;
172
- }, onKeyDown: this.onKeyDown.bind(this), onMouseDown: this.onMouseDown.bind(this), onMouseEnter: this.onMouseEnter.bind(this), onMouseLeave: this.onMouseLeave.bind(this), onFocus: this.onFocus.bind(this), onClick: this.onClick.bind(this), onBlur: this.onBlur.bind(this), children: [children, icon, arrow, dropdown] }));
172
+ }, onKeyDown: this.onKeyDown.bind(this), onMouseDown: this.onMouseDown.bind(this), onMouseEnter: this.onMouseEnter.bind(this), onMouseLeave: this.onMouseLeave.bind(this), onFocus: this.onFocus.bind(this), onClick: this.onClick.bind(this), onBlur: this.onBlur.bind(this), children: [icon, children, arrow, dropdown] }));
173
173
  }
174
174
  componentDidUpdate() {
175
175
  if (this.state.dropdownOpen && this.validateDropdownPosition) {