Circle V2 API Docs
    Preparing search index...

    Interface DatePickerRootProviderBaseProps

    interface DatePickerRootProviderBaseProps {
        asChild?: boolean;
        hideOutsideDays?: ConditionalValue<boolean | undefined>;
        immediate?: boolean;
        lazyMount?: boolean;
        onExitComplete?: VoidFunction;
        present?: boolean;
        recipe?: SlotRecipeDefinition<string, SlotRecipeVariantRecord<string>>;
        size?: ConditionalValue<"sm" | "md" | "lg" | "xl" | "xs" | undefined>;
        skipAnimationOnMount?: boolean;
        unmountOnExit?: boolean;
        unstyled?: boolean;
        value: UseDatePickerReturn;
        variant?: ConditionalValue<"outline" | "subtle" | "flushed" | undefined>;
    }

    Hierarchy

    • Assign<ArkDatePicker.RootProviderBaseProps, SlotRecipeProps<"datePicker">>
    • UnstyledProp
      • DatePickerRootProviderBaseProps
    Index

    Properties

    asChild?: boolean

    Use the provided child element as the default rendered element, combining their props and behavior.

    hideOutsideDays?: ConditionalValue<boolean | undefined>
    immediate?: boolean

    Whether to synchronize the present change immediately or defer it to the next frame

    lazyMount?: boolean

    Whether to enable lazy mounting

    false
    
    onExitComplete?: VoidFunction

    Function called when the animation ends in the closed state

    present?: boolean

    Whether the node is present (controlled by the user)

    recipe?: SlotRecipeDefinition<string, SlotRecipeVariantRecord<string>>
    size?: ConditionalValue<"sm" | "md" | "lg" | "xl" | "xs" | undefined>
    "md"
    
    skipAnimationOnMount?: boolean

    Whether to allow the initial presence animation.

    false
    
    unmountOnExit?: boolean

    Whether to unmount on exit.

    false
    
    unstyled?: boolean

    If true, the element will opt out of the theme styles.

    variant?: ConditionalValue<"outline" | "subtle" | "flushed" | undefined>
    "outline"