@bigbinary/neetoui 5.2.20 → 5.2.21

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.
package/index.d.ts CHANGED
@@ -680,6 +680,16 @@ export type TreeProps = {
680
680
  onSelect: Function;
681
681
  };
682
682
 
683
+ export type TimePickerInputProps = {
684
+ label?: string;
685
+ value?: string | Date;
686
+ onChange?: (date: any, value: string) => void;
687
+ labelProps?: object;
688
+ className?: string;
689
+ error?: string;
690
+ required?: boolean;
691
+ };
692
+
683
693
  // components
684
694
 
685
695
  export const Accordion: React.FC<AccordionProps> & {
@@ -768,3 +778,4 @@ export const Kbd: React.FC<KbdProps>;
768
778
  export const NoData: React.FC<NoDataProps>;
769
779
  export const TreeSelect: React.FC<TreeSelectProps>;
770
780
  export const Tree: React.FC<TreeProps>;
781
+ export const TimePickerInput: React.FC<TimePickerInputProps>;