ywana-core8 0.0.786 → 0.0.788
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/index.cjs +5 -2
- package/dist/index.cjs.map +1 -1
- package/dist/index.modern.js +5 -2
- package/dist/index.modern.js.map +1 -1
- package/dist/index.umd.js +5 -2
- package/dist/index.umd.js.map +1 -1
- package/package.json +1 -1
- package/src/site/dialog.js +2 -2
- package/src/widgets/upload/UploadDialog.js +2 -2
package/dist/index.modern.js
CHANGED
@@ -4344,7 +4344,9 @@ var UploadDialog = function UploadDialog(_ref) {
|
|
4344
4344
|
onClose = _ref.onClose,
|
4345
4345
|
children = _ref.children,
|
4346
4346
|
className = _ref.className,
|
4347
|
-
disabled = _ref.disabled
|
4347
|
+
disabled = _ref.disabled,
|
4348
|
+
_ref$overlayCanClose = _ref.overlayCanClose,
|
4349
|
+
overlayCanClose = _ref$overlayCanClose === void 0 ? true : _ref$overlayCanClose;
|
4348
4350
|
var site = useContext(SiteContext);
|
4349
4351
|
|
4350
4352
|
function success(file, message) {
|
@@ -4376,7 +4378,8 @@ var UploadDialog = function UploadDialog(_ref) {
|
|
4376
4378
|
open: true,
|
4377
4379
|
onAction: onAction,
|
4378
4380
|
actions: actions,
|
4379
|
-
className: className
|
4381
|
+
className: className,
|
4382
|
+
overlayCanClose: overlayCanClose
|
4380
4383
|
}, disabled ? "" : /*#__PURE__*/React.createElement(Uploader, {
|
4381
4384
|
label: label,
|
4382
4385
|
accept: accept,
|