ywana-core8 0.0.96 → 0.0.97
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 +9 -1
- package/dist/index.cjs.map +1 -1
- package/dist/index.modern.js +9 -1
- package/dist/index.modern.js.map +1 -1
- package/dist/index.umd.js +9 -1
- package/dist/index.umd.js.map +1 -1
- package/package.json +1 -1
- package/src/html/table.js +1 -1
package/dist/index.umd.js
CHANGED
@@ -1132,7 +1132,15 @@
|
|
1132
1132
|
_onChange = column.onChange,
|
1133
1133
|
options = column.options;
|
1134
1134
|
|
1135
|
-
if (id === "checked")
|
1135
|
+
if (id === "checked") {
|
1136
|
+
return /*#__PURE__*/React__default["default"].createElement(CheckBox, {
|
1137
|
+
id: id,
|
1138
|
+
value: cell,
|
1139
|
+
onChange: function onChange(id, value) {
|
1140
|
+
return _onChange(row.id, id, value);
|
1141
|
+
}
|
1142
|
+
});
|
1143
|
+
} else if (editable && _onChange) {
|
1136
1144
|
switch (type) {
|
1137
1145
|
case "ICON":
|
1138
1146
|
return /*#__PURE__*/React__default["default"].createElement(Icon, {
|