pebble-web 2.5.0 → 2.5.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.
@@ -2,3 +2,4 @@ export declare const dateClass: string;
2
2
  export declare const dropDownClassName: string;
3
3
  export declare const inputStyle: string;
4
4
  export declare const wrapperStyle: string;
5
+ export declare const errorStyle: string;
@@ -8,6 +8,7 @@ export interface DateInputProps {
8
8
  inputProps?: Omit<SimpleInputProps, "value" | "onChange" | "placeholder">;
9
9
  calendarProps?: DateSingle;
10
10
  disabled?: boolean;
11
+ errorMessage?: string;
11
12
  }
12
13
  export interface DateInputState {
13
14
  stringInput: string;