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.
- package/dist/index.cjs +3 -2
- package/dist/index.cjs.map +1 -1
- package/dist/index.modern.js +3 -2
- package/dist/index.modern.js.map +1 -1
- package/dist/index.umd.js +3 -2
- package/dist/index.umd.js.map +1 -1
- package/package.json +1 -1
- package/src/html/property.js +2 -2
package/dist/index.modern.js
CHANGED
@@ -690,13 +690,14 @@ var LinearProgress = function LinearProgress(props) {
|
|
690
690
|
*/
|
691
691
|
|
692
692
|
var Property = function Property(props) {
|
693
|
-
var
|
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
|
};
|