@bloodhoundenterprise/doodleui 1.0.0-alpha.11 → 1.0.0-alpha.12
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/README.md +1 -1
- package/dist/doodleui.js +6 -2
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
<p align="center">
|
|
2
|
-
<img src="https://img.shields.io/badge/version-1.0.0--alpha.
|
|
2
|
+
<img src="https://img.shields.io/badge/version-1.0.0--alpha.12-teal" alt="version 1.0.0-alpha.12"/>
|
|
3
3
|
<a href="https://ghst.ly/BHSlack">
|
|
4
4
|
<img src="https://img.shields.io/badge/BloodHound Slack-4A154B?logo=slack&logoColor=EEF0F2"
|
|
5
5
|
alt="BloodHound Slack"></a>
|
package/dist/doodleui.js
CHANGED
|
@@ -455,6 +455,7 @@ const ho = x.forwardRef(({ ...e }, t) => {
|
|
|
455
455
|
return /* @__PURE__ */ f(
|
|
456
456
|
Ft,
|
|
457
457
|
{
|
|
458
|
+
name: "prev",
|
|
458
459
|
ref: t,
|
|
459
460
|
className: "px-2",
|
|
460
461
|
variant: "text",
|
|
@@ -472,11 +473,13 @@ const yo = x.forwardRef(() => {
|
|
|
472
473
|
return /* @__PURE__ */ f("div", { className: "flex flex-row", children: n.map((a, r) => /* @__PURE__ */ f(
|
|
473
474
|
"button",
|
|
474
475
|
{
|
|
476
|
+
name: `dot-${r}`,
|
|
475
477
|
className: "h-2.5 w-2.5 mx-1.5 border-x border-y rounded-3xl border-black dark:border-white ".concat(
|
|
476
|
-
r === e ? "bg-black dark:bg-white rounded-3xl" : ""
|
|
478
|
+
r === e ? "active bg-black dark:bg-white rounded-3xl" : ""
|
|
477
479
|
),
|
|
478
480
|
onClick: () => t(r)
|
|
479
|
-
}
|
|
481
|
+
},
|
|
482
|
+
r
|
|
480
483
|
)) });
|
|
481
484
|
});
|
|
482
485
|
yo.displayName = "CarouselDots";
|
|
@@ -485,6 +488,7 @@ const bo = x.forwardRef(({ ...e }, t) => {
|
|
|
485
488
|
return /* @__PURE__ */ f(
|
|
486
489
|
Ft,
|
|
487
490
|
{
|
|
491
|
+
name: "next",
|
|
488
492
|
ref: t,
|
|
489
493
|
className: "px-2",
|
|
490
494
|
variant: "text",
|