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.
@@ -3455,14 +3455,12 @@ var View = function View(props) {
3455
3455
  */
3456
3456
 
3457
3457
  var UploadDialog = function UploadDialog(_ref) {
3458
- var className = _ref.className,
3459
- label = _ref.label,
3458
+ var label = _ref.label,
3460
3459
  target = _ref.target,
3461
3460
  accept = _ref.accept,
3462
3461
  onSuccess = _ref.onSuccess,
3463
3462
  onComplete = _ref.onComplete,
3464
- onClose = _ref.onClose,
3465
- children = _ref.children;
3463
+ onClose = _ref.onClose;
3466
3464
  var site = useContext(SiteContext);
3467
3465
 
3468
3466
  function success(file, message) {
@@ -3490,7 +3488,6 @@ var UploadDialog = function UploadDialog(_ref) {
3490
3488
  use: "headline6"
3491
3489
  }, label);
3492
3490
  return /*#__PURE__*/React.createElement(Dialog, {
3493
- className: className,
3494
3491
  title: title,
3495
3492
  open: true,
3496
3493
  onAction: onAction,
@@ -3502,7 +3499,7 @@ var UploadDialog = function UploadDialog(_ref) {
3502
3499
  target: target,
3503
3500
  onSuccess: success,
3504
3501
  onComplete: complete
3505
- }), children);
3502
+ }));
3506
3503
  };
3507
3504
 
3508
3505
  /**