ywana-core8 0.0.963 → 0.0.965
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.cjs +4 -2
- package/dist/index.cjs.map +1 -1
- package/dist/index.modern.js +4 -2
- package/dist/index.modern.js.map +1 -1
- package/dist/index.umd.js +4 -2
- package/dist/index.umd.js.map +1 -1
- package/package.json +1 -1
- package/src/html/textfield.js +2 -2
- package/src/incubator/planner.js +2 -1
package/dist/index.umd.js
CHANGED
@@ -1346,6 +1346,7 @@
|
|
1346
1346
|
var id = props.id,
|
1347
1347
|
_props$type = props.type,
|
1348
1348
|
type = _props$type === void 0 ? 'text' : _props$type,
|
1349
|
+
className = props.className,
|
1349
1350
|
label = props.label,
|
1350
1351
|
_props$labelPosition = props.labelPosition,
|
1351
1352
|
labelPosition = _props$labelPosition === void 0 ? 'top' : _props$labelPosition,
|
@@ -1389,7 +1390,7 @@
|
|
1389
1390
|
var labelTxt = /*#__PURE__*/React__default["default"].createElement(Text, null, label);
|
1390
1391
|
var placeholderTxt = site.translate ? site.translate(placeholder) : placeholder;
|
1391
1392
|
return /*#__PURE__*/React__default["default"].createElement("div", {
|
1392
|
-
className: style + " " + id,
|
1393
|
+
className: style + " " + id + " " + className,
|
1393
1394
|
onClick: onClick
|
1394
1395
|
}, /*#__PURE__*/React__default["default"].createElement("input", {
|
1395
1396
|
id: id,
|
@@ -5825,6 +5826,7 @@
|
|
5825
5826
|
cellWidth = _ref$cellWidth === void 0 ? 10 : _ref$cellWidth,
|
5826
5827
|
_ref$rowHeaderWidth = _ref.rowHeaderWidth,
|
5827
5828
|
rowHeaderWidth = _ref$rowHeaderWidth === void 0 ? 10 : _ref$rowHeaderWidth,
|
5829
|
+
rowHeaderTitle = _ref.rowHeaderTitle,
|
5828
5830
|
EventRenderer = _ref.EventRenderer,
|
5829
5831
|
onSelectCell = _ref.onSelectCell,
|
5830
5832
|
_ref$hideEmptyRows = _ref.hideEmptyRows,
|
@@ -5897,7 +5899,7 @@
|
|
5897
5899
|
style: {
|
5898
5900
|
width: rowHeaderWidth + "rem"
|
5899
5901
|
}
|
5900
|
-
}), uniqueMonths.map(function (month, index) {
|
5902
|
+
}, rowHeaderTitle), uniqueMonths.map(function (month, index) {
|
5901
5903
|
return /*#__PURE__*/React__default["default"].createElement("div", {
|
5902
5904
|
className: "month-cell",
|
5903
5905
|
key: month + "-" + index,
|