ywana-core8 0.0.912 → 0.0.914

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.912",
3
+ "version": "0.0.914",
4
4
  "description": "ywana-core8",
5
5
  "homepage": "https://ywana.github.io/workspace",
6
6
  "author": "Ernesto Roldan Garcia",
@@ -1,5 +1,5 @@
1
1
  import React from 'react'
2
- import { CheckBox, ColorField, DateRange, DropDown, TextField, TokenField } from '../html'
2
+ import { CheckBox, ColorField, DateRange, DropDown, TextField, TokenField, TextArea } from '../html'
3
3
  import { FORMATS } from './FORMATS'
4
4
  import { TYPES } from './TYPES'
5
5
  import './DynamicForm.css'
@@ -52,6 +52,12 @@ const DynamicFormField = (props) => {
52
52
  const label = required ? `${field.label} *` : field.label
53
53
 
54
54
  switch (format) {
55
+ case FORMATS.NUMBER:
56
+ return <TextField id={id} label={label} type="number" value={value} onChange={change} outlined />
57
+ case FORMATS.BOOLEAN:
58
+ return <CheckBox id={id} label={label} value={value} onChange={change} />
59
+ case FORMATS.TEXT:
60
+ return <TextArea id={id} label={label} value={value} onChange={change} outlined />
55
61
  case FORMATS.DATE:
56
62
  return <TextField id={id} label={label} type="date" value={value} onChange={change} outlined />
57
63
  case FORMATS.TIME:
@@ -3,6 +3,9 @@
3
3
  */
4
4
  export const FORMATS = {
5
5
  NONE: '',
6
+ TEXT: 'text',
7
+ NUMBER: 'number',
8
+ BOOLEAN: 'boolean',
6
9
  DATE: 'date',
7
10
  DATERANGE: 'DATERANGE',
8
11
  TIME: 'time',
package/src/html/table.js CHANGED
@@ -148,10 +148,13 @@ export const DataTable = (props) => {
148
148
  const DataTableFiltersRow = ({ columns }) => {
149
149
  return (
150
150
  <tr className="filters-row">
151
- {columns.map(({ id, filterable, onFilter }) => {
151
+ {columns.map(({ id, filterable, onFilter, options }) => {
152
+
153
+ const field = options ? <DropDown id={id} options={options} onChange={onFilter} outlined /> : <TextField id={id} onChange={onFilter} outlined />
154
+
152
155
  return (
153
156
  <td className='filter-cell'>
154
- {filterable ? <TextField id={id} onChange={onFilter} outlined /> : null}
157
+ {filterable ? field : null}
155
158
  </td>
156
159
  )
157
160
  })}
@@ -43,8 +43,13 @@ export const TableTest = (prop) => {
43
43
  columns: [
44
44
  { id: "index" , label: "#" , type: "INDEX" },
45
45
  { id: "checked" , onChange: check },
46
- { id: "name" , label: "Name" , type: "String", sortable: true, filtrable: true, resizable: true },
47
- { id: "description", label: "Description", type: "String", sortable: true },
46
+ { id: "name" , label: "Name" , type: "String", sortable: true, filterable: true, resizable: true },
47
+ { id: "category" , label: "Category" , type: "String", sortable: true, filterable: true, resizable: false, options: [
48
+ { label: "A", value: "A" },
49
+ { label: "B", value: "B" },
50
+ { label: "C", value: "C" },
51
+ ]},
52
+ { id: "description", label: "Description", type: "String", sortable: true },
48
53
  { id: "color" , label: "Color" , type: "String", format: FORMATS.COLOR },
49
54
  { id: "date" , label: "Date" , type: "String", format: FORMATS.DATE },
50
55
  { id: "num" , label: "Num" , type: "Number", maxDecimals: 2, sortable: true},
@@ -58,7 +63,7 @@ export const TableTest = (prop) => {
58
63
  <DataTable {...table1} onRowSelection={select} outlined multisort={true}/>
59
64
  </div>
60
65
  <div style={{ maxHeight: "20rem", overflow: "auto", margin: "2rem" }}>
61
- <DataTable {...table1} onRowSelection={select} onCheckAll={checkAll} />
66
+ <DataTable {...table1} onRowSelection={select} onCheckAll={checkAll} filterable={true} />
62
67
  </div>
63
68
  </>
64
69
  )