ui-kit-ck-consultant 0.5.202 → 0.5.203
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 +3 -5
- package/dist/index.js.map +1 -1
- package/dist/index.modern.js +3 -5
- package/dist/index.modern.js.map +1 -1
- package/package.json +1 -1
package/dist/index.js
CHANGED
@@ -10034,16 +10034,14 @@ var Calendar = /*#__PURE__*/function (_React$Component) {
|
|
10034
10034
|
return /*#__PURE__*/React__default.createElement("tr", {
|
10035
10035
|
key: idxRow
|
10036
10036
|
}, row.map(function (col, idxCol) {
|
10037
|
-
return /*#__PURE__*/React__default.createElement(
|
10038
|
-
|
10039
|
-
}, _this3.props.isWeek || idxCol < 5 ? /*#__PURE__*/React__default.createElement("td", {
|
10040
|
-
key: idxCol
|
10037
|
+
return _this3.props.isWeek || idxCol < 5 ? /*#__PURE__*/React__default.createElement("td", {
|
10038
|
+
key: idxRow + "-" + idxCol
|
10041
10039
|
}, col ? /*#__PURE__*/React__default.createElement("span", {
|
10042
10040
|
className: _this3.checkActiveClassName(idxRow, idxCol),
|
10043
10041
|
onClick: function onClick() {
|
10044
10042
|
return _this3.handleActiveClick(idxRow, idxCol);
|
10045
10043
|
}
|
10046
|
-
}, moment(_this3.state.year + "-" + _this3.state.month + "-" + col, 'YYYY-M-D').format('DD')) : null) : null
|
10044
|
+
}, moment(_this3.state.year + "-" + _this3.state.month + "-" + col, 'YYYY-M-D').format('DD')) : null) : null;
|
10047
10045
|
}));
|
10048
10046
|
})))))), this.props.isTime && this.state.activeDate ? /*#__PURE__*/React__default.createElement(reactFlexboxGrid.Col, {
|
10049
10047
|
xs: 12,
|