@doist/reactist 25.0.0-beta.1 → 25.0.0-beta.2

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.
@@ -2512,7 +2512,8 @@ const Tab = /*#__PURE__*/React.forwardRef(function Tab({
2512
2512
  children,
2513
2513
  id,
2514
2514
  exceptionallySetClassName,
2515
- render
2515
+ render,
2516
+ onClick
2516
2517
  }, ref) {
2517
2518
  const tabContextValue = React.useContext(TabsContext);
2518
2519
  if (!tabContextValue) return null;
@@ -2522,11 +2523,12 @@ const Tab = /*#__PURE__*/React.forwardRef(function Tab({
2522
2523
  } = tabContextValue;
2523
2524
  const className = classNames(exceptionallySetClassName, modules_40c67f5b.tab, modules_40c67f5b["tab-" + variant]);
2524
2525
  return /*#__PURE__*/React.createElement(react.Tab, {
2525
- render: render,
2526
- className: className,
2527
2526
  id: id,
2527
+ ref: ref,
2528
2528
  store: tabStore,
2529
- ref: ref
2529
+ render: render,
2530
+ className: className,
2531
+ onClick: onClick
2530
2532
  }, children);
2531
2533
  });
2532
2534
  /**