@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.cjs.development.js +3 -3
- package/dist/web.cjs.development.js.map +1 -1
- package/dist/web.cjs.production.min.js +1 -1
- package/dist/web.cjs.production.min.js.map +1 -1
- package/dist/web.esm.js +3 -3
- package/dist/web.esm.js.map +1 -1
- package/dist/web.umd.development.js +3 -3
- package/dist/web.umd.development.js.map +1 -1
- package/dist/web.umd.production.min.js +1 -1
- package/dist/web.umd.production.min.js.map +1 -1
- package/package.json +1 -1
|
@@ -7987,11 +7987,11 @@
|
|
|
7987
7987
|
readOnly: isReadOnly,
|
|
7988
7988
|
disabled: isDisabled,
|
|
7989
7989
|
autoFocus: isAutoFocus,
|
|
7990
|
-
editable: !!isEditable.toString(),
|
|
7990
|
+
editable: "" + !!isEditable.toString(),
|
|
7991
7991
|
placeholder: hint,
|
|
7992
7992
|
onBlur: handleBlur,
|
|
7993
7993
|
onFocus: handleFocus,
|
|
7994
|
-
multiline: !!isMultiline.toString(),
|
|
7994
|
+
multiline: "" + !!isMultiline.toString(),
|
|
7995
7995
|
onChange: handleChange
|
|
7996
7996
|
}, fieldStyles, views == null ? void 0 : views.textarea)))));
|
|
7997
7997
|
};
|
|
@@ -15295,7 +15295,7 @@
|
|
|
15295
15295
|
borderRadius = '4px',
|
|
15296
15296
|
boxShadow = '0px 2px 8px rgba(0, 0, 0, 0.15)',
|
|
15297
15297
|
padding = '12px',
|
|
15298
|
-
minWidth = '
|
|
15298
|
+
minWidth = '50px',
|
|
15299
15299
|
maxWidth = '300px'
|
|
15300
15300
|
} = _ref3,
|
|
15301
15301
|
props = _objectWithoutPropertiesLoose(_ref3, _excluded2$e);
|