@algorithm-shift/design-system 1.3.106 → 1.3.107
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.css +8 -0
- package/dist/index.css.map +1 -1
- package/dist/index.js +4 -2
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +4 -2
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
package/dist/index.mjs
CHANGED
|
@@ -797,11 +797,13 @@ var ButtonGroup = ({
|
|
|
797
797
|
"rounded-md overflow-hidden",
|
|
798
798
|
"border border-border",
|
|
799
799
|
"bg-background",
|
|
800
|
-
"focus-within:ring-2 focus-within:ring-ring focus-within:ring-offset-2"
|
|
800
|
+
"focus-within:ring-2 focus-within:ring-ring focus-within:ring-offset-2",
|
|
801
|
+
className,
|
|
802
|
+
"p-0"
|
|
801
803
|
);
|
|
802
804
|
const mainButtonClasses = cn(
|
|
803
805
|
className,
|
|
804
|
-
orientation === "horizontal" ? "rounded-none border-l-0 border-t-0 border-r last:border-r-0" : "rounded-none border-t-0 border-
|
|
806
|
+
orientation === "horizontal" ? "rounded-none border-l-0 border-t-0 border-b-0 border-r last:border-r-0" : "rounded-none border-t-0 border-l-0 border-r-0 last:border-b-0",
|
|
805
807
|
"focus:ring-0 focus-visible:ring-0"
|
|
806
808
|
);
|
|
807
809
|
const dropdownButtonClasses = cn(
|