@natoora-libs/core 0.2.47 → 0.2.48

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.
@@ -9877,9 +9877,10 @@ var TableDesktopEditableField = ({
9877
9877
  {
9878
9878
  defaultValue: editInitialValue ? moment2(editInitialValue, "HH:mm:ss") : void 0,
9879
9879
  label: inputLabel,
9880
+ format: "DD/MM/YYYY",
9880
9881
  onAccept: (value) => {
9881
9882
  const formattedValue = value?.format("YYYY-MM-DD") ?? null;
9882
- const formattedLabel = value?.format("L") ?? null;
9883
+ const formattedLabel = value?.format("DD/MM/YYYY") ?? null;
9883
9884
  onUpdateEditableCell?.({
9884
9885
  rowId,
9885
9886
  columnId,