authscape-usermanagement 1.0.62 → 1.0.64
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/index.js +1 -1
- package/package.json +1 -1
- package/src/CompanyEditor.js +1 -0
package/index.js
CHANGED
|
@@ -416,7 +416,7 @@ var CompanyEditor = /*#__PURE__*/(0, _react.forwardRef)(function (_ref, ref) {
|
|
|
416
416
|
justifyContent: "center",
|
|
417
417
|
padding: 2
|
|
418
418
|
}
|
|
419
|
-
}, /*#__PURE__*/_react["default"].createElement(DropZone, {
|
|
419
|
+
}, /*#__PURE__*/_react["default"].createElement(_authscape.DropZone, {
|
|
420
420
|
image: companyLogo != null ? companyLogo : "",
|
|
421
421
|
text: "Drag 'n' drop your logo here, or click to select your logo",
|
|
422
422
|
onDrop: /*#__PURE__*/function () {
|
package/package.json
CHANGED
package/src/CompanyEditor.js
CHANGED
|
@@ -8,6 +8,7 @@ import TextField from '@mui/material/TextField';
|
|
|
8
8
|
import BusinessRoundedIcon from '@mui/icons-material/BusinessRounded';
|
|
9
9
|
import Typography from '@mui/material/Typography';
|
|
10
10
|
import Grid from '@mui/material/Grid2';
|
|
11
|
+
import { DropZone } from 'authscape';
|
|
11
12
|
|
|
12
13
|
// remove when publishing
|
|
13
14
|
// import {renderCustomField, renderSystemField } from './EditorFields';
|