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.esm.js CHANGED
@@ -2175,13 +2175,18 @@ function DoorLeaf(_ref8) {
2175
2175
  const DoorConfigurator = _ref => {
2176
2176
  let {
2177
2177
  doorName,
2178
- showInterface = true,
2178
+ materials,
2179
+ doorPivot,
2180
+ doorOpening,
2179
2181
  is2D = false
2180
2182
  } = _ref;
2181
2183
  return /*#__PURE__*/jsx(ConfiguratorProvider, {
2182
2184
  initialIs2D: is2D,
2183
2185
  children: /*#__PURE__*/jsx(DoorModels, {
2184
- doorName: doorName
2186
+ doorName: doorName,
2187
+ materials: materials,
2188
+ doorPivot: doorPivot,
2189
+ doorOpening: doorOpening
2185
2190
  })
2186
2191
  });
2187
2192
  };