ui-kit-ck-consultant 0.5.161 → 0.5.162
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 -2
- package/dist/index.js.map +1 -1
- package/dist/index.modern.js +2 -2
- package/dist/index.modern.js.map +1 -1
- package/package.json +1 -1
package/dist/index.js
CHANGED
@@ -9855,13 +9855,13 @@ var Calendar = /*#__PURE__*/function (_React$Component) {
|
|
9855
9855
|
year: parseInt(moment(this.props.valueDate).format('YYYY')),
|
9856
9856
|
month: parseInt(moment(this.props.valueDate).format('M')),
|
9857
9857
|
activeDate: this.props.valueDate
|
9858
|
-
});
|
9858
|
+
}, this.getArrayDays);
|
9859
9859
|
}
|
9860
9860
|
|
9861
9861
|
if (prevProps.show !== this.props.show && this.props.show && this.props.valueTime) {
|
9862
9862
|
this.setState({
|
9863
9863
|
activeTime: this.props.valueTime
|
9864
|
-
});
|
9864
|
+
}, this.getArrayTime);
|
9865
9865
|
}
|
9866
9866
|
};
|
9867
9867
|
|