@fewbox/den 0.0.85 → 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.85",
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';
@@ -34,6 +34,7 @@
34
34
  #{v.$var-prefix}scrollbar-track-color: #{v.$scrollbar-track-color};
35
35
  #{v.$var-prefix}scrollbar-thumb-color: #{v.$scrollbar-thumb-color};
36
36
  #{v.$var-prefix}scrollbar-thumb-hover-color: #{v.$scrollbar-thumb-hover-color};
37
+ #{v.$var-prefix}scrollbar-thumb-active-color: #{v.$scrollbar-thumb-active-color};
37
38
  #{v.$var-prefix}scrollbar-radius: #{v.$scrollbar-radius};
38
39
  // Component
39
40
  #{v.$var-prefix}input-padding: #{v.$input-padding};
@@ -104,11 +104,11 @@ $box-sizing: border-box;
104
104
  /* HTML ELEMENT */
105
105
  /*------------------*/
106
106
  //scrollbar
107
- $scrollbar-size: 8px;
108
- $scrollbar-track-color: $placeholder-color;
109
- $scrollbar-thumb-color: $primary-color;
110
- $scrollbar-thumb-hover-color: $primary-color;
111
- $scrollbar-thumb-active-color: $primary-color;
107
+ $scrollbar-size: 6px;
108
+ $scrollbar-track-color: #e1e1e1;
109
+ $scrollbar-thumb-color: #2e2e2e;
110
+ $scrollbar-thumb-hover-color: #525252;
111
+ $scrollbar-thumb-active-color: #000000;
112
112
  $scrollbar-radius: 8px;
113
113
 
114
114
  /*------------------*/