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 +4 -3
- package/dist/index.cjs.map +1 -1
- package/dist/index.modern.js +4 -3
- package/dist/index.modern.js.map +1 -1
- package/dist/index.umd.js +4 -3
- package/dist/index.umd.js.map +1 -1
- package/package.json +1 -1
- package/src/incubator/task.js +2 -1
package/dist/index.modern.js
CHANGED
@@ -5696,15 +5696,15 @@ 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: "%"
|
5702
5705
|
}, {
|
5703
5706
|
id: "percentage",
|
5704
5707
|
label: ""
|
5705
|
-
}, {
|
5706
|
-
id: "message",
|
5707
|
-
label: "Message"
|
5708
5708
|
},
|
5709
5709
|
// { id: "resourceID", label: "Recurso" },
|
5710
5710
|
// { id: "owner", label: "Propietario" },
|
@@ -5724,6 +5724,7 @@ var TaskMonitor = function TaskMonitor(props) {
|
|
5724
5724
|
id: task.id,
|
5725
5725
|
state: /*#__PURE__*/React.createElement(Text, null, task.state),
|
5726
5726
|
description: task.description,
|
5727
|
+
message: task.message,
|
5727
5728
|
progress: /*#__PURE__*/React.createElement(LinearProgress, {
|
5728
5729
|
progress: task.percentage
|
5729
5730
|
}),
|