ywana-core8 0.0.48 → 0.0.49

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.
@@ -690,13 +690,14 @@ var LinearProgress = function LinearProgress(props) {
690
690
  */
691
691
 
692
692
  var Property = function Property(props) {
693
- var name = props.name,
693
+ var label = props.label,
694
+ name = props.name,
694
695
  value = props.value;
695
696
  return /*#__PURE__*/React.createElement("div", {
696
697
  className: "property"
697
698
  }, /*#__PURE__*/React.createElement("div", {
698
699
  className: "property-name"
699
- }, name), /*#__PURE__*/React.createElement("div", {
700
+ }, name || label), /*#__PURE__*/React.createElement("div", {
700
701
  className: "property-value"
701
702
  }, value));
702
703
  };