@apexcura/ui-components 0.0.14-Beta191 → 0.0.14-Beta192
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 +1 -1
- package/dist/index.mjs +1 -1
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -969,7 +969,7 @@ var DateRangePickerElement = (props) => {
|
|
|
969
969
|
if (dates) {
|
|
970
970
|
props.onChange && props.onChange(dateStrings);
|
|
971
971
|
} else {
|
|
972
|
-
props.onChange && props.onChange(
|
|
972
|
+
props.onChange && props.onChange("");
|
|
973
973
|
}
|
|
974
974
|
};
|
|
975
975
|
const rangePresets = [
|
package/dist/index.mjs
CHANGED
|
@@ -903,7 +903,7 @@ var DateRangePickerElement = (props) => {
|
|
|
903
903
|
if (dates) {
|
|
904
904
|
props.onChange && props.onChange(dateStrings);
|
|
905
905
|
} else {
|
|
906
|
-
props.onChange && props.onChange(
|
|
906
|
+
props.onChange && props.onChange("");
|
|
907
907
|
}
|
|
908
908
|
};
|
|
909
909
|
const rangePresets = [
|