fix pyi again

This commit is contained in:
Lendemor 2024-12-03 22:54:58 +01:00
parent ade680edef
commit 4eabd46fae
2 changed files with 4 additions and 4 deletions

View File

@ -733,7 +733,7 @@ class TableCell(elements.Td, CommonPaddingProps, RadixThemesComponent):
spell_check: Defines whether the element may be checked for spelling errors.
tab_index: Defines the position of the current element in the tabbing order.
title: Defines a tooltip for the element.
p: Padding: "0" - "9"
p: Padding global: "0" - "9"
px: Padding horizontal: "0" - "9"
py: Padding vertical: "0" - "9"
pt: Padding top: "0" - "9"
@ -973,7 +973,7 @@ class TableRowHeaderCell(elements.Th, CommonPaddingProps, RadixThemesComponent):
spell_check: Defines whether the element may be checked for spelling errors.
tab_index: Defines the position of the current element in the tabbing order.
title: Defines a tooltip for the element.
p: Padding: "0" - "9"
p: Padding global: "0" - "9"
px: Padding horizontal: "0" - "9"
py: Padding vertical: "0" - "9"
pt: Padding top: "0" - "9"

View File

@ -227,14 +227,14 @@ class LayoutComponent(CommonMarginProps, CommonPaddingProps, RadixThemesComponen
*children: Child components.
flex_shrink: Whether the element will take up the smallest possible space: "0" | "1"
flex_grow: Whether the element will take up the largest possible space: "0" | "1"
m: Margin: "0" - "9"
m: Margin global: "0" - "9"
mx: Margin horizontal: "0" - "9"
my: Margin vertical: "0" - "9"
mt: Margin top: "0" - "9"
mr: Margin right: "0" - "9"
mb: Margin bottom: "0" - "9"
ml: Margin left: "0" - "9"
p: Padding: "0" - "9"
p: Padding global: "0" - "9"
px: Padding horizontal: "0" - "9"
py: Padding vertical: "0" - "9"
pt: Padding top: "0" - "9"