@star-insure/sdk 3.2.4 → 3.2.6

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.
@@ -2419,7 +2419,10 @@ function Action(_ref) {
2419
2419
  if (as === 'Link' && href) {
2420
2420
  return React__default.createElement(react.Link, {
2421
2421
  className: className,
2422
- href: href
2422
+ href: href,
2423
+ onClick: function onClick() {
2424
+ return _onClick();
2425
+ }
2423
2426
  }, title);
2424
2427
  }
2425
2428
 
@@ -2427,7 +2430,10 @@ function Action(_ref) {
2427
2430
  return React__default.createElement("a", {
2428
2431
  className: className,
2429
2432
  target: target,
2430
- href: href
2433
+ href: href,
2434
+ onClick: function onClick() {
2435
+ return _onClick();
2436
+ }
2431
2437
  }, title);
2432
2438
  }
2433
2439
 
@@ -2680,7 +2686,7 @@ function FilterItem(_ref) {
2680
2686
  onClick: function onClick() {
2681
2687
  return handleClick();
2682
2688
  },
2683
- className: cn('flex rounded-2xl border hover:border-teal bg-gray-600 px-2 py-1 items-center justify-between shrink-0 gap-2 text-xs text-white hover:bg-teal transition-colors', {
2689
+ className: cn('flex rounded-2xl border hover:cursor-pointer hover:border-teal bg-gray-600 px-2 py-1 items-center justify-between shrink-0 gap-2 text-xs text-white hover:bg-teal transition-colors', {
2684
2690
  '!bg-teal border-teal': hasFilters
2685
2691
  })
2686
2692
  }, React__default.createElement("p", {
@@ -2781,7 +2787,8 @@ function FilterItem(_ref) {
2781
2787
  }, React__default.createElement(Button, {
2782
2788
  type: "button",
2783
2789
  className: "!min-w-[0px] flex-grow !px-2 text-sm !transition-none",
2784
- onClick: handleClear
2790
+ onClick: handleClear,
2791
+ small: true
2785
2792
  }, "Clear"), React__default.createElement(Button, {
2786
2793
  type: "submit",
2787
2794
  status: "primary",