odaptos_design_system 1.4.241 → 1.4.243

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.
@@ -10397,7 +10397,7 @@ const Task = ({
10397
10397
  const getContainerStyle = () => {
10398
10398
  if (state === 'active') return styles$p.active_task;else if (state === 'disabled') return styles$p.disabled_task;else return styles$p.task_container;
10399
10399
  };
10400
- console.log('taskRef.current.getBoundingClientRect()', taskRef.current.getBoundingClientRect());
10400
+ console.log('taskRef.current.getBoundingClientRect()', taskRef.current ? taskRef.current.getBoundingClientRect() : 'no ref');
10401
10401
  const areActionsDisplay = iconAction1 || iconAction2 || iconAction3 || action1 || action2 || action3;
10402
10402
  if (state === 'active') return /*#__PURE__*/React__default.createElement("div", Object.assign({
10403
10403
  className: `${getContainerStyle()} ${className ?? ''}`
@@ -10468,6 +10468,7 @@ const Task = ({
10468
10468
  open: open,
10469
10469
  onClose: handleClose,
10470
10470
  onOpen: handleOpen,
10471
+ placement: "bottom-start",
10471
10472
  title: /*#__PURE__*/React__default.createElement("div", {
10472
10473
  className: styles$p.taskPopover,
10473
10474
  style: {
@@ -10509,7 +10510,6 @@ const Task = ({
10509
10510
  bgcolor: 'transparent',
10510
10511
  padding: 0,
10511
10512
  borderRadius: '0.5rem',
10512
- marginLeft: '-16px',
10513
10513
  '& .MuiTooltip-arrow': {
10514
10514
  color: 'transparent'
10515
10515
  }