@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.cjs CHANGED
@@ -66046,8 +66046,8 @@ var InputCounter = ({
66046
66046
  color: buttonsColor,
66047
66047
  variant: buttonVariant,
66048
66048
  "aria-label": labelButtons?.minus,
66049
- tooltip: labelButtons?.minus,
66050
- showTooltip: showButtonsTooltip,
66049
+ tooltip: labelButtons?.minus ?? "Minus",
66050
+ showTooltip: showButtonsTooltip && { offset: "xs" },
66051
66051
  onClick: () => setValue((prev) => prev - step),
66052
66052
  disabled: value === min
66053
66053
  }
@@ -66080,8 +66080,8 @@ var InputCounter = ({
66080
66080
  color: buttonsColor,
66081
66081
  variant: buttonVariant,
66082
66082
  "aria-label": labelButtons?.plus,
66083
- tooltip: labelButtons?.plus,
66084
- showTooltip: showButtonsTooltip,
66083
+ tooltip: labelButtons?.plus ?? "Plus",
66084
+ showTooltip: showButtonsTooltip && { offset: "xs" },
66085
66085
  onClick: () => setValue((prev) => prev + step),
66086
66086
  disabled: value === max
66087
66087
  }