ywana-core8 0.0.914 → 0.0.916

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.914",
3
+ "version": "0.0.916",
4
4
  "description": "ywana-core8",
5
5
  "homepage": "https://ywana.github.io/workspace",
6
6
  "author": "Ernesto Roldan Garcia",
@@ -52,10 +52,6 @@ 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
55
  case FORMATS.TEXT:
60
56
  return <TextArea id={id} label={label} value={value} onChange={change} outlined />
61
57
  case FORMATS.DATE:
@@ -4,8 +4,6 @@
4
4
  export const FORMATS = {
5
5
  NONE: '',
6
6
  TEXT: 'text',
7
- NUMBER: 'number',
8
- BOOLEAN: 'boolean',
9
7
  DATE: 'date',
10
8
  DATERANGE: 'DATERANGE',
11
9
  TIME: 'time',
@@ -18,7 +18,7 @@ export const Kanban = ({ children }) => {
18
18
 
19
19
  const style = hasSwimlanes ? "with-swimlanes" : ""
20
20
  return (
21
- <div className="kanban with-swimlanes">
21
+ <div className={`kanban ${style}`}>
22
22
  {children}
23
23
  </div>
24
24
  )