@fewbox/den 0.0.84 → 0.0.86

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.84",
3
+ "version": "0.0.86",
4
4
  "main": "index.js",
5
5
  "types": "index-app.d.ts",
6
6
  "repository": "https://github.com/FewBox/fewbox-den.git",
@@ -43,8 +43,9 @@ export interface IViewProps {
43
43
  overflowX?: Property.OverflowX;
44
44
  overflowY?: Property.OverflowY;
45
45
  isDefaultValue?: boolean;
46
- key?: React.Key | undefined;
47
- ref?: React.LegacyRef<any> | undefined;
46
+ key?: React.Key;
47
+ ref?: React.RefObject<any>;
48
+ readonlyRef?: React.RefObject<any>;
48
49
  customAttibutes?: Object;
49
50
  }
50
51
  export interface IEventProps {
@@ -33,8 +33,6 @@ export interface IBaseInputProps extends IBaseProps {
33
33
  isRequired?: boolean;
34
34
  disabled?: boolean;
35
35
  overWrite?: (inputRef: React.RefObject<HTMLInputElement>) => JSX.Element;
36
- inputRef?: React.RefObject<HTMLInputElement>;
37
- inputReadonlyRef?: React.RefObject<any>;
38
36
  }
39
37
  export interface IVInputProps extends IBaseInputProps {
40
38
  inheritClassName?: string;
@@ -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
  /*------------------*/