@oliasoft-open-source/react-ui-library 3.9.2-beta-4 → 3.9.3

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
@@ -57277,7 +57277,7 @@ const Slider = ({
57277
57277
  basic: true,
57278
57278
  small: true,
57279
57279
  round: true,
57280
- onClick: () => onChangeValue(min),
57280
+ onClick: () => onChangeValue(range2 ? [min, value == null ? void 0 : value[1]] : min),
57281
57281
  disabled: disabled2 || value === min || disabledContext,
57282
57282
  icon: /* @__PURE__ */ jsx(FaFastBackward, {})
57283
57283
  })
@@ -57288,7 +57288,7 @@ const Slider = ({
57288
57288
  basic: true,
57289
57289
  small: true,
57290
57290
  round: true,
57291
- onClick: () => onChangeValue(max),
57291
+ onClick: () => onChangeValue(range2 ? [value == null ? void 0 : value[0], max] : max),
57292
57292
  disabled: disabled2 || value === max || disabledContext,
57293
57293
  icon: /* @__PURE__ */ jsx(FaFastForward, {})
57294
57294
  })