Files
klz-cables.com/.pnpm-store/v10/files/b0/ff7ae118c80fead4ced6da9db9a70023bc8ffe45fc582d24f5be226a63a3ff08510819f2e53530d6bc8de6914caa6f9f1e64370867f3430cd3de23fd385dac
Marc Mintel 5397309103
Some checks failed
Build & Deploy / 🔍 Prepare (push) Successful in 20s
Build & Deploy / 🧪 QA (push) Failing after 34s
Build & Deploy / 🏗️ Build (push) Has started running
Build & Deploy / 🚀 Deploy (push) Has been cancelled
Build & Deploy / 🧪 Smoke Test (push) Has been cancelled
Build & Deploy / ⚡ Lighthouse (push) Has been cancelled
Build & Deploy / 🔔 Notify (push) Has been cancelled
fix(products): fix breadcrumbs and product filtering (backport from main)
2026-02-24 16:04:21 +01:00

24 lines
771 B
Plaintext

import React, { Component } from "react";
import { type Locale } from "./date_utils";
interface MonthYearDropdownOptionsProps {
minDate: Date;
maxDate: Date;
onCancel: VoidFunction;
onChange: (monthYear: number) => void;
scrollableMonthYearDropdown?: boolean;
date: Date;
dateFormat: string;
locale?: Locale;
}
interface MonthYearDropdownOptionsState {
monthYearsList: Date[];
}
export default class MonthYearDropdownOptions extends Component<MonthYearDropdownOptionsProps, MonthYearDropdownOptionsState> {
constructor(props: MonthYearDropdownOptionsProps);
renderOptions: () => React.ReactElement[];
onChange: (monthYear: number) => void;
handleClickOutside: () => void;
render(): React.ReactElement;
}
export {};