react-on-rails 16.7.0-rc.2 → 17.0.0-rc.0

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.
@@ -53,7 +53,6 @@ Registered component names include [ ${keys} ]. Maybe you forgot to register the
53
53
  * @param _name Component name to wait for
54
54
  * @throws Always throws error indicating pro package is required
55
55
  */
56
- // eslint-disable-next-line @typescript-eslint/no-unused-vars
57
56
  getOrWaitForComponent(_name) {
58
57
  throw new Error('getOrWaitForComponent requires react-on-rails-pro package');
59
58
  },
package/lib/reactApis.cjs CHANGED
@@ -56,7 +56,6 @@ function reactRender(domNode, reactElement) {
56
56
  }
57
57
  exports.unmountComponentAtNode = exports.supportsRootApi
58
58
  ? // not used if we use root API
59
- // eslint-disable-next-line @typescript-eslint/no-unused-vars
60
59
  (_container) => false
61
60
  : (container) => legacyReactDOM.unmountComponentAtNode(container);
62
61
  const ensureReactUseAvailable = () => {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "react-on-rails",
3
- "version": "16.7.0-rc.2",
3
+ "version": "17.0.0-rc.0",
4
4
  "description": "react-on-rails JavaScript for react_on_rails Ruby gem",
5
5
  "main": "lib/ReactOnRails.full.js",
6
6
  "type": "module",