videosphere
    Preparing search index...
    interface ScheduleDateTimeFieldsProps {
        dateId: string;
        timeId: string;
        dateStr: string;
        timeStr: string;
        platform: SchedulePlatform;
        onDateChange: (dateStr: string) => void;
        onTimeChange: (timeStr: string) => void;
        dateLabel?: string;
        timeLabel?: string;
        dateClassName?: string;
        timeClassName?: string;
        dateInvalid?: boolean;
        timeInvalid?: boolean;
        disabled?: boolean;
    }
    Index

    Properties

    dateId: string

    DOM id for the date trigger button.

    timeId: string

    DOM id for the time picker trigger button.

    dateStr: string

    Selected wall-clock date (YYYY-MM-DD).

    timeStr: string

    Selected wall-clock time (HH:MM, 24-hour storage).

    Platform schedule window (youtube or facebook).

    onDateChange: (dateStr: string) => void

    Called when the calendar date changes or is cleared.

    onTimeChange: (timeStr: string) => void

    Called when the time input changes.

    dateLabel?: string
    timeLabel?: string
    dateClassName?: string
    timeClassName?: string
    dateInvalid?: boolean
    timeInvalid?: boolean
    disabled?: boolean