@babylonjs/inspector 5.45.1 → 5.46.0

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.
@@ -55184,11 +55184,6 @@ __webpack_require__.r(__webpack_exports__);
55184
55184
  // eslint-disable-next-line @typescript-eslint/naming-convention
55185
55185
  const Null_Value = Number.MAX_SAFE_INTEGER;
55186
55186
  class OptionsLineComponent extends react__WEBPACK_IMPORTED_MODULE_1__.Component {
55187
- constructor(props) {
55188
- super(props);
55189
- this._localChange = false;
55190
- this.state = { value: this._remapValueIn(this._getValue(props)) };
55191
- }
55192
55187
  _remapValueIn(value) {
55193
55188
  return this.props.allowNullValue && value === null ? Null_Value : value;
55194
55189
  }
@@ -55201,6 +55196,11 @@ class OptionsLineComponent extends react__WEBPACK_IMPORTED_MODULE_1__.Component
55201
55196
  }
55202
55197
  return props.target && props.propertyName ? props.target[props.propertyName] : props.options[props.defaultIfNull || 0];
55203
55198
  }
55199
+ constructor(props) {
55200
+ super(props);
55201
+ this._localChange = false;
55202
+ this.state = { value: this._remapValueIn(this._getValue(props)) };
55203
+ }
55204
55204
  shouldComponentUpdate(nextProps, nextState) {
55205
55205
  if (this._localChange) {
55206
55206
  this._localChange = false;