@rkmodules/rules 0.0.132 → 0.0.133

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/index.esm.js CHANGED
@@ -6138,11 +6138,10 @@ function Control(_a) {
6138
6138
  case "boolean":
6139
6139
  return (React.createElement("input", { type: "checkbox", checked: Boolean(value), onChange: function (e) { return onChange === null || onChange === void 0 ? void 0 : onChange(e.target.checked); } }));
6140
6140
  default:
6141
- return (React.createElement("span", { className: styles$1.PortLabel },
6142
- String(value),
6143
- " (",
6141
+ return React.createElement("span", { className: styles$1.PortLabel },
6142
+ "(",
6144
6143
  vardef.type,
6145
- ")"));
6144
+ ")");
6146
6145
  }
6147
6146
  }
6148
6147