trix icon indicating copy to clipboard operation
trix copied to clipboard

Deprecation of DefaultProps

Open OtherCroissant opened this issue 8 months ago • 3 comments

Hi, First of all, really enjoying the current progress on the Trix editor.

I get a deprecation warning for the use of JavaScript DefaultProps being replaced by JavaScript default parameters:

Support for defaultProps will be removed from function components in a future major release. Use JavaScript default parameters instead.

It looks like trix uses it here:

function _jsx(e, r, E, l) {
  REACT_ELEMENT_TYPE || (REACT_ELEMENT_TYPE = "function" == typeof Symbol && Symbol.for && Symbol.for("react.element") || 60103);
  var o = e && e.defaultProps,
    n = arguments.length - 3;
  if (r || 0 === n || (r = {
    children: void 0
  }), 1 === n) r.children = l;else if (n > 1) {
    for (var t = new Array(n), f = 0; f < n; f++) t[f] = arguments[f + 3];
    r.children = t;
  }
  if (r && o) for (var i in o) void 0 === r[i] && (r[i] = o[i]);else r || (r = o || {});
  return {
    $$typeof: REACT_ELEMENT_TYPE,
    type: e,
    key: void 0 === E ? null : "" + E,
    ref: null,
    props: r,
    _owner: null
  };
}

Maybe this could be fixed with the next minor update?

OtherCroissant avatar May 28 '24 08:05 OtherCroissant