HEX
Server: Apache/2.4.58 (Ubuntu)
System: Linux ip-172-26-0-120 6.17.0-1009-aws #9~24.04.2-Ubuntu SMP Fri Mar 6 23:50:29 UTC 2026 x86_64
User: ubuntu (1000)
PHP: 8.3.6
Disabled: NONE
Upload Files
File: /var/www/html/orbi-individual/node_modules/react-datepicker/dist/month_dropdown.d.ts
import React, { Component } from "react";
import { type Locale } from "./date_utils";
import MonthDropdownOptions from "./month_dropdown_options";
interface MonthDropdownOptionsProps extends React.ComponentPropsWithoutRef<typeof MonthDropdownOptions> {
}
interface MonthDropdownProps extends Omit<MonthDropdownOptionsProps, "monthNames" | "onChange" | "onCancel"> {
    dropdownMode: "scroll" | "select";
    locale?: Locale;
    onChange: (month: number) => void;
    useShortMonthInDropdown?: boolean;
}
interface MonthDropdownState {
    dropdownVisible: boolean;
}
export default class MonthDropdown extends Component<MonthDropdownProps, MonthDropdownState> {
    state: MonthDropdownState;
    renderSelectOptions: (monthNames: string[]) => JSX.Element[];
    renderSelectMode: (monthNames: string[]) => JSX.Element;
    renderReadView: (visible: boolean, monthNames: string[]) => JSX.Element;
    renderDropdown: (monthNames: string[]) => JSX.Element;
    renderScrollMode: (monthNames: string[]) => JSX.Element[];
    onChange: (month: number) => void;
    toggleDropdown: () => void;
    render(): JSX.Element;
}
export {};