@apexcura/ui-components 0.0.15-Beta20 → 0.0.15-Beta22

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.mjs CHANGED
@@ -91597,7 +91597,7 @@ var CheckboxElement = (props) => {
91597
91597
  }
91598
91598
  };
91599
91599
  const onHandleAllChanges = (e) => {
91600
- const newList = e.target.checked ? props.options : [""];
91600
+ const newList = e.target.checked ? props.options : [];
91601
91601
  setCheckedList(newList);
91602
91602
  if (props.onChange) {
91603
91603
  props.onChange(newList);
@@ -92135,7 +92135,7 @@ var DatePickerElement = (props) => {
92135
92135
  props.onChange(dateString);
92136
92136
  }
92137
92137
  } else {
92138
- setDateState(null);
92138
+ setDateState("");
92139
92139
  if (props.onChange) {
92140
92140
  props.onChange("");
92141
92141
  }