@acoustte-digital-services/digitalstore-controls-dev 0.8.1-dev.20260423085135 → 0.8.1-dev.20260423090220
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 +1 -1
- package/dist/index.mjs +1 -1
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -2853,7 +2853,7 @@ function Hyperlink(props) {
|
|
|
2853
2853
|
{
|
|
2854
2854
|
href: props.href,
|
|
2855
2855
|
prefetch: false,
|
|
2856
|
-
className:
|
|
2856
|
+
className: [linkClass, props.className].filter(Boolean).join(" "),
|
|
2857
2857
|
...additionalProps,
|
|
2858
2858
|
target,
|
|
2859
2859
|
children: props.children
|
package/dist/index.mjs
CHANGED
|
@@ -1730,7 +1730,7 @@ function Hyperlink(props) {
|
|
|
1730
1730
|
{
|
|
1731
1731
|
href: props.href,
|
|
1732
1732
|
prefetch: false,
|
|
1733
|
-
className:
|
|
1733
|
+
className: [linkClass, props.className].filter(Boolean).join(" "),
|
|
1734
1734
|
...additionalProps,
|
|
1735
1735
|
target,
|
|
1736
1736
|
children: props.children
|
package/package.json
CHANGED