ywana-core8 0.0.995 → 0.0.996

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 CHANGED
@@ -5705,15 +5705,15 @@ var TaskMonitor = function TaskMonitor(props) {
5705
5705
  }, {
5706
5706
  id: "description",
5707
5707
  label: "Description"
5708
+ }, {
5709
+ id: "message",
5710
+ label: "Message"
5708
5711
  }, {
5709
5712
  id: "progress",
5710
5713
  label: "%"
5711
5714
  }, {
5712
5715
  id: "percentage",
5713
5716
  label: ""
5714
- }, {
5715
- id: "message",
5716
- label: "Message"
5717
5717
  },
5718
5718
  // { id: "resourceID", label: "Recurso" },
5719
5719
  // { id: "owner", label: "Propietario" },
@@ -5733,6 +5733,7 @@ var TaskMonitor = function TaskMonitor(props) {
5733
5733
  id: task.id,
5734
5734
  state: /*#__PURE__*/React__default["default"].createElement(Text, null, task.state),
5735
5735
  description: task.description,
5736
+ message: task.message,
5736
5737
  progress: /*#__PURE__*/React__default["default"].createElement(LinearProgress, {
5737
5738
  progress: task.percentage
5738
5739
  }),