@codecademy/gamut
68.6.268.6.3-alpha.57e1cd.0
dist/DatePicker/DatePickerInput/index.d.ts~
dist/DatePicker/DatePickerInput/index.d.tsModified+4
Index: package/dist/DatePicker/DatePickerInput/index.d.ts
===================================================================
--- package/dist/DatePicker/DatePickerInput/index.d.ts
+++ package/dist/DatePicker/DatePickerInput/index.d.ts
@@ -1,9 +1,13 @@
import type { InputWrapperProps } from '../../Form/inputs/Input';
export type DatePickerInputProps = Omit<InputWrapperProps, 'className' | 'type' | 'icon' | 'value' | 'onChange' | 'color'> & {
/** In range mode: which part of the range this input edits. Omit for single-date or combined display. */
rangePart?: 'start' | 'end';
+ /** Description to display between the label and the input. */
+ description?: string;
};
export declare const DatePickerInput: import("react").ForwardRefExoticComponent<Omit<InputWrapperProps, "color" | "className" | "onChange" | "type" | "icon" | "value"> & {
/** In range mode: which part of the range this input edits. Omit for single-date or combined display. */
rangePart?: "start" | "end";
+ /** Description to display between the label and the input. */
+ description?: string;
} & import("react").RefAttributes<HTMLDivElement>>;