ywana-core8 0.0.915 → 0.0.917

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.915",
3
+ "version": "0.0.917",
4
4
  "description": "ywana-core8",
5
5
  "homepage": "https://ywana.github.io/workspace",
6
6
  "author": "Ernesto Roldan Garcia",
@@ -14,7 +14,7 @@ export const TaskContext = React.createContext({})
14
14
  export const TaskContextProvider = (props) => {
15
15
 
16
16
  const { host, url = "/tasks", frequency = 1000, children } = props
17
- const API = CollectionAPI(url, host)
17
+ const API = CollectionAPI(url, host, null)
18
18
  const [ listeners, setListeners ] = useState({})
19
19
 
20
20
  useEffect(() => {
@@ -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
  )