@difizen/libro-output 0.3.37 → 0.3.39

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.
@@ -45,8 +45,9 @@ var StreamOutputModelRender = /*#__PURE__*/forwardRef(function StreamOutputModel
45
45
  if (factory) {
46
46
  var OutputRender = factory.render;
47
47
  var children = /*#__PURE__*/_jsx(OutputRender, {
48
- model: model
49
- }, refreshKey);
48
+ model: model,
49
+ refreshKey: refreshKey
50
+ });
50
51
  return /*#__PURE__*/_jsx("div", {
51
52
  ref: ref,
52
53
  className: 'libro-stream-container',
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@difizen/libro-output",
3
- "version": "0.3.37",
3
+ "version": "0.3.39",
4
4
  "description": "",
5
5
  "keywords": [
6
6
  "libro",
@@ -32,9 +32,9 @@
32
32
  "src"
33
33
  ],
34
34
  "dependencies": {
35
- "@difizen/libro-common": "^0.3.37",
36
- "@difizen/libro-core": "^0.3.37",
37
- "@difizen/libro-rendermime": "^0.3.37",
35
+ "@difizen/libro-common": "^0.3.39",
36
+ "@difizen/libro-core": "^0.3.39",
37
+ "@difizen/libro-rendermime": "^0.3.39",
38
38
  "@difizen/mana-app": "latest",
39
39
  "@difizen/mana-l10n": "^0.1.32",
40
40
  "markdown-it": "^13.0.1"
@@ -30,7 +30,7 @@ const StreamOutputModelRender = forwardRef<HTMLDivElement>(
30
30
  });
31
31
  if (factory) {
32
32
  const OutputRender = factory.render;
33
- const children = <OutputRender model={model} key={refreshKey} />;
33
+ const children = <OutputRender model={model} refreshKey={refreshKey} />;
34
34
  return (
35
35
  <div ref={ref} className={'libro-stream-container'}>
36
36
  {children}