x4js 1.6.3 → 1.6.4

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/lib/esm/x4js.mjs CHANGED
@@ -4820,7 +4820,7 @@ var MenuItem = class extends Component {
4820
4820
  let icon = props.icon ?? 0;
4821
4821
  let text = props.text;
4822
4822
  if (props.checked !== void 0) {
4823
- icon = props.checked ? "var( --x4-icon-check )" : 0;
4823
+ icon = props.checked ? "var( --x4-icon-check )" : "var( --x4-icon-uncheck )";
4824
4824
  }
4825
4825
  if (this.m_action) {
4826
4826
  if (!icon) {