@julseb-lib/react 0.1.66 → 0.1.67

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.js CHANGED
@@ -65864,8 +65864,8 @@ var InputCounter = ({
65864
65864
  color: buttonsColor,
65865
65865
  variant: buttonVariant,
65866
65866
  "aria-label": labelButtons?.minus,
65867
- tooltip: labelButtons?.minus,
65868
- showTooltip: showButtonsTooltip,
65867
+ tooltip: labelButtons?.minus ?? "Minus",
65868
+ showTooltip: showButtonsTooltip && { offset: "xs" },
65869
65869
  onClick: () => setValue((prev) => prev - step),
65870
65870
  disabled: value === min
65871
65871
  }
@@ -65898,8 +65898,8 @@ var InputCounter = ({
65898
65898
  color: buttonsColor,
65899
65899
  variant: buttonVariant,
65900
65900
  "aria-label": labelButtons?.plus,
65901
- tooltip: labelButtons?.plus,
65902
- showTooltip: showButtonsTooltip,
65901
+ tooltip: labelButtons?.plus ?? "Plus",
65902
+ showTooltip: showButtonsTooltip && { offset: "xs" },
65903
65903
  onClick: () => setValue((prev) => prev + step),
65904
65904
  disabled: value === max
65905
65905
  }