@akropolys/kiku 1.0.0 → 1.0.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.
- package/dist/index.d.mts +2 -1
- package/dist/index.d.ts +2 -1
- package/dist/index.js +3 -2
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +3 -2
- package/dist/index.mjs.map +1 -1
- package/dist/styles.css +3502 -3474
- package/dist/styles.css.map +1 -1
- package/package.json +3 -3
package/dist/index.mjs
CHANGED
|
@@ -1990,7 +1990,8 @@ function Sparkle({
|
|
|
1990
1990
|
onNavigate,
|
|
1991
1991
|
theme,
|
|
1992
1992
|
classNames = {},
|
|
1993
|
-
product
|
|
1993
|
+
product,
|
|
1994
|
+
children
|
|
1994
1995
|
}) {
|
|
1995
1996
|
const [open, setOpen] = useState4(false);
|
|
1996
1997
|
const [mounted, setMounted] = useState4(false);
|
|
@@ -2013,7 +2014,7 @@ function Sparkle({
|
|
|
2013
2014
|
style: customStyles,
|
|
2014
2015
|
title: "Find similar products",
|
|
2015
2016
|
"aria-label": "Find similar products",
|
|
2016
|
-
children: /* @__PURE__ */ jsx6(SparkleIcon3, {})
|
|
2017
|
+
children: children || /* @__PURE__ */ jsx6(SparkleIcon3, {})
|
|
2017
2018
|
}
|
|
2018
2019
|
),
|
|
2019
2020
|
open && mounted && createPortal2(
|