@star-insure/sdk 3.2.4 → 3.2.5
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.cjs.development.js +8 -2
- package/dist/sdk.cjs.development.js.map +1 -1
- package/dist/sdk.cjs.production.min.js +1 -1
- package/dist/sdk.cjs.production.min.js.map +1 -1
- package/dist/sdk.esm.js +8 -2
- package/dist/sdk.esm.js.map +1 -1
- package/package.json +1 -1
- package/src/components/filter/Action.tsx +2 -2
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
|
|