@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.js
CHANGED
|
@@ -895,11 +895,13 @@ var ButtonGroup = ({
|
|
|
895
895
|
"rounded-md overflow-hidden",
|
|
896
896
|
"border border-border",
|
|
897
897
|
"bg-background",
|
|
898
|
-
"focus-within:ring-2 focus-within:ring-ring focus-within:ring-offset-2"
|
|
898
|
+
"focus-within:ring-2 focus-within:ring-ring focus-within:ring-offset-2",
|
|
899
|
+
className,
|
|
900
|
+
"p-0"
|
|
899
901
|
);
|
|
900
902
|
const mainButtonClasses = cn(
|
|
901
903
|
className,
|
|
902
|
-
orientation === "horizontal" ? "rounded-none border-l-0 border-t-0 border-r last:border-r-0" : "rounded-none border-t-0 border-
|
|
904
|
+
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",
|
|
903
905
|
"focus:ring-0 focus-visible:ring-0"
|
|
904
906
|
);
|
|
905
907
|
const dropdownButtonClasses = cn(
|