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.
- package/dist/index.cjs +4 -0
- package/dist/index.cjs.map +1 -1
- package/dist/index.modern.js +4 -0
- package/dist/index.modern.js.map +1 -1
- package/dist/index.umd.js +4 -0
- package/dist/index.umd.js.map +1 -1
- package/package.json +1 -1
- package/src/incubator/task.js +2 -0
package/package.json
CHANGED
package/src/incubator/task.js
CHANGED
@@ -195,6 +195,7 @@ export const TaskMonitor = (props) => {
|
|
195
195
|
{ id: "init", label: "Init Date", type: TYPES.STRING, format: FORMATS.DATE },
|
196
196
|
{ id: "end", label: "End Date", type: TYPES.STRING, format: FORMATS.DATE },
|
197
197
|
{ id: "description", label: "Description" },
|
198
|
+
{ id: "message", label: "Message" },
|
198
199
|
{ id: "progress", label: "%" },
|
199
200
|
{ id: "percentage", label: "" },
|
200
201
|
// { id: "resourceID", label: "Recurso" },
|
@@ -215,6 +216,7 @@ export const TaskMonitor = (props) => {
|
|
215
216
|
id: task.id,
|
216
217
|
state: <Text>{task.state}</Text>,
|
217
218
|
description: task.description,
|
219
|
+
message: task.message,
|
218
220
|
progress: <LinearProgress progress={task.percentage} />,
|
219
221
|
percentage: task.percentage,
|
220
222
|
init: task.init,
|