@bigbinary/neetoui 6.2.1 → 6.2.3

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
@@ -199,12 +199,13 @@ export type DatePickerProps = {
199
199
  id?: string;
200
200
  disabled?: boolean;
201
201
  labelProps?: LabelProps;
202
+ allowClear?: boolean;
202
203
  [key: string]: any;
203
204
  };
204
205
 
205
206
  export type DateTimePickerProps = {
206
- value: any;
207
- defaultValue?: any;
207
+ value?: string;
208
+ defaultValue?: string;
208
209
  className?: string;
209
210
  label?: string;
210
211
  size?: "small" | "medium" | "large";