door_models 5.3.0 → 5.3.1
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/dist/index.cjs.js +7 -2
- package/dist/index.cjs.js.map +1 -1
- package/dist/index.esm.js +7 -2
- package/dist/index.esm.js.map +1 -1
- package/package.json +1 -1
package/dist/index.cjs.js
CHANGED
|
@@ -2202,13 +2202,18 @@ function DoorLeaf(_ref8) {
|
|
|
2202
2202
|
const DoorConfigurator = _ref => {
|
|
2203
2203
|
let {
|
|
2204
2204
|
doorName,
|
|
2205
|
-
|
|
2205
|
+
materials,
|
|
2206
|
+
doorPivot,
|
|
2207
|
+
doorOpening,
|
|
2206
2208
|
is2D = false
|
|
2207
2209
|
} = _ref;
|
|
2208
2210
|
return /*#__PURE__*/jsxRuntime.jsx(ConfiguratorProvider, {
|
|
2209
2211
|
initialIs2D: is2D,
|
|
2210
2212
|
children: /*#__PURE__*/jsxRuntime.jsx(DoorModels, {
|
|
2211
|
-
doorName: doorName
|
|
2213
|
+
doorName: doorName,
|
|
2214
|
+
materials: materials,
|
|
2215
|
+
doorPivot: doorPivot,
|
|
2216
|
+
doorOpening: doorOpening
|
|
2212
2217
|
})
|
|
2213
2218
|
});
|
|
2214
2219
|
};
|