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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "ywana-core8",
3
- "version": "0.0.867",
3
+ "version": "0.0.868",
4
4
  "description": "ywana-core8",
5
5
  "homepage": "https://ywana.github.io/workspace",
6
6
  "author": "Ernesto Roldan Garcia",
@@ -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
  })}
@@ -184,10 +184,10 @@ export const TaskMonitor = (props) => {
184
184
 
185
185
  const table = {
186
186
  columns: [
187
- { id: "state", label: "Estado" },
188
- { id: "init", label: "Inicio", type: TYPES.STRING, format: FORMATS.DATE },
189
- { id: "end", label: "Fin", type: TYPES.STRING, format: FORMATS.DATE },
190
- { id: "description", label: "Descripcion" },
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" },