@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.
package/dist/sdk.esm.js CHANGED
@@ -2412,7 +2412,10 @@ function Action(_ref) {
2412
2412
  if (as === 'Link' && href) {
2413
2413
  return React__default.createElement(Link, {
2414
2414
  className: className,
2415
- href: href
2415
+ href: href,
2416
+ onClick: function onClick() {
2417
+ return _onClick();
2418
+ }
2416
2419
  }, title);
2417
2420
  }
2418
2421
 
@@ -2420,7 +2423,10 @@ function Action(_ref) {
2420
2423
  return React__default.createElement("a", {
2421
2424
  className: className,
2422
2425
  target: target,
2423
- href: href
2426
+ href: href,
2427
+ onClick: function onClick() {
2428
+ return _onClick();
2429
+ }
2424
2430
  }, title);
2425
2431
  }
2426
2432
 
@@ -2673,7 +2679,7 @@ function FilterItem(_ref) {
2673
2679
  onClick: function onClick() {
2674
2680
  return handleClick();
2675
2681
  },
2676
- 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', {
2682
+ 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', {
2677
2683
  '!bg-teal border-teal': hasFilters
2678
2684
  })
2679
2685
  }, React__default.createElement("p", {
@@ -2774,7 +2780,8 @@ function FilterItem(_ref) {
2774
2780
  }, React__default.createElement(Button, {
2775
2781
  type: "button",
2776
2782
  className: "!min-w-[0px] flex-grow !px-2 text-sm !transition-none",
2777
- onClick: handleClear
2783
+ onClick: handleClear,
2784
+ small: true
2778
2785
  }, "Clear"), React__default.createElement(Button, {
2779
2786
  type: "submit",
2780
2787
  status: "primary",