ywana-core8 0.0.379 → 0.0.380

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.umd.js CHANGED
@@ -3458,14 +3458,12 @@
3458
3458
  */
3459
3459
 
3460
3460
  var UploadDialog = function UploadDialog(_ref) {
3461
- var className = _ref.className,
3462
- label = _ref.label,
3461
+ var label = _ref.label,
3463
3462
  target = _ref.target,
3464
3463
  accept = _ref.accept,
3465
3464
  onSuccess = _ref.onSuccess,
3466
3465
  onComplete = _ref.onComplete,
3467
- onClose = _ref.onClose,
3468
- children = _ref.children;
3466
+ onClose = _ref.onClose;
3469
3467
  var site = React.useContext(SiteContext);
3470
3468
 
3471
3469
  function success(file, message) {
@@ -3493,7 +3491,6 @@
3493
3491
  use: "headline6"
3494
3492
  }, label);
3495
3493
  return /*#__PURE__*/React__default["default"].createElement(Dialog, {
3496
- className: className,
3497
3494
  title: title,
3498
3495
  open: true,
3499
3496
  onAction: onAction,
@@ -3505,7 +3502,7 @@
3505
3502
  target: target,
3506
3503
  onSuccess: success,
3507
3504
  onComplete: complete
3508
- }), children);
3505
+ }));
3509
3506
  };
3510
3507
 
3511
3508
  /**