@up42/up-components 5.12.0-date-pickers.0 → 5.12.0-date-pickers.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -6,6 +6,7 @@ export type DateRange = {
6
6
  start: FormDatePickerDateType;
7
7
  end: FormDatePickerDateType;
8
8
  };
9
+ export declare const DEFAULT_FORMAT = "YYYY\u2013MM\u2013DD";
9
10
  export type FormDateRangePickerProps = {
10
11
  startLabel?: string;
11
12
  startPlaceholder?: string;
@@ -31,4 +32,4 @@ export type FormDateRangePickerProps = {
31
32
  * FormDateRangePicker allows users to choose two dates (start and end) using calendar view.
32
33
  * Documentation: https://up-components.up42.com/?path=/docs-patterns-form-formdaterangepicker--docs
33
34
  */
34
- export declare const FormDateRangePicker: ({ value, onChange, label, helperText, error, startLabel, endLabel, disabled, minEndDateOffset, maxEndDateOffset, allowKeyboard, startPlaceholder, endPlaceholder, ...props }: FormDateRangePickerProps) => React.JSX.Element;
35
+ export declare const FormDateRangePicker: ({ value, onChange, label, helperText, error, startLabel, endLabel, disabled, minEndDateOffset, maxEndDateOffset, allowKeyboard, startPlaceholder, endPlaceholder, format, ...props }: FormDateRangePickerProps) => React.JSX.Element;