@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.
@@ -8018,11 +8018,11 @@ var TextAreaView = _ref => {
8018
8018
  readOnly: isReadOnly,
8019
8019
  disabled: isDisabled,
8020
8020
  autoFocus: isAutoFocus,
8021
- editable: !!isEditable.toString(),
8021
+ editable: "" + !!isEditable.toString(),
8022
8022
  placeholder: hint,
8023
8023
  onBlur: handleBlur,
8024
8024
  onFocus: handleFocus,
8025
- multiline: !!isMultiline.toString(),
8025
+ multiline: "" + !!isMultiline.toString(),
8026
8026
  onChange: handleChange
8027
8027
  }, fieldStyles, views == null ? void 0 : views.textarea)))));
8028
8028
  };
@@ -15326,7 +15326,7 @@ var HoverCardContent = _ref3 => {
15326
15326
  borderRadius = '4px',
15327
15327
  boxShadow = '0px 2px 8px rgba(0, 0, 0, 0.15)',
15328
15328
  padding = '12px',
15329
- minWidth = '200px',
15329
+ minWidth = '50px',
15330
15330
  maxWidth = '300px'
15331
15331
  } = _ref3,
15332
15332
  props = _objectWithoutPropertiesLoose(_ref3, _excluded2$e);