@remirror/extension-react-ssr
Advanced tools
Comparing version
# @remirror/extension-react-ssr | ||
## 1.0.0-next.29 | ||
> 2020-08-28 | ||
### Patch Changes | ||
- Updated dependencies [[`05446a62`](https://github.com/remirror/remirror/commit/05446a62d4f1d1cf3c940b2766a7ea5f66a77ebf)]: | ||
- @remirror/core@1.0.0-next.29 | ||
- @remirror/extension-react-component@1.0.0-next.29 | ||
## 1.0.0-next.28 | ||
@@ -9,13 +19,7 @@ | ||
- [`0400fbc8`](https://github.com/remirror/remirror/commit/0400fbc8a5f97441f70528f7d6c6f11d560b381d) | ||
[#591](https://github.com/remirror/remirror/pull/591) Thanks | ||
[@ifiokjr](https://github.com/ifiokjr)! - Add support for nested content within `ReactComponent` | ||
node views. Also support adding multiple components to the manager via the `nodeViewComponents` | ||
setting. Currently `ReactNodeView` components must be defined at initialization, and marks are not | ||
supported. | ||
- [`0400fbc8`](https://github.com/remirror/remirror/commit/0400fbc8a5f97441f70528f7d6c6f11d560b381d) [#591](https://github.com/remirror/remirror/pull/591) Thanks [@ifiokjr](https://github.com/ifiokjr)! - Add support for nested content within `ReactComponent` node views. Also support adding multiple components to the manager via the `nodeViewComponents` setting. Currently `ReactNodeView` components must be defined at initialization, and marks are not supported. | ||
- Also enforce minimum required extensions for the manager passed to the `RemirrorProvider`. | ||
- Some general cleanup and refactoring. | ||
- Add support for composing refs when using `getRootProps`. Now you can add your own ref to the | ||
`getRootProps({ ref })` function call which will be populated at the same time. | ||
- Add support for composing refs when using `getRootProps`. Now you can add your own ref to the `getRootProps({ ref })` function call which will be populated at the same time. | ||
- Test the names of `Extension`'s and `Preset`'s in with `extensionValidityTest`. | ||
@@ -31,7 +35,3 @@ - **BREAKING CHANGES** 💥 | ||
- Updated dependencies | ||
[[`c0dce043`](https://github.com/remirror/remirror/commit/c0dce0433780e1ddb8b21384eef4b67ae1f74e47), | ||
[`d5bbeb4e`](https://github.com/remirror/remirror/commit/d5bbeb4e8e193e695838207706a04f7739cc1448), | ||
[`0400fbc8`](https://github.com/remirror/remirror/commit/0400fbc8a5f97441f70528f7d6c6f11d560b381d), | ||
[`d23a0434`](https://github.com/remirror/remirror/commit/d23a0434c49ecd5bbaccffd9b8d8c42bc626219a)]: | ||
- Updated dependencies [[`c0dce043`](https://github.com/remirror/remirror/commit/c0dce0433780e1ddb8b21384eef4b67ae1f74e47), [`d5bbeb4e`](https://github.com/remirror/remirror/commit/d5bbeb4e8e193e695838207706a04f7739cc1448), [`0400fbc8`](https://github.com/remirror/remirror/commit/0400fbc8a5f97441f70528f7d6c6f11d560b381d), [`d23a0434`](https://github.com/remirror/remirror/commit/d23a0434c49ecd5bbaccffd9b8d8c42bc626219a)]: | ||
- @remirror/core@1.0.0-next.28 | ||
@@ -177,4 +177,3 @@ - @remirror/pm@1.0.0-next.28 | ||
- 38941404: Switch from static properties to using the `@extensionDecorator` and `@presetDecorator` | ||
instead. | ||
- 38941404: Switch from static properties to using the `@extensionDecorator` and `@presetDecorator` instead. | ||
- Updated dependencies [d877adb3] | ||
@@ -207,7 +206,5 @@ - Updated dependencies [38941404] | ||
- 54461006: Remove the first parameter `extensions` from the lifecycle methods `onCreate`, `onView` | ||
and `onDestroy`. | ||
- 54461006: Remove the first parameter `extensions` from the lifecycle methods `onCreate`, `onView` and `onDestroy`. | ||
Switch to using method signatures for extension class methods as discussed in #360. The following | ||
methods have been affected: | ||
Switch to using method signatures for extension class methods as discussed in #360. The following methods have been affected: | ||
@@ -313,5 +310,3 @@ ``` | ||
- The whole API for remirror has completely changed. These pre-release versions are a breaking | ||
change across all packages. The best way to know what's changed is to read the documentaion on the | ||
new documentation site `https://remirror.io`. | ||
- The whole API for remirror has completely changed. These pre-release versions are a breaking change across all packages. The best way to know what's changed is to read the documentaion on the new documentation site `https://remirror.io`. | ||
@@ -318,0 +313,0 @@ ### Patch Changes |
{ | ||
"name": "@remirror/extension-react-ssr", | ||
"version": "1.0.0-next.28", | ||
"version": "1.0.0-next.29", | ||
"description": "If server side support is important to you, then this is perfect for your remirror editor in react.", | ||
@@ -33,7 +33,7 @@ "keywords": [ | ||
"@babel/runtime": "^7.11.0", | ||
"@remirror/extension-react-component": "1.0.0-next.28", | ||
"@remirror/extension-react-component": "1.0.0-next.29", | ||
"@remirror/react-utils": "1.0.0-next.28" | ||
}, | ||
"devDependencies": { | ||
"@remirror/core": "1.0.0-next.28", | ||
"@remirror/core": "1.0.0-next.29", | ||
"@remirror/pm": "1.0.0-next.28", | ||
@@ -44,3 +44,3 @@ "@types/react": "^16.9.47", | ||
"peerDependencies": { | ||
"@remirror/core": "1.0.0-next.28", | ||
"@remirror/core": "1.0.0-next.29", | ||
"@remirror/pm": "1.0.0-next.28", | ||
@@ -47,0 +47,0 @@ "@types/react": "^16.8.0", |
# @remirror/extension-react-ssr | ||
> If server side support is important to you, then this is perfect for your remirror editor in | ||
> react. | ||
> If server side support is important to you, then this is perfect for your remirror editor in react. | ||
[![Version][version]][npm] [![Weekly Downloads][downloads-badge]][npm] | ||
[![Bundled size][size-badge]][size] [![Typed Codebase][typescript]](./src/index.ts) | ||
![MIT License][license] | ||
[![Version][version]][npm] [![Weekly Downloads][downloads-badge]][npm] [![Bundled size][size-badge]][size] [![Typed Codebase][typescript]](./src/index.ts) ![MIT License][license] | ||
@@ -35,4 +32,3 @@ [version]: https://flat.badgen.net/npm/v/@remirror/extension-react-ssr | ||
This is one of the **core react** extensions and is included by default via | ||
`@remirror/preset-react`. | ||
This is one of the **core react** extensions and is included by default via `@remirror/preset-react`. | ||
@@ -39,0 +35,0 @@ ## Credits |
52264
0.44%39
-9.3%+ Added
+ Added
+ Added
- Removed
- Removed
- Removed
- Removed