ywana-core8 0.0.174 → 0.0.175

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.174",
3
+ "version": "0.0.175",
4
4
  "description": "ywana-core8",
5
5
  "author": "Ernesto Roldan Garcia",
6
6
  "license": "MIT",
@@ -245,8 +245,6 @@ export const StringEditor = ({ field, value = '', onChange, content, outlined })
245
245
  return opts
246
246
  }
247
247
 
248
- console.log('StringEditor: ', label, value )
249
-
250
248
  return (
251
249
  <div className='field-editor string-editor'>
252
250
  {
@@ -273,11 +271,11 @@ const NumberEditor = ({ field, value, onChange }) => {
273
271
  const max = field.max
274
272
  const disabled = !editable
275
273
 
276
- console.log('StringEditor: ', label, val, value )
274
+ console.log('NumberEditor: ', label, val, value )
277
275
 
278
276
  return (
279
277
  <div className='field-editor number-editor'>
280
- <TextField outlined id={id} label={label} type='NUMBER' value={val} max={max} min={min} onChange={change} disabled={disabled} />
278
+ <TextField outlined={outlined} id={id} label={label} type='NUMBER' value={val} max={max} min={min} onChange={change} disabled={disabled} />
281
279
  </div>
282
280
  )
283
281
  }