kitchen-simulator 3.1.0-alpha.13 → 3.1.0-alpha.14

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/es/index.js CHANGED
@@ -125,7 +125,7 @@ export function renderKitchenSimulator(container) {
125
125
  root = createRoot(container);
126
126
  container[ROOT_KEY] = root;
127
127
  }
128
- root.render(/*#__PURE__*/React.createElement(Wrapper, props), container);
128
+ root.render(/*#__PURE__*/React.createElement(Wrapper, props));
129
129
  return {
130
130
  // ✅ Promise-based API (use this from host)
131
131
  enqueueExternalEvent: function enqueueExternalEvent(ev) {
package/lib/index.js CHANGED
@@ -133,7 +133,7 @@ function renderKitchenSimulator(container) {
133
133
  root = (0, _client.createRoot)(container);
134
134
  container[ROOT_KEY] = root;
135
135
  }
136
- root.render(/*#__PURE__*/_react["default"].createElement(Wrapper, props), container);
136
+ root.render(/*#__PURE__*/_react["default"].createElement(Wrapper, props));
137
137
  return {
138
138
  // ✅ Promise-based API (use this from host)
139
139
  enqueueExternalEvent: function enqueueExternalEvent(ev) {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "kitchen-simulator",
3
- "version": "3.1.0-alpha.13",
3
+ "version": "3.1.0-alpha.14",
4
4
  "description": "It is a kitchen simulator (self-contained micro-frontend).",
5
5
  "license": "MIT",
6
6
  "main": "lib/index.js",