ywana-core8 0.0.701 → 0.0.702

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.
@@ -10,6 +10,7 @@ export const Wrapper: React.FC = ({ children }) => {
10
10
  return (
11
11
  <div
12
12
  style={{
13
+ fontSize: "10px",
13
14
  width: "100vw",
14
15
  height: "100vh",
15
16
  padding: "0rem",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "ywana-core8",
3
- "version": "0.0.701",
3
+ "version": "0.0.702",
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 @@
1
+ export { CollectionPage as CollectionPage2, CollectionContext as CollectionContext2 } 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);