ywana-core8 0.0.701 → 0.0.703

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.701",
3
+ "version": "0.0.703",
4
4
  "description": "ywana-core8",
5
5
  "homepage": "https://ywana.github.io/workspace",
6
6
  "author": "Ernesto Roldan Garcia",
@@ -1,10 +1,10 @@
1
1
  import React from 'react'
2
+ import { Header } from '../html'
2
3
  import { CollectionContextProvider } from './CollectionContext'
3
4
  import { CollectionFilters } from './CollectionFilters'
4
5
  import { CollectionList } from './CollectionList'
5
6
  import { CollectionEditor } from './CollectionEditor'
6
7
  import './CollectionPage.css'
7
- import { Header } from '../html'
8
8
 
9
9
  /**
10
10
  * Collection Page
@@ -0,0 +1,2 @@
1
+ export { CollectionContext as CollectionContext2 } from './CollectionContext'
2
+ export { CollectionPage as CollectionPage2 } from './CollectionPage'
package/src/index.js CHANGED
@@ -9,6 +9,7 @@ export * from './widgets'
9
9
  export * from './site'
10
10
  export * from './domain'
11
11
 
12
+ export * from './domain2'
12
13
  export * from './incubator'
13
14
 
14
15
  export const isFunction = value => value && (Object.prototype.toString.call(value) === "[object Function]" || "function" === typeof value || value instanceof Function);