Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat(card,safearea): add css variable type definition #6737

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 9 additions & 1 deletion src/components/card/card.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,15 @@ export type CardProps = {
onBodyClick?: (event: React.MouseEvent<HTMLDivElement, MouseEvent>) => void
onHeaderClick?: (event: React.MouseEvent<HTMLDivElement, MouseEvent>) => void
children?: ReactNode
} & NativeProps
} &
NativeProps<
| '--adm-card-border-radius'
| '--adm-card-padding-inline'
| '--adm-card-header-border-width'
| '--adm-card-header-border-color'
| '--adm-card-header-padding-block'
| '--adm-card-body-padding-block'
>

export const Card: FC<CardProps> = props => {
const renderHeader = () => {
Expand Down
2 changes: 1 addition & 1 deletion src/components/safe-area/safe-area.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ const classPrefix = 'adm-safe-area'

export type SafeAreaProps = {
position: 'top' | 'bottom'
} & NativeProps
} & NativeProps<'--multiple'>

export const SafeArea: FC<SafeAreaProps> = props => {
return withNativeProps(
Expand Down