mirror of
https://github.com/supabase/supabase.git
synced 2026-06-13 01:39:53 +08:00
This PR migrates the whole monorepo to use Tailwind v4: - Removed `@tailwindcss/container-queries` plugin since it's included by default in v4, - Bump all instances of Tailwind to v4. Made minimal changes to the shared config to remove non-supported features (`alpha` mentions), - Migrate all apps to be compatible with v4 configs, - Fix the `typography.css` import in 3 apps, - Add missing rules which were included by default in v3, - Run `pnpm dlx @tailwindcss/upgrade` on all apps, which renames a lot of classes - Rename all misnamed classes according to https://tailwindcss.com/docs/upgrade-guide#renamed-utilities in all apps. --------- Co-authored-by: Jordi Enric <jordi.err@gmail.com>
69 lines
2.0 KiB
TypeScript
69 lines
2.0 KiB
TypeScript
import { forwardRef, HTMLAttributes } from 'react'
|
|
import { cn } from 'ui'
|
|
|
|
interface Props {
|
|
children: React.ReactNode
|
|
header?: React.ReactNode
|
|
footer?: React.ReactNode
|
|
/**
|
|
* Fades the panel and clicks are disabled
|
|
*/
|
|
disabled?: boolean
|
|
}
|
|
|
|
/** @deprecated Use Card instead, refer to BasicAuthSettingsForm.tsx for reference */
|
|
export const FormPanel = ({ children, header, footer }: Props) => (
|
|
<FormPanelContainer>
|
|
{header && <FormPanelHeader>{header}</FormPanelHeader>}
|
|
<FormPanelContent className="divide-y">{children}</FormPanelContent>
|
|
{footer && <FormPanelFooter>{footer}</FormPanelFooter>}
|
|
</FormPanelContainer>
|
|
)
|
|
|
|
export const FormPanelContainer = forwardRef<HTMLDivElement, HTMLAttributes<HTMLDivElement>>(
|
|
({ children, ...props }, ref) => (
|
|
<div
|
|
ref={ref}
|
|
{...props}
|
|
className={cn(
|
|
'bg-surface-100 border overflow-hidden rounded-md shadow-sm max-w-full',
|
|
props.className
|
|
)}
|
|
>
|
|
{children}
|
|
</div>
|
|
)
|
|
)
|
|
|
|
FormPanelContainer.displayName = FormPanelContainer.displayName
|
|
|
|
export const FormPanelHeader = forwardRef<HTMLDivElement, HTMLAttributes<HTMLDivElement>>(
|
|
({ children, ...props }, ref) => (
|
|
<div ref={ref} {...props} className={cn('border-default border-b px-8 py-4', props.className)}>
|
|
{children}
|
|
</div>
|
|
)
|
|
)
|
|
|
|
FormPanelHeader.displayName = FormPanelHeader.displayName
|
|
|
|
export const FormPanelContent = forwardRef<HTMLDivElement, HTMLAttributes<HTMLDivElement>>(
|
|
({ children, ...props }, ref) => (
|
|
<div ref={ref} {...props} className={cn('divide-border flex flex-col gap-0', props.className)}>
|
|
{children}
|
|
</div>
|
|
)
|
|
)
|
|
|
|
FormPanelContent.displayName = FormPanelContent.displayName
|
|
|
|
export const FormPanelFooter = forwardRef<HTMLDivElement, HTMLAttributes<HTMLDivElement>>(
|
|
({ children, ...props }, ref) => (
|
|
<div ref={ref} {...props} className={cn('border-t', props.className)}>
|
|
{children}
|
|
</div>
|
|
)
|
|
)
|
|
|
|
FormPanelFooter.displayName = FormPanelFooter.displayName
|