@hoddy-ui/next 2.5.82 → 2.5.83

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/dist/index.js CHANGED
@@ -2001,7 +2001,7 @@ var TextField2 = import_react16.default.forwardRef(
2001
2001
  const day = date.getDate();
2002
2002
  const month = date.getMonth() + 1;
2003
2003
  const year = date.getFullYear();
2004
- const dateString = `${day}/${month}/${year}`;
2004
+ const dateString = `${year}-${month}-${day}`;
2005
2005
  onChangeText?.(dateString);
2006
2006
  setDatePickerVisible(false);
2007
2007
  };