pub struct GridProps {
pub columns: u8,
pub md_columns: Option<u8>,
pub lg_columns: Option<u8>,
pub gap: GapSize,
pub scrollable: Option<bool>,
}Expand description
Props for Grid component — multi-column layout.
Fields§
§columns: u8Number of columns (1-12) at base (mobile) viewport.
md_columns: Option<u8>Number of columns at md breakpoint (768px+). When set, creates a responsive grid.
lg_columns: Option<u8>Number of columns at lg breakpoint (1024px+). Optional; falls back to md.
gap: GapSizeGap between grid items.
scrollable: Option<bool>Enables horizontal scroll mode. Children get min-w-[280px] and the grid
uses grid-flow-col auto-cols layout for Trello-like horizontal scrolling.
Trait Implementations§
Source§impl<'de> Deserialize<'de> for GridProps
impl<'de> Deserialize<'de> for GridProps
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl JsonSchema for GridProps
impl JsonSchema for GridProps
Source§fn schema_id() -> Cow<'static, str>
fn schema_id() -> Cow<'static, str>
Returns a string that uniquely identifies the schema produced by this type. Read more
Source§fn json_schema(generator: &mut SchemaGenerator) -> Schema
fn json_schema(generator: &mut SchemaGenerator) -> Schema
Generates a JSON Schema for this type. Read more
Source§fn inline_schema() -> bool
fn inline_schema() -> bool
Whether JSON Schemas generated for this type should be included directly in parent schemas,
rather than being re-used where possible using the
$ref keyword. Read moreimpl StructuralPartialEq for GridProps
Auto Trait Implementations§
impl Freeze for GridProps
impl RefUnwindSafe for GridProps
impl Send for GridProps
impl Sync for GridProps
impl Unpin for GridProps
impl UnsafeUnpin for GridProps
impl UnwindSafe for GridProps
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more