@apexcura/ui-components 0.0.11-Beta177 → 0.0.11-Beta178
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 +2 -0
- package/dist/index.mjs +2 -0
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -655,7 +655,9 @@ var DatePickerElement = (props) => {
|
|
|
655
655
|
console.log("date---------", date2);
|
|
656
656
|
if (date2) {
|
|
657
657
|
const formattedDate = date2.format("lll");
|
|
658
|
+
console.log("formattedDate-----------------", formattedDate);
|
|
658
659
|
setDate(date2);
|
|
660
|
+
console.log("changedDate------------", date2);
|
|
659
661
|
if (props.onChange) {
|
|
660
662
|
props.onChange(formattedDate);
|
|
661
663
|
}
|
package/dist/index.mjs
CHANGED
|
@@ -604,7 +604,9 @@ var DatePickerElement = (props) => {
|
|
|
604
604
|
console.log("date---------", date2);
|
|
605
605
|
if (date2) {
|
|
606
606
|
const formattedDate = date2.format("lll");
|
|
607
|
+
console.log("formattedDate-----------------", formattedDate);
|
|
607
608
|
setDate(date2);
|
|
609
|
+
console.log("changedDate------------", date2);
|
|
608
610
|
if (props.onChange) {
|
|
609
611
|
props.onChange(formattedDate);
|
|
610
612
|
}
|