schema-components - v3.7.0
    Preparing search index...

    Interface MantineComponents

    Element types the Mantine resolver renders into. Every slot is the Mantine component the corresponding render function expects to find at the call site; consumers wire these in once via createMantineResolver.

    Text is required so read-only scalars render as a styled Mantine <Text> element instead of a bare <span>, matching the visual weight of the editable variants.

    interface MantineComponents {
        TextInput: ElementType;
        NumberInput: ElementType;
        Switch: ElementType;
        Select: ElementType;
        Fieldset: ElementType;
        Text: ElementType;
    }
    Index

    Properties

    TextInput: ElementType
    NumberInput: ElementType
    Switch: ElementType
    Select: ElementType
    Fieldset: ElementType
    Text: ElementType