@fewbox/den 0.0.86 → 0.0.87

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": "@fewbox/den",
3
- "version": "0.0.86",
3
+ "version": "0.0.87",
4
4
  "main": "index.js",
5
5
  "types": "index-app.d.ts",
6
6
  "repository": "https://github.com/FewBox/fewbox-den.git",
@@ -5,7 +5,12 @@ export type TLength = (string & {}) | 0;
5
5
  export interface IChildrenProps {
6
6
  children?: React.ReactNode | undefined;
7
7
  }
8
+ export declare enum RootCategory {
9
+ Div = "div",
10
+ Span = "span"
11
+ }
8
12
  export interface IViewProps {
13
+ rootCategory?: RootCategory;
9
14
  className?: string;
10
15
  style?: React.CSSProperties;
11
16
  size?: FullSizeType;
@@ -1,3 +1,4 @@
1
+ export { RootCategory } from './Engine/Base';
1
2
  export { default as Debug } from './Debug';
2
3
  export { BreakpointType } from './Layout';
3
4
  export { default as VZone, ZoneCategory } from './View/VZone';