@wealthx/shadcn 1.5.18 → 1.5.19
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/.turbo/turbo-build.log +113 -113
- package/CHANGELOG.md +6 -0
- package/dist/{chunk-ZAXZBOWI.mjs → chunk-EHQ35FYA.mjs} +4 -1
- package/dist/{chunk-L7IZ3YHI.mjs → chunk-GDBM2GL5.mjs} +1 -1
- package/dist/{chunk-NCMV3LTP.mjs → chunk-H3PTREG6.mjs} +4 -1
- package/dist/{chunk-7II6QRCZ.mjs → chunk-H5NI6ZIU.mjs} +1 -1
- package/dist/{chunk-TLLD5IU6.mjs → chunk-PSBQ4I3M.mjs} +1 -1
- package/dist/components/ui/ai-assistant-drawer.mjs +2 -2
- package/dist/components/ui/appointment-detail-sheet.mjs +2 -2
- package/dist/components/ui/drawer.js +4 -1
- package/dist/components/ui/drawer.mjs +1 -1
- package/dist/components/ui/financial-drawers.mjs +2 -2
- package/dist/components/ui/scenario-drawer.mjs +1 -1
- package/dist/components/ui/sheet.js +4 -1
- package/dist/components/ui/sheet.mjs +1 -1
- package/dist/index.js +8 -2
- package/dist/index.mjs +5 -5
- package/dist/styles.css +1 -1
- package/package.json +1 -1
- package/src/components/ui/drawer.tsx +4 -1
- package/src/components/ui/sheet.tsx +4 -1
- package/src/styles/globals.css +6 -0
- package/src/styles/styles-css.ts +1 -1
package/package.json
CHANGED
|
@@ -125,7 +125,10 @@ function DrawerFooter({
|
|
|
125
125
|
}: DrawerFooterProps): ReactElement {
|
|
126
126
|
return (
|
|
127
127
|
<div
|
|
128
|
-
className={cn(
|
|
128
|
+
className={cn(
|
|
129
|
+
"mt-auto flex flex-row justify-end gap-2 border-t border-border p-4",
|
|
130
|
+
className,
|
|
131
|
+
)}
|
|
129
132
|
data-slot="drawer-footer"
|
|
130
133
|
{...props}
|
|
131
134
|
/>
|
|
@@ -136,7 +136,10 @@ export type SheetFooterProps = React.ComponentProps<"div">;
|
|
|
136
136
|
function SheetFooter({ className, ...props }: SheetFooterProps): ReactElement {
|
|
137
137
|
return (
|
|
138
138
|
<div
|
|
139
|
-
className={cn(
|
|
139
|
+
className={cn(
|
|
140
|
+
"mt-auto flex flex-row justify-end gap-2 border-t border-border p-4",
|
|
141
|
+
className,
|
|
142
|
+
)}
|
|
140
143
|
data-slot="sheet-footer"
|
|
141
144
|
{...props}
|
|
142
145
|
/>
|
package/src/styles/globals.css
CHANGED
|
@@ -664,3 +664,9 @@ textarea::selection {
|
|
|
664
664
|
[data-sonner-toast][data-type="info"] {
|
|
665
665
|
box-shadow: inset 4px 0 0 var(--info) !important;
|
|
666
666
|
}
|
|
667
|
+
|
|
668
|
+
/* DrawerFooter: stretch buttons to fill full row for bottom/top drawers */
|
|
669
|
+
[data-vaul-drawer-direction="bottom"] [data-slot="drawer-footer"] > *,
|
|
670
|
+
[data-vaul-drawer-direction="top"] [data-slot="drawer-footer"] > * {
|
|
671
|
+
flex: 1 1 0%;
|
|
672
|
+
}
|