ywana-core8 0.0.142 → 0.0.146

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.umd.js CHANGED
@@ -255,7 +255,7 @@
255
255
  value: value,
256
256
  onChange: change
257
257
  }), /*#__PURE__*/React__default["default"].createElement("span", {
258
- "class": "checkmark"
258
+ className: "checkmark"
259
259
  }), /*#__PURE__*/React__default["default"].createElement("label", {
260
260
  htmlFor: id
261
261
  }, labelTxt)) : /*#__PURE__*/React__default["default"].createElement("div", {
@@ -268,7 +268,7 @@
268
268
  value: value,
269
269
  onChange: change
270
270
  }), /*#__PURE__*/React__default["default"].createElement("span", {
271
- "class": "checkmark"
271
+ className: "checkmark"
272
272
  }), /*#__PURE__*/React__default["default"].createElement("label", {
273
273
  htmlFor: id
274
274
  }, labelTxt));
@@ -980,7 +980,7 @@
980
980
  if (canShow) {
981
981
  var filterActive = canFilter && label && label.length > 0;
982
982
  var items = filterActive ? options.filter(function (option) {
983
- return label.toUpperCase().indexOf(option.label.toUpperCase()) >= 0;
983
+ return option.label.toUpperCase().indexOf(label.toUpperCase()) >= 0;
984
984
  }) : options;
985
985
  console.log('filterActive: ', filterActive, label, items.length);
986
986
  var lis = items.map(function (option) {
@@ -1329,7 +1329,7 @@
1329
1329
  }) : null;
1330
1330
  var text = option ? option.label : value;
1331
1331
  return /*#__PURE__*/React__default["default"].createElement("div", {
1332
- className: "field-editor string-editor"
1332
+ className: "field-editor string-viewer"
1333
1333
  }, text);
1334
1334
  };
1335
1335
  /**