ywana-core8 0.0.994 → 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.
@@ -5696,6 +5696,9 @@ var TaskMonitor = function TaskMonitor(props) {
5696
5696
  }, {
5697
5697
  id: "description",
5698
5698
  label: "Description"
5699
+ }, {
5700
+ id: "message",
5701
+ label: "Message"
5699
5702
  }, {
5700
5703
  id: "progress",
5701
5704
  label: "%"
@@ -5721,6 +5724,7 @@ var TaskMonitor = function TaskMonitor(props) {
5721
5724
  id: task.id,
5722
5725
  state: /*#__PURE__*/React.createElement(Text, null, task.state),
5723
5726
  description: task.description,
5727
+ message: task.message,
5724
5728
  progress: /*#__PURE__*/React.createElement(LinearProgress, {
5725
5729
  progress: task.percentage
5726
5730
  }),