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 +1 -1
- package/lib/index.js +1 -1
- package/package.json +1 -1
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)
|
|
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)
|
|
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) {
|