@app-studio/web 0.9.4 → 0.9.5

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/web.esm.js CHANGED
@@ -8011,11 +8011,11 @@ var TextAreaView = _ref => {
8011
8011
  readOnly: isReadOnly,
8012
8012
  disabled: isDisabled,
8013
8013
  autoFocus: isAutoFocus,
8014
- editable: !!isEditable.toString(),
8014
+ editable: "" + !!isEditable.toString(),
8015
8015
  placeholder: hint,
8016
8016
  onBlur: handleBlur,
8017
8017
  onFocus: handleFocus,
8018
- multiline: !!isMultiline.toString(),
8018
+ multiline: "" + !!isMultiline.toString(),
8019
8019
  onChange: handleChange
8020
8020
  }, fieldStyles, views == null ? void 0 : views.textarea)))));
8021
8021
  };
@@ -15319,7 +15319,7 @@ var HoverCardContent = _ref3 => {
15319
15319
  borderRadius = '4px',
15320
15320
  boxShadow = '0px 2px 8px rgba(0, 0, 0, 0.15)',
15321
15321
  padding = '12px',
15322
- minWidth = '200px',
15322
+ minWidth = '50px',
15323
15323
  maxWidth = '300px'
15324
15324
  } = _ref3,
15325
15325
  props = _objectWithoutPropertiesLoose(_ref3, _excluded2$e);