ywana-core8 0.0.867 → 0.0.868
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 +17 -6
- package/dist/index.cjs.map +1 -1
- package/dist/index.modern.js +17 -6
- package/dist/index.modern.js.map +1 -1
- package/dist/index.umd.js +17 -6
- package/dist/index.umd.js.map +1 -1
- package/package.json +1 -1
- package/src/domain/ContentViewer.js +8 -0
- package/src/html/table.js +1 -1
- package/src/incubator/task.js +4 -4
package/package.json
CHANGED
@@ -111,6 +111,14 @@ const StringViewer = (props) => {
|
|
111
111
|
<img src={value} />
|
112
112
|
</div>
|
113
113
|
)
|
114
|
+
|
115
|
+
case FORMATS.TOKENS:
|
116
|
+
return (
|
117
|
+
<div className='tokens-field'>
|
118
|
+
<TokenField id={id} label={label} tokens={value} readOnly={true} />
|
119
|
+
</div>
|
120
|
+
)
|
121
|
+
|
114
122
|
default:
|
115
123
|
return <Property label={label} value={value} options={options} />
|
116
124
|
}
|
package/src/html/table.js
CHANGED
@@ -151,7 +151,7 @@ const DataTableFiltersRow = ({ columns }) => {
|
|
151
151
|
{columns.map(({ id, filterable, onFilter }) => {
|
152
152
|
return (
|
153
153
|
<td className='filter-cell'>
|
154
|
-
{filterable ? <TextField id={id} onChange={onFilter} /> : null}
|
154
|
+
{filterable ? <TextField id={id} onChange={onFilter} outlined /> : null}
|
155
155
|
</td>
|
156
156
|
)
|
157
157
|
})}
|
package/src/incubator/task.js
CHANGED
@@ -184,10 +184,10 @@ export const TaskMonitor = (props) => {
|
|
184
184
|
|
185
185
|
const table = {
|
186
186
|
columns: [
|
187
|
-
{ id: "state", label: "
|
188
|
-
{ id: "init", label: "
|
189
|
-
{ id: "end", label: "
|
190
|
-
{ id: "description", label: "
|
187
|
+
{ id: "state", label: "State" },
|
188
|
+
{ id: "init", label: "Init Date", type: TYPES.STRING, format: FORMATS.DATE },
|
189
|
+
{ id: "end", label: "End Date", type: TYPES.STRING, format: FORMATS.DATE },
|
190
|
+
{ id: "description", label: "Description" },
|
191
191
|
{ id: "progress", label: "%" },
|
192
192
|
{ id: "percentage", label: "" },
|
193
193
|
// { id: "resourceID", label: "Recurso" },
|